active questions tagged il - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T19:34:36Z http://stackoverflow.com/feeds/tag/il http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1833700/il-clr-dlr-references 1 IL / CLR / DLR References? Donnie 2009-12-02T15:39:44Z 2009-12-10T11:36:57Z <p>I'm wanting to learn more about IL and CLR / DLR under the hood. A friend of mine recommended the book "Inside Microsoft .NET IL Assembler", but since it came out in 2002 I fear it's pretty out of date at this point.</p> <p>Does anyone have any more up-to-date books or websites that can be used by someone who understands .NET languages to learn more about the inner workings of IL and the CLR?</p> http://stackoverflow.com/questions/858896/recommend-a-book-on-reflection-emit-in-c 0 Recommend a book on Reflection.Emit in C# andrewducker 2009-05-13T16:14:35Z 2009-12-01T07:57:55Z <p>Can anyone recommend a good book which covers IL programming, specifically using Reflection.Emit in C#?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1672192/static-analysis-of-net-assembly 0 Static analysis of .net assembly Saar 2009-11-04T07:28:00Z 2009-11-27T15:00:03Z <p>I have a C# project for which I need to find the all private methods which are not called from any other public method directly or indirectly.</p> <p>In addition, for each private method which is called from a public method, I need to know which public method it is. Then I will detemine if that method is really called from a client of the class and if not I will be able to remove it.</p> <p>In the past I used a code from Lutz Rorder which is the base of Reflector - it had an option to analyze IL code and gave object model on top of it. I cannot find this code now.</p> <p>Any suggestion? Maybe a point to that Lutz Rorder code?</p> <p>Saar</p> http://stackoverflow.com/questions/1340343/converting-a-cfg-to-il 1 Converting a CFG to IL Joa Ebert 2009-08-27T11:03:00Z 2009-11-16T01:06:30Z <p>I build a CFG out of an arbitrary IL and want to convert that CFG back to IL. The order of the vertices in the CFG is of course not equal to the order of the original IL instructions.</p> <p>This is fine but overcomplicates some stuff. Imagine:</p> <pre><code>Jump 'B' 'C': Return 'B': Jump 'C' </code></pre> <p>This would result in a flow graph like this: (Jump B) -> (Jump C) -> (Return) This is of course a simplified example but it shows the problem when converting out of the CFG.</p> <p>Is there any information available on this topic in academia? I thought traversing the graph bottom-up would be very elegant but that does not work in more complicated cases.</p> <p>A solution might be to walk top-down and search for a CF merge but in that case I would not be able to handle loops correct. So the only way to get this right seems to be to search for a possible CF merge if it occurs. If not, we have to have a loop, which means the loop is preferred and the continuing path is evaluated afterwards. This sounds like a solveable problem but it is also very expensive and there might exist a more elegant solution to the problem. Besides a loop could also result in a CF merge when thinking about a "break" statement.</p> http://stackoverflow.com/questions/1662926/what-is-your-recommendation-for-a-good-book-on-the-net-clr-and-cil 2 What is your recommendation for a good book on the .NET CLR and CIL? Manu 2009-11-02T18:43:58Z 2009-11-15T13:46:36Z <p>Do you know any good book about the workings of the CLR, the <a href="http://en.wikipedia.org/wiki/.NET%5FFramework" rel="nofollow">.NET Framework</a> and <a href="http://en.wikipedia.org/wiki/Common%5FIntermediate%5FLanguage" rel="nofollow">CIL</a> as opposed to any specific .NET language?</p> http://stackoverflow.com/questions/125791/should-net-developers-really-be-spending-time-learning-c-for-low-level-exposur 9 Should .NET developers *really* be spending time learning C for low-level exposure? icelava 2008-09-24T07:15:21Z 2009-11-04T19:30:33Z <p>When Joel Spolsky and Jeff Atwood began the disagreement in their podcast over whether programmers should learn C, regardless of their industry and platform of delivery, it sparkled quite an explosive debate within the developer community that probably still rages amongst certain groups today. I have been reading a number of passages from a number of programmer bloggers with their take on the matter. The arguments from both sides certainly carry weight, both what I did not find is a perspective that is uniquely angled from the standpoint of <strong>developers focused on just the .NET Framework</strong>. Practically all of them were commenting on a general programmer standpoint.</p> <p>What am I trying to get at? Recall Jeff Atwood's opinion that most of the time developers at such high levels would spend would be on learning the <em>business/domain</em>, on top of whatever is needed to learn the technologies to achieve those domain requirements. In my working experience that is a very accurate description of the work life of many. Now supposing that .NET developers can fork the time for "extra curricular" learning, should <em>that</em> be C?</p> <p>For the record, I have learnt C back in school myself, and I can absolutely understand and appreciate what the proponents are reasoning for. But, when thinking things through, I personally feel .NET developers should not dive straight into C. Because, the thing I wish more developers would take some time to learn is - <strong>MSIL</strong> and <strong>CLR</strong>.</p> <p>Maybe I am stuck with the an unusual bunch of colleagues, I don't know, but it seems to me many people do not keep a <em>conscious awareness</em> that their C# or VB code compiles in IL first before JIT comes in and makes it raw machine code. Most do not know IL, and have no interest in how <em>exactly</em> the CLR handles the code they write. Reading Jeffrey Richter's <strong>CLR via C#</strong> was quite a shocker for me in so many areas; glad I read it despite colleagues dismissing it as "too low level". I am no expert in IL but with knowledge of the basics, I found myself following his text easier as I was already familiar with the stack behaviour of IL. I find myself disassembling assemblies to have a look at how the IL turns out when I write certain code.</p> <p>I learn the CLR and MSIL because I know that is the direct layer <em>below me</em>. The layer that allows me to carry out my own layer of work. C, is actually further down. Closer to our "reality" is the CLR and MSIL. That is why I would recommend others to have a go at those, because I do not see enough folks delving at that layer. Or, is your team already all conversant with MSIL?</p> http://stackoverflow.com/questions/930442/why-do-people-disassemble-net-clr-binaries 3 Why do people disassemble .NET (CLR) binaries? unknown (yahoo) 2009-05-30T19:48:34Z 2009-10-29T23:06:14Z <p>I'm somewhat new to .NET but not new to programming, and I'm somewhat puzzled at the trend and excitement about disassembling compiled .NET code. It seems pointless.</p> <p>The high-level ease of use of .NET is the reason I use it. I've written C and real (hardware processor) assembly in environments with limited resources. That was the reason to spend the effort on so many meticulous details, for efficiency. Up in .NET land, it kind of defeats the purpose of having a high-level object-oriented language if you waste time diving down into the most cryptic details of the implementation. In the course of working with .NET, I have debugged the usual performance issues an odd race conditions, and I've done it all by reading my own source code, never once having any thought as to what intermediate language the compiler is generating. For example, it's pretty obvious that a for(;;) loop is going to be faster than a foreach() on an array, considering that foreach() is going to use an enumeration <em>object</em> with a method call to advance to each next time instead of a simple increment of a variable, and this is easy to prove with a tight loop run a few million times (no disassembly required).</p> <p>What really makes disassembling IL silly is the fact that's it's not <em>real</em> machine code. It's virtual machine code. I've heard some people actually like to move instructions around to optimize it. Are you kidding me? Just-in-time compiled virtual machine code can't even do a simple tight for(;;) loop at the speed of natively compiled code. If you want to squeeze every last cycle out of your processor, then use C/C++ and spend time learning real assembly. That way the time you spend understanding lots of low-level details will actually be worthwhile.</p> <p>So, other than having too much time on their hands, why do people disassemble .NET (CLR) binaries?</p> http://stackoverflow.com/questions/1396906/is-it-possible-to-code-in-msil 4 Is it possible to Code in MSIL? luke101 2009-09-08T23:39:42Z 2009-10-16T12:28:45Z <p>I am just curious to know if this can be done or not. I don't plan on doing it if it dosen't pack some significant performance benefits. I am a web and game developer but I usually don't develop games in c#.</p> http://stackoverflow.com/questions/1558866/casting-object-to-a-specific-class-in-il 0 Casting Object to a specific class in IL? Lasse V. Karlsen 2009-10-13T08:20:52Z 2009-10-13T22:00:49Z <p>I discovered the reason I was getting "Operation could destabilize the runtime" in a DynamicMethod I'm producing, and though I easily fixed it, it left me with a seemingly simple question:</p> <ul> <li>How do I cast an object reference of type "Object" into a specific type, so that I can call methods from that type on the object reference?</li> </ul> <p>Below is a sample program. When running this, it will crash with an "Operation could destabilize the runtime" exception when compiling the method.</p> <p>The problem is fixed by just changing the type of the variable being declared to be of type <code>TestClass</code> instead of <code>Object</code>, but I still want to know how I can cast the reference to the appropriate type in the code.</p> <p>In the code I've marked a line with asterixes. What can I emit of code at that point that will make the <code>Object</code> reference on the stack into a <code>TestClass</code> reference instead, so that the method call will go through?</p> <p>Note that I know that it is the method call that produces the problem, if I comment out the lines altogether, it doesn't matter which type the variable is, the method is compiled and executes fine.</p> <p>Here's the code.</p> <pre><code>using System; using System.Reflection.Emit; namespace ConsoleApplication9 { public class TestClass { public void TestMethod() { } } class Program { static void Main(string[] args) { Type type = typeof(TestClass); DynamicMethod method = new DynamicMethod("", typeof(Object), null); ILGenerator il = method.GetILGenerator(); LocalBuilder variable = il.DeclareLocal(typeof(Object)); // Construct object il.Emit(OpCodes.Newobj, type.GetConstructor(new Type[0])); il.Emit(OpCodes.Stloc, variable); // Call Test method il.Emit(OpCodes.Ldloc, variable); // ***************************************** what do I do here? il.Emit(OpCodes.Call, type.GetMethod("TestMethod")); // Return object il.Emit(OpCodes.Ldloc, variable); il.Emit(OpCodes.Ret); // Create and call delegate Func&lt;Object&gt; fn = (Func&lt;Object&gt;)method.CreateDelegate( typeof(Func&lt;Object&gt;)); Object instance = fn(); } } } </code></pre> http://stackoverflow.com/questions/1473346/msil-question-basic 1 MSIL Question (Basic) Petoj 2009-09-24T18:24:50Z 2009-09-24T18:29:39Z <p>Well lets say we have this c# code:</p> <pre><code>public override void Write(XDRDestination destination) { destination.WriteInt(intValue); destination.WriteBool(boolValue); destination.WriteFixedString(str1, 100); destination.WriteVariableString(str2, 100); } </code></pre> <p>IL:</p> <pre><code>.method public hidebysig virtual instance void Write(class [XDRFramework]XDRFramework.XDRDestination destination) cil managed { // Code size 53 (0x35) .maxstack 8 IL_0000: ldarg.1 IL_0001: ldarg.0 IL_0002: call instance int32 LearnIL.Test1::get_intValue() IL_0007: callvirt instance void [XDRFramework]XDRFramework.XDRDestination::WriteInt(int32) IL_000c: ldarg.1 IL_000d: ldarg.0 IL_000e: call instance bool LearnIL.Test1::get_boolValue() IL_0013: callvirt instance void [XDRFramework]XDRFramework.XDRDestination::WriteBool(bool) IL_0018: ldarg.1 IL_0019: ldarg.0 IL_001a: call instance string LearnIL.Test1::get_str1() IL_001f: ldc.i4.s 100 IL_0021: callvirt instance void [XDRFramework]XDRFramework.XDRDestination::WriteFixedString(string, uint32) IL_0026: ldarg.1 IL_0027: ldarg.0 IL_0028: call instance string LearnIL.Test1::get_str2() IL_002d: ldc.i4.s 100 IL_002f: callvirt instance void [XDRFramework]XDRFramework.XDRDestination::WriteVariableString(string, uint32) IL_0034: ret } // end of method Test1::Write </code></pre> <p>Now to the question my understanding is that ldarg.# puts the arguments supplied to the method on the stack so we can work with them? But why does it call ldarg.1 and ldarg.0 when the method only takes one argument?</p> http://stackoverflow.com/questions/1444756/c-il-to-three-address-code 0 C# / IL to Three Address Code Joa Ebert 2009-09-18T14:05:25Z 2009-09-18T14:05:25Z <p>Is there a framework existing to compile C# source into a three address code representation, or at least a tool that is able to read IL files and produce TAC in a CFG?</p> <p>I am looking for a framework that behaves like <a href="http://www.sable.mcgill.ca/soot/" rel="nofollow">Soot</a> for Java. The language does not matter.</p> <p>I have looked at the CodePlex CCI project but it looks like they produce an AST based on the IL? At least most of the examples were missing; so if CCI is what I am searching for that would be good news for me as well.</p> http://stackoverflow.com/questions/1361197/c-iterate-over-switchs-cases 1 C# iterate over switch's cases Toto 2009-09-01T08:16:12Z 2009-09-01T08:52:03Z <p>Hello,</p> <p>Is it possible to retrieve programmatically all the case of a switch ? I don't have any idea, maybe by IL but not sure how to do ...</p> <p>In fact my global issue is the following : I got a siwtch case with string as property name. The method is very important and a regression is not allowed. I don't want a refactoring breaking this, so I want a method to test that all case string are in fact real properties of my objects. (NB : the default value return something so I can't throw an exceptino for a refactored invalid value).</p> http://stackoverflow.com/questions/1328883/getting-il-code-from-dll-binary-file 1 Getting IL code from DLL binary file Antipod 2009-08-25T15:05:10Z 2009-08-25T15:15:22Z <p>Hi Fellows, </p> <p>I am studding IL.</p> <p>I like .Net Reflector tool from RedGate (Lutz initially). I already have Serge Lidin’s and Ecma-335 books. It looks like these things are all we have to work with IL (except ILAsm and ILDasm, of course).</p> <p>My task is to parse assembly binary file and get IL code. It is obvious that the assembly is a binary file; hence, it is just a chain of bytes. To do what I want I need to know the assembly structure: which headers exist, how much bytes they occupy, offsets in bytes to read it byte after byte, etc.</p> <p>Lidin’s book describes it, but it is not 100% clear for me. Did anyone try to parse DLL as byte stream? To have metadata and IL code as byte streams, then parse the IL byte stream to get IL source? I do not want to use reflection here; I’d want to work just with the binary file, rather.</p> <p>Does the mono Cecil do the same? Even if so, I’d want to know how to do it.</p> <p>And yes, I am trying to create another wheel like that of .NET Reflector and I want to know how it's made. Like someone said: “Lutz shouldn't necessarily be the only man in the world who knows how to make it”.</p> <p>BTW, how does ISDasm work? Was it coded in .net?</p> <p>Any thoughts, resources, examples?</p> <p>Thank you.</p> http://stackoverflow.com/questions/857593/find-argument-values-of-method-call-in-il 1 Find argument values of method call in IL. TcKs 2009-05-13T12:08:15Z 2009-05-13T12:23:51Z <p>Hi,</p> <p>I have several special methods, and I want analyze they calls in compiled assembly.</p> <p>Example:</p> <pre><code>public static class SrcHelper { [MySpecialMethod] [Conditional( "DEBUG" )] public static void ToDo( params object[] info ) { /* do nothing */ /* this method is not called when code is compiled in RELEASE mode */ } } // ... somewhere else in another assembly ... Array CreateArraySampleMethod( int size ) { // This call has only informative character. No functionality is required. SrcHelper.ToDo( "Should create array of ", typeof( MyClass ), " with specified size." ); throw new NotImplementedException(); } </code></pre> <p>From this compiled code I want get the argument values { "Should create array of ", MyClass, " with specified size." }. I tried use Cecil from Mono, and I found the instructions for call "ToDo" method. But now am I confused how to identify instruction with argument values.</p> <p>I know, there can be complex situation, and some argument's value can not be resolved. But I need resolve only constant values - it's enough for my purpose.</p> <p>Thanks.</p> <p><strong>EDIT:</strong> The "ToDo" method (and similar ones) should be used as alternative to comments ( //, /* ... */ ), and after compilation, should be IL analyzed and autogenerated documentation and todo-list for concrete assembly.</p> http://stackoverflow.com/questions/845657/why-is-the-c-compiler-emitting-a-callvirt-instruction-for-a-gettype-method-cal 8 Why is the C# compiler emitting a callvirt instruction for a GetType() method call? Andrew Hare 2009-05-10T16:56:33Z 2009-05-10T20:27:11Z <p>I am curious to know why this is happening. Please read the code example below and the corresponding IL that was emitted in comments below each section:</p> <pre><code>using System; class Program { static void Main() { Object o = new Object(); o.GetType(); // L_0001: newobj instance void [mscorlib]System.Object::.ctor() // L_0006: stloc.0 // L_0007: ldloc.0 // L_0008: callvirt instance class [mscorlib]System.Type [mscorlib]System.Object::GetType() new Object().GetType(); // L_000e: newobj instance void [mscorlib]System.Object::.ctor() // L_0013: call instance class [mscorlib]System.Type [mscorlib]System.Object::GetType() } } </code></pre> <p>Why did the compiler emit a <code>callvirt</code> for the first section but a <code>call</code> for the second section? Is there any reason that the compiler would ever emit a <code>callvirt</code> instruction for a non-virtual method? And if there are cases in which the compiler will emit a <code>callvirt</code> for a non-virtual method does this create problems for type-safety?</p> http://stackoverflow.com/questions/752232/implementing-an-interface-on-a-dynamic-type-with-events 0 Implementing an Interface on a dynamic type with events ChrisW 2009-04-15T15:26:50Z 2009-04-15T16:07:00Z <p>I am taking in an interface, looping through the .GetEvents() return array and attempting to implement the event on my dynamic type. At the point when I try to call TypeBuilder.CreateType(), I am greeted with this lovely error:</p> <p>"Application method on type from assembly is overriding a method that has been overridden."</p> <p>If I comment out the typeBuilder.DefineMethodOverride calls that attempt to implement the interface methods, at the poin when I attempt to subscribe to the event I get the error:</p> <p>"The method or operation is not implemented."</p> <p>Here is the method I have that is attempting to add the detected event to the emitted type. Just a quick note, I have other code defining the type and adding methods implementing those on the interface and all that code works fine. I had no problems until I attempted to add events into the mix.</p> <pre><code>protected static void AddEvent(EventInfo interfaceEvent, TypeBuilder proxyBuilder) { // Event methods attributes MethodAttributes eventMethodAttr = MethodAttributes.Public | MethodAttributes.HideBySig | MethodAttributes.Virtual | MethodAttributes.NewSlot | MethodAttributes.Final | MethodAttributes.SpecialName; MethodImplAttributes eventMethodImpAtr = MethodImplAttributes.Managed | MethodImplAttributes.Synchronized; string qualifiedEventName = string.Format("{0}.{1}", typeof(T).Name, interfaceEvent.Name); string addMethodName = string.Format("add_{0}", interfaceEvent.Name); string remMethodName = string.Format("remove_{0}", interfaceEvent.Name); FieldBuilder eFieldBuilder = proxyBuilder.DefineField(qualifiedEventName, interfaceEvent.EventHandlerType, FieldAttributes.Public); EventBuilder eBuilder = proxyBuilder.DefineEvent(qualifiedEventName, EventAttributes.None, interfaceEvent.EventHandlerType); // ADD method MethodBuilder addMethodBuilder = proxyBuilder.DefineMethod(addMethodName, eventMethodAttr, null, new Type[] { interfaceEvent.EventHandlerType }); addMethodBuilder.SetImplementationFlags(eventMethodImpAtr); // We need the 'Combine' method from the Delegate type MethodInfo combineInfo = typeof(Delegate).GetMethod("Combine", new Type[] { typeof(Delegate), typeof(Delegate) }); // Code generation ILGenerator ilgen = addMethodBuilder.GetILGenerator(); ilgen.Emit(OpCodes.Ldarg_0); ilgen.Emit(OpCodes.Ldarg_0); ilgen.Emit(OpCodes.Ldfld, eFieldBuilder); ilgen.Emit(OpCodes.Ldarg_1); ilgen.Emit(OpCodes.Call, combineInfo); ilgen.Emit(OpCodes.Castclass, interfaceEvent.EventHandlerType); ilgen.Emit(OpCodes.Stfld, eFieldBuilder); ilgen.Emit(OpCodes.Ret); // REMOVE method MethodBuilder removeMethodBuilder = proxyBuilder.DefineMethod(remMethodName, eventMethodAttr, null, new Type[] { interfaceEvent.EventHandlerType }); removeMethodBuilder.SetImplementationFlags(eventMethodImpAtr); MethodInfo removeInfo = typeof(Delegate).GetMethod("Remove", new Type[] { typeof(Delegate), typeof(Delegate) }); // Code generation ilgen = removeMethodBuilder.GetILGenerator(); ilgen.Emit(OpCodes.Ldarg_0); ilgen.Emit(OpCodes.Ldarg_0); ilgen.Emit(OpCodes.Ldfld, eFieldBuilder); ilgen.Emit(OpCodes.Ldarg_1); ilgen.Emit(OpCodes.Call, removeInfo); ilgen.Emit(OpCodes.Castclass, interfaceEvent.EventHandlerType); ilgen.Emit(OpCodes.Stfld, eFieldBuilder); ilgen.Emit(OpCodes.Ret); // Finally, setting the AddOn and RemoveOn methods for our event eBuilder.SetAddOnMethod(addMethodBuilder); eBuilder.SetRemoveOnMethod(removeMethodBuilder); // Implement the method from the interface proxyBuilder.DefineMethodOverride(addMethodBuilder, typeof(T).GetMethod("add_" + interfaceEvent.Name)); // Implement the method from the interface proxyBuilder.DefineMethodOverride(removeMethodBuilder, typeof(T).GetMethod("remove_" + interfaceEvent.Name)); } </code></pre> <p>Google has been 0 help on this (searching for "is overriding a method that has been overridden" just returns a lot of Crystal Reports topics), and I have been struggling with this all morning. Any help would be <em>greatly</em> appreciated!</p> http://stackoverflow.com/questions/598820/how-do-i-get-the-mdtyperef-for-a-system-byte-for-use-with-imetadataemit 0 How do I get the mdTypeRef for a System.Byte for use with IMetaDataEmit? Sean 2009-02-28T22:41:20Z 2009-02-28T22:41:20Z <p>I just getting started using IMetaDataEmit to write some .NET IL. I'm having trouble getting the mdTypeRef for a System.Byte (which I would like to use to declare a byte array on the stack). Here is my attempt.</p> <pre><code>metaDataEmit-&gt;DefineTypeRefByName(NULL, L"System.Byte", &amp;byteToken); </code></pre> <p>This throws an error message that says "Could not load type 'System.Byte' from assembly '[the assembly that I am writing IL to]'."</p> http://stackoverflow.com/questions/522522/how-can-i-view-the-local-variables-on-the-evaluation-stack-when-debugging-a-net 0 How can I view the local variables on the evaluation stack when debugging a .NET CLR application? Miky D 2009-02-06T22:34:20Z 2009-02-22T00:44:46Z <p>I'm using Windbg (with the sos extention) and trying to debug a crashed application. I was able to dump the IL of the call that threw the exception and by examining the code, it seems like I could obtain the information that I need if I could dump the contents of the evaluation stack. Is it possible to do what with WinDbg &amp; sos ?</p> <p>Here's what I did:</p> <ol> <li><em>Started WinDbg</em></li> <li><em>Attached to the crashed process</em></li> <li><strong>loadby sos mscorwks</strong> <em>(to load the sos extension)</em></li> <li><p><strong>!token2ee <em>theModuleName</em> 0600009a</strong> <em>(where <strong>theModuleName</strong> is the name of the app(and assembly) t hat I'm debuging and <strong>9a</strong> is the method offset of the method that crashed as reported by the Windows Error Reporting tool</em>. I got this output:</p> <p>Module: 000e2c3c (theApplicationName.exe)<br/> Token: 0x0600009a<br/> MethodDesc: 000e67c8<br/> Name: MyNamespace.MyClassName.theCulpritFn(MyOtherClass)<br/> JITTED Code Address: 0081b1d0<br/></p></li> <li><p><strong>!dumpil 00e67c8</strong> <em>(which dumped the IL for the method in question)</em>. This is the output:</p> <pre><code> // .. // .. the previous code omitted for brevity .catch { IL_0071: stloc.0 IL_0072: nop IL_0073: ldstr "Can't set CurrentServer property for: " IL_0078: ldarg.0 IL_0079: ldfld MyNamespace.MyClassName::_currentServer IL_007e: brtrue.s IL_0087 IL_0080: ldstr "" IL_0085: br.s IL_0092 IL_0087: ldarg.0 IL_0088: ldfld MyNamespace.MyClassName::_currentServer IL_008d: callvirt MyNamespace.MyOtherClass::get_Name IL_0092: call System.String::Concat IL_0097: ldloc.0 IL_0098: newobj MyNamespace.MySpecialExceptionType::ctor IL_009d: throw } </code></pre> <p>The question is: is there a way for me to see what was pushed on the stack before the exception was thrown. If I'm not mistaken, the argument passed into the exception constructor should be the local variable at index 0 on the evaluation stack.</p> <p>P.S. When I tried to call <em>!clrstack -a</em> I got a message saying: Unable to walk the managed stack. The current thread is likely not a managed thread. You can run !threads to get a list of managed threads in the process.</p></li> </ol> <p>Thanks!</p> http://stackoverflow.com/questions/503996/in-net-is-the-call-stack-inextricably-tied-to-a-thread 1 In .NET, is the call stack inextricably tied to a thread? skb 2009-02-02T17:13:04Z 2009-02-15T20:54:17Z <p>Is it at all possible in the middle of a function execution to set a pointer to the current stack (to be picked up later) and then release the current thread (without unwinding the call stack) and give it back to the thread pool? And then, have another thread pick up where that thread left off? I know it would mean that someone calling into the function would not know that the current thread context would have changed, and it would probably involve writing some custom IL code to do something like this, but is there ANY way to do this?</p> http://stackoverflow.com/questions/378367/is-there-a-java-descriptor-like-thing-in-net 2 Is there a Java Descriptor like thing in .Net? Sun Liwen 2008-12-18T16:17:39Z 2008-12-23T20:26:57Z <p>I'm working on a static analysis tool for .NET assembly. In Java, there is a <a href="http://java.sun.com/docs/books/jvms/second_edition/html/ClassFile.doc.html#1169" rel="nofollow">Descriptor</a> which can be used to represent method or field in a string with specified grammar. </p> <p>for field:</p> <p><code>double d[][][];</code></p> <p>will be</p> <p><code>[[[D</code></p> <p>It's useful especially when doing bytecode analysis. Coz it's easy to describe. If there a similar thing in .NET CLR? Or is there a better way to achieve this? Thanks!</p> http://stackoverflow.com/questions/123690/what-clr-net-bytecode-tools-exist 3 What CLR/.NET bytecode tools exist? Alex Miller 2008-09-23T20:37:31Z 2008-12-18T16:34:26Z <p>I'm well aware of Java tools for manipulating, generating, decompiling JVM bytecode (ASM, cglib, jad, etc). What similar tools exist for the CLR bytecode? Do people do bytecode manipulation for the CLR? </p> http://stackoverflow.com/questions/9204/il-level-code-debugger 2 IL level code debugger axk 2008-08-12T20:06:13Z 2008-08-19T21:26:17Z <p>Hi,</p> <p>Is there any IL level debugger in form of a VS plugin or standalone application?</p> <p>Visual studio’s debugger is great, but it allows you to debug on either HLL code level or asselbly language, you can’t debug IL. It seems that in some situations it would be useful to have an opportunity to debug at IL level. </p> <p>In particular it might be helpful when debugging a problem in the code that you don't have the source of.</p> <p>It is arguable if it is actually useful to debug IL when you don't have the source, but anyway.</p>