Tagged Questions
Common Intermediate Language is the object-oriented assembly language used by the .NET Framework and Mono. .NET languages compile to CIL, which is assembled into an object code that has a bytecode-style format.
115
votes
6answers
4k views
What is the purpose of a stack? Why do we need it? (MSIL)
So I am learning MSIL right now to learn to debug my C# .net applications.
I've always wondered: what is the purpose of the stack?
Just to put my question in context:
Why is there a transfer from ...
88
votes
20answers
3k views
What can you do in MSIL that you cannot do in C# or VB.NET?
All code written in .NET languages compiles to MSIL, but are there specific tasks / operations that you can do only using MSIL directly?
Let us also have things done easier in MSIL than C#, VB.NET, ...
27
votes
19answers
3k views
What's the purpose of the nop opcode?
I'm going through MSIL and noticing there are a lot of nop instructions. The MSDN article says they take no action and are used to fill space if the opcode is patched. They're used a lot more in debug ...
26
votes
2answers
3k views
What is the purpose of hidebysig in a MSIL method?
Using ildasm and a C# program e.g.
static void Main(string[] args)
{
}
gives:
.method private hidebysig static void Main(string[] args) cil managed
{
.entrypoint
// Code size 2 (0x2)
...
25
votes
7answers
4k views
Differences between MSIL and Java bytecode?
I'm new to .Net and I'm trying to understand the basics first. What is the difference between MSIL and Java bytecode?
23
votes
1answer
2k views
Why is it necessary to call :this() on a struct to use automatic properties in c#?
If I define a struct in C# using automatic properties like this:
public struct Address
{
public Address(string line1, string line2, string city, string state, string zip)
{
Line1 = ...
22
votes
1answer
498 views
Possible bug in C# JIT optimizer?
Working on a SQLHelper class to automate stored procedures calls in a similar way to what is done in the XmlRpc.Net library, I have hit a very strange problem when running a method generated manually ...
21
votes
7answers
1k views
How do i prevent my code from being stolen?
What happens exactly when I launch a .NET exe? I know that C# is compiled to IL code and I think the generated exe file just a launcher that starts the runtime and passes the IL code to it. But how? ...
20
votes
6answers
615 views
Creating method dynamically, and executing it
Background:
I want to define few static methods in C# , and generate IL code as byte array, from one of these methods, selected at runtime (on client), and send the byte array over network to another ...
19
votes
3answers
464 views
C# compiler doesn’t optimize unnecessary casts
A few days back, while writing an answer for this question here on overflow I got a bit surprised by the C# compiler, who wasn’t doing what I expected it to do. Look at the following to code snippets:
...
17
votes
9answers
536 views
Why are static classes considered “classes” and “reference types”?
I’ve been pondering about the C# and CIL type system today and I’ve started to wonder why static classes are considered classes. There are many ways in which they are not really classes:
A “normal” ...
17
votes
4answers
2k views
16
votes
5answers
790 views
What are the best resources for learning CIL (MSIL)
I'm an expert C# 3 / .NET 3.5 programmer looking to start doing some runtime codegen using System.Reflection.Emit.DynamicMethod. I'd love to move up to the next level by becoming intimately ...
13
votes
1answer
326 views
Making a CLR/.NET Language Debuggable
What are some resources for making a CLR/.NET language debuggable? I'm developing an ActionScript 3 to IL compiler, which uses DLR CallSites and CallSiteBinders to handle the dynamic aspects of the ...
13
votes
3answers
354 views
MS C# compiler and non-optimized code
Note: I noticed some errors in my posted example - editing to fix it
The official C# compiler does some interesting things if you don't enable optimization.
For example, a simple if statement:
int ...
13
votes
5answers
2k views
Java's Virtual Machine and CLR
As a sort of follow up to the question called Differences between MSIL and Java bytecode?, what is the (major) differences or similarity in how the Java Virtual Machine works versus how the .NET ...
12
votes
2answers
1k views
How Moles Isolation framework is implemented?
Moles is an isolation framework created by Microsoft. A cool feature of Moles is that it can "mock" static/non-virtual methods and sealed classes (which is not possible with frameworks like Moq). ...
12
votes
7answers
1k views
Writing a Compiler for .net - IL or Bytecode?
I'm currently diving into the inner workings of .net, which means IL. As an exercise, I want to build a brainf..k compiler for .net (yes, they already exist, but as said it's for learning purposes).
...
12
votes
2answers
370 views
The curiosity of the let_ property method
Every .net developer knows about the concept of properties. A rough 99.99%, it's just a piece of metadata gluing together two methods, a getter, and a setter.
Same thing usually goes for events, with ...
12
votes
10answers
1k views
Reasons to learn MSIL
Learning MSIL is fun and all that. Understanding what is going on "under the hood" can in many ways improve how you write your code performance-wise. However, the IL that is produced by the compiler ...
11
votes
2answers
243 views
How is LINQ compiled into the CIL?
For example:
var query = from c in db.Cars select c;
foreach(Car aCar in query)
{
Console.WriteLine(aCar.Name);
}
How would this translate once it is compiled? What happens behind the scenes?
11
votes
5answers
487 views
Is there any benefit to making a C# field read-only if its appropriate?
I am working on a project using ReSharper. On occasion it prompts me that a field can be made readonly. Is there any performance or other benefit to this? I am presuming the benefits would be quite ...
11
votes
2answers
339 views
Why is the CLR's jmp instruction unverifiable?
The title says it all. I've known about the jmp instruction for awhile, but it never struck me as being even remotely unsafe. I recently had cause to check the CIL specs and was very surprised to ...
10
votes
2answers
230 views
Is there an API for verifying the MSIL of a dynamic assembly at runtime?
When using Reflection.Emit to build an assembly at runtime, I'd like to verify the assembly MSIL before saving to disc. Like PEVerify but at runtime. Is there such an API?
10
votes
6answers
493 views
Is C# faster than VB.NET? [closed]
You'd think both are the same.
But maybe it's the compiler that Microsoft has used, but I've noticed that when compiling two very small programs, identical logic. VB.NET uses more IL instructions.
...
10
votes
3answers
361 views
Visual Studio/RAD support for coding directly in IL?
For the longest time I've been curious to code in Intermediate Language just as an academic endeavour and to gain a better understanding of what's happening "under the hood".
Does anybody provide ...
10
votes
3answers
253 views
Is there a way to see the native code produced by theJITter for given C# / CIL?
In a comment on this answer (which suggests using bit-shift operators over integer multiplication / division, for performance), I queried whether this would actually be faster. In the back of my mind ...
9
votes
4answers
253 views
How to become an MSIL pro?
I have spent hours on a debugging problem only to have a more experienced guy look at the IL (something like 00400089 mov dword ptr [ebp-8],edx ) and point out the problem. Honestly, this looks ...
9
votes
2answers
655 views
C# - are all Enum constants?
Are all Enum enumerations constants? Do they get converted to their value at compile-time, or at run-time?
8
votes
2answers
296 views
What does [opt] mean in MSIL?
I found the "optional parameters" feature in C# 4.0 very interesting, so I tried to figure out how they made it happen.
so I wrote a method like this:
private static void A(int a = 5) { }
Compiled ...
8
votes
7answers
622 views
C#: writing MSIL to add a preprocessor directive
Is it possible in C# to write MSIL code that will add a preprocessor directive to the code, e.g., #warning, if a certain condition is met? Or maybe this can be done with reflection, I don't know.
...
8
votes
3answers
591 views
Passing a lambda to a secondary AppDomain as a stream of IL and assembling it back using DynamicMethod
Is it possible to pass a lambda expression to a secondary AppDomain as a stream of IL bytes and then assemble it back there using DynamicMethod so it can be called?
I'm not too sure this is the right ...
8
votes
1answer
184 views
Why does the C# compiler explicitly declare all interfaces a type implements?
The C# compiler seems to explicitly note all interfaces it, and its base classes implement. The CLI specs say that this is not necesary. I've seen some other compilers not emit this explicitly, and it ...
7
votes
2answers
449 views
7
votes
2answers
318 views
What OpCodes were introduced in CLR 4.0?
Are there any IL opcodes that are new in .NET 4.0 as compared to 3.5, and if so, where can I find a list of them?
7
votes
5answers
345 views
Same IL code, different output - how is it possible?
I have a piece of code, which outputs different results, depending on the C# compiler and the runtime.
The code in question is:
using System;
public class Program {
public static void Main() {
...
7
votes
1answer
857 views
Iterator block generates try-fault in IL
After experimenting with an iterator block I noticed the generated IL code is not what I expect it to be. Instead of a try-finally block a try-fault block is generated, which I have never seen. I ...
7
votes
5answers
9k views
A .net disassembler/decompiler
I am looking for a disassembler or better, a decompiler for .net. The situation is that the source code for an assembly written by one of my predecessors is lost and I'd like to take a look to see ...
7
votes
5answers
653 views
Is there a CLR that runs on the CLR?
I was wondering if there was a .NET-compatible CLR that was implemented using the CLI (common language infrastructure), e.g., using .NET itself, or at least if there were any resources that would help ...
7
votes
8answers
3k views
Modifying Existing .NET Assemblies
Is there a way to modify existing .NET assemblies without resorting to 3rd party tools? I know that PostSharp makes this possible but I find it incredibly wasteful that the developler of PostSharp ...
7
votes
1answer
458 views
Using the DLR for (primarily) static language compilation
I'm building a compiler that targets .NET and I've previously generated CIL directly, but generating DLR trees will make my life a fair amount easier. I'm supporting a few dynamic features, namely ...
7
votes
3answers
588 views
Learning CIL
Does anybody know any good resources for learning how to program CIL with in-depth descriptions of commands, etc.? I have looked around but not found anything particularly good.
6
votes
2answers
158 views
Interesting Linq to SQL common base class behavior
It's a question about InvalidOperationException with message Class member X is unmapped.
One of our system has the same base entity for each LinqToSql entity with framework version 3.5.
I ran into ...
6
votes
1answer
95 views
what does 'code size' in MSIL mean
When you see a line in the IL like:
// Code size 25 (0x19)
what does nit actually mean? Is it talking about the (bytes of) memory usage? All I was able to gather was that it is one more than ...
6
votes
3answers
238 views
fixed statement in C# and managed pointer in IL code
In unsafe code in C# I assigned pointer to the managed variable of array type:
int[] array = new int[3];
...
fixed (int* ptr = array)
{
//some code
}
Then I looked at corresponding part of the ...
6
votes
4answers
266 views
Mono.Cecil type.IsAssignableFrom(derivedType) equivalent
I'm using Mono.Cecil to find types in Assembly that are derived from given on.
Normaly it can be done with IsAssignableFrom() method, but I cannot fing it's equivalent in Cecil.
Is there any such ...
6
votes
3answers
112 views
Calculated Constants in C#
Good morning, afternoon or night,
Will either the MSIL or the JIT compiler replace things like 1 << 5 or 1 << 31 in the code with 32 and 2147483648, respectively, or will they wait for ...
6
votes
1answer
423 views
Granting reflection permission to a dynamically created assembly
I am writing a simple desktop client/server application in C#. For self-educational purposes, I built my own serialization system for the messages (defined as classes) sent back and forth between the ...
6
votes
1answer
222 views
How is COSMOS possible?
I just saw that COSMOS is an OS written in MSIL langage, and I just wonder how that is possible? I always thought that MSIL needed a CLR to work, and CLR needed an OS behind it.
Thanks for ...
6
votes
1answer
187 views
Does compiling to native code in .Net remove the MSIL completely?
I'm wondering if, in the context of disassembling .Net code (Redgate .Net reflector, etc), is it more secure to compile your code to native, using Ngen? That is, does that mean someone would now need ...