IL (Intermediate Language) is low level language used by Microsoft .NET Framework and Mono.

learn more… | top users | synonyms

2
votes
2answers
146 views

Does execution stack and thread's stack and local variable list refer to different stacks?

A value type may be stored in a thread's stack, and IL runs in the execution stack (abstract concept). int y=0; int a=0; int b=0; int x = y + (a - b); IL_0001: ldc.i4.0 IL_0002: stloc.0 ...
70
votes
2answers
2k views

Why does my application spend 24% of its life doing a null check?

I've got a performance critical binary decision tree, and I'd like to focus this question on a single line of code. The code for the binary tree iterator is below with the results from running ...
2
votes
3answers
62 views

Workaround to add a default parameterless constructor to a struct

Let me describe my problem - I have a struct that wraps an unmanaged handle (let's call it Mem). I need this handle to call a particular method (say "retain" or alternatively, maintain a reference ...
3
votes
3answers
131 views

IL and arguments

IL has some opcodes for operating with arguments, such as Ldarg.0 , Ldarg.1 and so on. I know that those arguments are pushed onto the stack before a call opcode is executed, in some cases Ldarg.0 is ...
4
votes
3answers
61 views

CIL OpCode (Ldarg_0) is used even though there are no arguments

I have the following C# code. public void HelloWorld() { Add(2, 2); } public void Add(int a, int b) { //Do something } It produces the following CIL .method public hidebysig instance void ...
0
votes
1answer
36 views

Is IL performance related to its code size?

When looking at intermediate language, each instruction has a particular byte size. If I have a method with a total code size (the sum of instructions sizes) of 10 bytes and a method with a total ...
3
votes
1answer
80 views

Why is Dapper emitting IL code in CreateTableConstructor?

I'm looking at the excellent Dapper micro-orm, and in the Dapper.Rainbow project, there is some code that creates a table ctor, using IL. I was hoping someone could explain to me what this code is ...
2
votes
1answer
48 views

Dynamic Method, store return value in local

I am encountering some issues with a dynamic method. The (pseudo-)IL-Code for this method looks like this var localB = dynMethodGen.DeclareLocal(typeof(Runtime.IntegerObject)); ...
0
votes
0answers
33 views

May I use Mono.Cecil with IL Language Directly [closed]

(I'm sorry that my English is poor, but I will try my best...) Is there any approach that I can use Mono.Cecil with IL language directly? I want to write a secondary compiler to support inline IL ...
2
votes
3answers
61 views

why is a const long converted into short in IL?

simple curiosity, this code private const long constLong = 16; private static long instanceLong = 16; static long constTest() { long i = 4; return i + constLong; ...
15
votes
3answers
694 views

Generate tail call opcode

Out of curiosity I was trying to generate a tail call opcode using C#. Fibinacci is an easy one, so my c# example looks like this: private static void Main(string[] args) { ...
3
votes
2answers
88 views

Does instantiation of local string variable impact performance?

I have two situations: static void CreateCopyOfString() { string s = "Hello"; ProcessString(s); } and static void DoNotCreateCopyOfString() { ...
2
votes
2answers
62 views

Array bounds check in DynamicAssembly only works when evaluation stack is empty

I've got simple for loop with array access written using ILGenerator. When method is created with this exact code, I open disassembly and it's ok, no array bounds check. But when I first put instance ...
3
votes
1answer
50 views

.extern module in IL files

I am unable to get any satisfactory explanation of the .extern module directive in IL manifests. What does this directive mean? Any help is appreciated. Also, I would like to know that if I strong ...
12
votes
2answers
258 views

Why c# compiler in some cases emits newobj/stobj rather than 'call instance .ctor' for struct initialization

here some test program in c#: using System; struct Foo { int x; public Foo(int x) { this.x = x; } public override string ToString() { return x.ToString(); } } ...
6
votes
1answer
103 views

What is the difference between ldobj and ldind.<type>, and why is ldobj faster?

When using a 64-bit sized struct, the following code snippet [StructLayout(LayoutKind.Explicit, Pack = 1, Size = 8)] unsafe struct BUF { } ((BUF*)dst) = *((BUF*)src); Produces IL_0046: ...
2
votes
0answers
119 views

FxCop rule around ensuring a certain method accepting a lambda is called first in a test

Using a custom FXCop rule, I want to ensure that a method is called at the top of each unit test and that all unit test code is part of an Action passed into that method. Essentially I want this: ...
1
vote
2answers
112 views

Why Does MethodBody.GetILAsByteArray Return Different Arrays on Different Platforms?

I'm considering the instance method Object.Equals(Object). Using reflection, it is posible to get the IL for this method as a byte array, as follows: var mi = typeof(object).GetMethod("Equals", ...
0
votes
1answer
59 views

Calling a method on a field

I'm just curious on how I would call a method on a field using Emit. I have this class generated public class AClass : IDynamicProxyTestInterface { private ...
0
votes
1answer
329 views

Access to foreach variable in closure

[Access to foreach variable in closure. May have different behaviour when compiled with different versions of compiler.] I know how fix this warning but i want know why get this warning ? Is ...
1
vote
1answer
148 views

Why Managed module Is faster than Unmanaged module in C# [closed]

I reading a book( CLR via c#)in the book writer speak about IL and managed module that managed module compiling in native cpu code and then execute in the book writer said that Managed module Is ...
7
votes
1answer
117 views

Have I made a mistake in this IL I'm not seeing?

I'm working on a compiler using System.Reflection.Emit, and I'm getting JIT limitation errors I can't figure out. The problem occurs in my implementation of function handles. I.e. generating the code ...
0
votes
0answers
46 views

Trim unreachable code from Assembly [duplicate]

Possible Duplicate: How does the number of classes in an assembly impact performance? I have a fairly large .Net assembly containing common controls and components. This the VS project ...
3
votes
1answer
189 views

C# Dynamic Method - IL vs Expression Trees

I'm playing and learning little with ANTLR building a simple DSL for .NET, transforming the script in string into Dynamic Method. My first idea was translate to IL opcodes, but now I am reading about ...
4
votes
2answers
154 views

Why does adding beforefieldinit drasticly improve the execution speed of generic classes?

I'm working on a proxy and for generic classes with a reference type parameter it was very slow. Especially for generic methods (about 400 ms vs 3200 ms for trivial generic methods that just returned ...
2
votes
1answer
72 views

Mono.Cecil How to define an output parameter

I want to add a new method via Mono.Cecil which has an output parameter, like: private static bool XXXXX(out Int32 a) I tried the following codes to add this parameter TypeReference typeInt32 = ...
2
votes
1answer
54 views

Where is CopyToNative defined?

I am currently browsing decompiled C# IL (with ILSpy) to get an impression on how some of the methods from System.Runtime.InteropServices are (could be) implemented. When I wanted to check how ...
1
vote
1answer
175 views

IL to c# conversion

I'm working on a project which has very little in the way of testing and where large amounts of the code has recently been changed. In particular code has been ported from using one data provider to ...
8
votes
2answers
153 views

Make type's instances non-storable

Is there a way to mark a type (or even better, an interface) so that no instances of it can be stored in a field (in a similar way to TypedReference and ArgIterator)? In the same way, is there a way ...
1
vote
1answer
61 views

How to see IL of a class/method in Visual Studio 2012

I had nice VS2010 extension (called Ndasm I think). However it is not compatible with VS2012. Is there a way I can see the IL of a class or a method immediately in design time?
0
votes
1answer
72 views

Access Violation with Dynamic Method, only when Running 32 Bit

I have the following code for creating a dynamic method to call the Set method of a property in my VB.net app, using .NET 3.5 (can't switch to the Lambda expression style). Using an the example posted ...
3
votes
1answer
105 views

“Specified cast is not valid” only on release build from MS build

I am getting a "Specified cast is not valid" valid when doing only a release build from MSBuild 4.0. I tested this out in using a release build from Visual Studio 2012 and didn't get this issue. I ...
6
votes
1answer
181 views

Why is a TypeBuilder generated generic methodinfo not a generic method?

I have some code that uses a MethodInfo of a generic method found on a generated type. To avoid some reflection, I have the code use the ldtoken Method ldtoken Type call ...
2
votes
1answer
111 views

IKVM.Reflection for emitting IL at run time for Windows Store applications?

I saw a post on IKVM.Reflection by Marc Gravell, and here's what I found at IKVM User's Guide: There are two main ways of using IKVM.NET: Dynamically: In this mode, Java classes and jars ...
1
vote
1answer
67 views

IL, varags and ExcelDNA

Context: Windows 7, ExcelDNA 0.30, .NET 4.0 I'm still trying to get a params/ParamArray approach working in Excel via ExcelDNA. By using varags, I'm avoiding anything to do with ...
1
vote
1answer
105 views

How to add references using Reflection.Emit

I am writing a compiler for a language that runs on the .NET framework. I'm trying to generate code for an import statement. Basically import System.Drawing Should behave like using ...
9
votes
4answers
337 views

IL & stack implementation in .net?

I wrote a simple program to examine how IL works : void Main() { int a=5; int b=6; if (a<b) Console.Write("333"); Console.ReadLine(); } The IL : IL_0000: ldc.i4.5 IL_0001: stloc.0 ...
1
vote
1answer
50 views

Duplication top of stack item in IL without helper variable

Is it possible to copy top stack item and push it back? I only know about solution with using of helper local variable like this: stloc.n ldloc.n ldloc.n Are IL instructions for copying stack ...
3
votes
1answer
134 views

Use System.Reflection.Emit to show a MessageBox in Windows.Forms

I am trying to do a msgbox with ilgenerator.emit but I have an exception when I run the code: exception generated from destination of a call This is my code: Private Sub Button1_Click(ByVal ...
4
votes
2answers
91 views

DynamicMethod prelink

I'm the author of a psp emulator made in C#. I'm generating lots of "DynamicMethod" using ILGenerator. I'm converting assembly code into an AST, and then generating IL code and building that ...
0
votes
1answer
62 views

Am I hurting the performance of my application by weaving IL code as IL_9999?

I was messing around my IL code inside of my dll file (just for learning purposes). I wanted to see what would happen if I injected my own IL code, for example... I threw in a box call: IL_9999: box ...
2
votes
1answer
40 views

What kind of format does custom attribute blobs(strings) use?

So, I'm trying to figure out exactly how custom attributes with blobs work. The binary format seems very... odd. Example from ildasm .custom instance void ...
7
votes
2answers
163 views

Are there other ways of calling an interface method of a struct without boxing except in generic classes?

see code snippet public interface I0 { void f0(); } public struct S0:I0 { void I0.f0() { } } public class A<E> where E :I0 { public E e; public void call() { ...
2
votes
1answer
291 views

Windows 8, .NET 4.5 DefineUninitializedData issue

I am trying to get to the bottom of an issue with our compiler and .NET 4.5 with Windows 8. I have simplified it down to a small piece of code and wondered if anyone has any insight into the issue. I ...
5
votes
2answers
91 views

Is it possible to use Reflection.Emit for the opcodes stelem.any and ldelem.any?

So, I recently did some experimenting and discovered that it appears that Reflection.Emit doesn't support all of the opcodes in the ECMA spec. There are 3 opcodes missing: ldelem.any stelem.any no. ...
2
votes
2answers
323 views

Reflection Emit to create class instance

I want to use Reflection Emit to create an instance of a class with arbitrary constructor parameters. This is how my code looks like: public delegate object ObjectActivator(params object[] args); ...
0
votes
3answers
174 views

Simple VB code is not running

I made a simple example in VB.net, compiled it, and run it: Public Class Application Sub calc1() Dim sq as Integer 'uncommenting this loop keeps it from compiling for some reason ...
3
votes
2answers
171 views

Access PropertyInfo via metadata token for use from IL?

I have an application where I have a method taking a PropertyInfo parameter and would like to call this method from IL. For similar methods taking a MethodInfo, for example, I can create an ...
3
votes
2answers
249 views

DynamicMethod is much slower than compiled IL function

I wrote a simple object copier that copies public properties. I can't figure out why the Dynamic method is a lot slower than the c# version. Durations C# method : 4,963 ms Dynamic method : 19,924 ...
1
vote
0answers
55 views

Sizeof opcode differs between Reflection.Emit and ECMA specs?

So, I developed a tiny library directly in IL to interface with C# for the sizeof opcode (NOT C# operator). It was pointed out to me that my IL "wasn't valid" even though it was. In the ECMA spec it ...

1 2 3 4 5 6