An intermediate language, in compiler design, is a low-level language that typically resembles an idealized assembly language, often a textual representation of bytecode for a virtual machine. For .NET's CIL, use the [cil] tag.

learn more… | top users | synonyms

0
votes
1answer
17 views

llvm error: Found more than one landing-pad successor

llvm has a MachineVerifier pass which checks a MachineFunction for correctness based on different parameters like: liveness, dead Basic Block, correct register class etc. Recently I came across this ...
1
vote
2answers
415 views

What does Backpatching mean? [closed]

What does backpatching mean ? Please illustrate with a simple example.
2
votes
1answer
80 views

How stable is the LLVM assembly language?

The LLVM Language Reference states that it can be used as an on-disk bitcode representation (suitable for fast loading by a Just-In-Time compiler) How stable is this representation? E.g., can I ...
1
vote
0answers
75 views

Is it possible to execute a gcc .ssa file directly? If not, how to compile?

This question is a bit quaint, but I'm having difficulty finding the answer in this section of the manual. If I dump the SSA of a C program into a file, like: ~$ gcc -fdump-tree-ssa program_name.c ...
0
votes
2answers
99 views

Is there an LLVM backend for Perl?

I have a project written in C which I wish to convert to Perl. A friend of mine suggested to use LLVM. I compiled my C code to LLVM assembly using Clang. Now I'm trying to convert this intermediate ...
0
votes
2answers
39 views

How do we know how big to set the Heap?

I'm trying to convert Java to an intermediate language and am in the process of figuring out how the intermediate language works. I have the original Java code: ...
9
votes
2answers
253 views

What are some obvious optimizations for a virtual machine implementing a functional language?

I'm working on an intermediate language and a virtual machine to run a functional language with a couple of "problematic" properties: Lexical namespaces (closures) Dynamically growing call stack A ...
1
vote
2answers
83 views

Does .NET intermediate language have stack manipulation functions?

Probably a dumb question, but does MSIL have general Forth-like functions for manipulating data on its stack? (For example, DUP, SWAP, etc.)
1
vote
2answers
579 views

C# Call and return an object from a static method in IL

This is an extension to the solutions offered here. I've created a static method that returns me an object. My goal, is the write a dynamic method for a type I define at runtime to return me the ...
10
votes
2answers
312 views

Is the c# compiler smarter than the VB.NET compiler?

If I look at the IL that is created in Linqpad for the two following code snippets, I wonder what happens here. In c# int i = 42; results in the following IL code IL_0000: ret whereas in VB ...
0
votes
1answer
239 views

Logical expressions and intermediate code generation

I managed to get the lexer, syntax checker and semantics and now I want to move on intermediate code generation. The problem is that i don't know how to handle logical expressions. I read something ...
0
votes
3answers
162 views

Published application (windows form) is machine code?

I know, the question may be a usual for many, but I am confused like anything. I am reading .net with c#. I went through many articles and also msdn. My doubt is: When I develop a C# Windows form ...
1
vote
4answers
550 views

Compile C++ code into assembly and then de-assemble

Does anyone know how convert C++ code to assembly code and then do the reverse? The forward way is very easy: g++ -S I want to analyze the output and see if it has been compiled correctly (Just for ...
10
votes
5answers
254 views

Difference between interface as type constraint and interface as parameter?

If I wanted to create a method that takes an instance of IList as a parameter (or any other interface, but let's use IList as an example), I could create a generic method with a type constraint, e.g.: ...
4
votes
4answers
660 views

Which Assembly Language to Learn [closed]

I'm interested in learning Assembly, specifically because I find polymorphic code rather interesting and I'm kind of confused as to which I should learn. I hear x86 is most common to learn or start ...
2
votes
1answer
276 views

Why do assemblies with the SecurityTransparent attribute cause instrumented code via a profiler to throw a VerificationException?

It seems when I instrument an assembly using OpenCover, assemblies with the SecurityTransparent attribute (and AllowPartiallyTrustedCallers it seems) will throw a VerificationException. I'd like to ...
5
votes
4answers
340 views

Static analysis for partial C++ programs

I'm thinking about doing some static analysis project over C++ code samples, as opposed to entire programs. In general static analysis requires some simpler intermediate representation, but such a ...
2
votes
3answers
439 views

Intermediate code from C++

I want to compile a C++ program to an intermediate code. Then, I want to compile the intermediate code for the current processor with all of its resources. The first step is to compile the C++ ...
4
votes
1answer
164 views

Question about how the C# Compiler emits TypeRef information

I found this interesting thing when I was trying out the new feature “optional parameters” in C# 4.0. I know that there are two ways to use “optional parameters” in C# 4.0: static void ...
2
votes
1answer
147 views

Integration Test for All References of a Method Invocation

So, I've been searching around on the internet for a bit, trying to see if someone has already invented the wheel here. What I want to do is write an integration test that will parse the current ...
10
votes
1answer
471 views

Static constructor on a .NET interface is not run

You can define a static constructor on an interface in .NET in IL. However, if you do so, the static constructor is not run when you run a method on the interface: .method public static void Main() { ...
6
votes
1answer
418 views

Does F# Interpreter (fsi.exe) also produces Intermediate Language-Code as F# Compiler (fsc.exe) does?

Currently I'm doing a recherche for university about F#. I have a question about the F# interactive Console and the F# compiler. The F# compiler produces Microsoft Intermediate Language (MSIL) code ...
4
votes
3answers
257 views

How is this virtual method call faster than the sealed method call?

I am doing some tinkering on the performance of virtual vs sealed members. Below is my test code. The output is virtual total 3166ms per call virtual 3.166ns sealed total 3931ms per call sealed ...
3
votes
2answers
343 views

ILGenerator: Load created method

I am using System.Reflection.Emit, and at some point I want to create a delegate from a MethodBuilder: MethodBuilder fooBuilder = createFooMethodBuilder(); ILGenerator ilGenerator = ... Type ...
3
votes
1answer
800 views

Tool for editing .IL files?

Currently I use Notepad for this purpose. Is there any specific tool intended for editing .NET Intermediate Language files? Dotnet IL Editor (DILE) disassembles files before editing them, I don't ...
0
votes
1answer
253 views

.NET IL Property setter

Consider this class: public class Foo { // Fields private string _bar; // Properties private string Bar { get { return this._bar; } ...
3
votes
2answers
354 views

Modify IL code on the fly

I want to modify .Net IL code of an existing class on the fly. Is that possible somehow? I found some references to the .Net Profiling API, but according to the documentation it does not support self ...
5
votes
1answer
1k views

Three Address Code (TAC / 3AC)

While doing some reading, I came across the terms "Intermediate Language" and "3AC". IL, as I understand, is the middle "step" in the source code compilation process. More specifically, I'm reading ...
3
votes
2answers
369 views

C# DLL to .il, to C++ DLL: problem with strings

I'm trying to export some functionality from C# so I can use it in my unmanaged C++ app. On my test project, I first I create a C# DLL with a simple function to write a string to a file. I then use ...
4
votes
5answers
341 views

Programmatically compare IL of two methods

I have a compiled assembly. I want to programmatically compare the method implementation of one of the methods in that assembly with something I expect. Is there a way I can compare their ILs? Even ...
1
vote
4answers
407 views

What does an if look like in IL?

What does an if statement look like when it's compiled into IL? It's a very simple construct in C#. Can sombody give me a more abstract definition of what it really is?
1
vote
3answers
266 views

Mechanism to extract specific IL (.NET Intermediate Language) signatures from an assembly

I have a list of about 25 types found in the Microsoft .NET assembly mscorlib.dll where I need to extract the IL signatures of the class and its members. I want one file per type, with each signature ...
2
votes
1answer
119 views

In .NET, how is access to private methods restricted?

In .NET, are private methods and properties enforced by the runtime or just by the compiler? If you try to call another object's private methods, the compiler will throw an access exception. What if ...
0
votes
2answers
202 views

WPF click event triggering twice under specific build enviroment

We are facing a strange problem. We have a user control written in WPF and we have added a click event handler in the xaml file. On local system it works as expected. But when the build is generated ...
0
votes
1answer
53 views

How to pass value when subscribing to event and obtain it when the event is triggered (DynamicMethod usage problems)

The task is to create event handlers in runtime. I need the one method to be called with different parameter value for different events. The events and their number are only known in runtime. So I'm ...
1
vote
2answers
333 views

How do actually castings work at the CLR level?

When doing an upcast or downcast, what does really happen behind the scenes? I had the idea that when doing something as: string myString = "abc"; object myObject = myString; string myStringBack = ...
5
votes
2answers
720 views

Can Mono.Cecil modify code already loaded in the AppDomain?

I want to add some behavior to a certain class at runtime. I know how to subclass at runtime using Reflection.Emit but thats not enough, Depending on some external configuration I need to inject ...
0
votes
2answers
304 views

ildasm and dynamic exe files

I am trying to create an application can modify properties in IL to create a slightly different executable. E.g Client A runs app and a label on the WinForm label Reads "Client A:". Client B runs the ...
1
vote
2answers
134 views

Variable comparison

The following C#-snippet: var x = 1; var y = 1; if (x == y) Console.Write("True"); Generates this MSIL: .locals init ( [0] int32 x, [1] int32 y, [2] bool ...
1
vote
1answer
226 views

Larger .maxstack when not storing a reference?

I am no IL master of any sort, I just use it sometimes to check what the compiler makes of the code that I write. One thing that I have been wondering about is why .maxstack gets the value it gets ...
3
votes
2answers
2k views

IL Compiler for .NET?

This may be a dumb question, but is there a compiler for IL code, similar to that shown by Reflector in IL mode?
4
votes
1answer
369 views

Options for invoking methods dynamically in C#

I've seen quite a few questions related to how do I invoke a method like this and that. What I haven't found is a listing of the different options of how to invoke a method via reflection or any other ...
3
votes
2answers
714 views

C# compiling to MSIL code

Does the Microsoft C# compiler (CSC.exe) have an option to output the Intermediate Language files? Kind of like the -S switch does in GCC?
0
votes
4answers
83 views

what is composite instructions?

I'm doing the class compiler design at the chapter of intermediate code. By doing some research online, i came across this sentence: Recursive interpretation is necessary when the source program can ...
0
votes
3answers
293 views

vs2008 syntax highlighting for il assembler

is there a way to get visual studio 2008 to do a nice syntax highlighting for the intermediate language?
1
vote
2answers
154 views

Converting a CFG to IL

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. This is fine ...
3
votes
2answers
265 views

Getting Started with IL (Intermediate Language) [closed]

Can anyone suggest any good resources for getting started with IL. Specifically if anyone knows of any GOOD books or screencasts I would appreciate the feedback.
0
votes
4answers
200 views

What happens if we add lines to IL code and add breakpoints to our program?

If I add let's say 1 line at the beggining of a method, if I set a breakpoint through Visual Studio on the first line, will it point to the first line or the second? If it will flag the wrong line, is ...
8
votes
2answers
2k views

How does the .NET IL .maxstack directive work?

I'd like to know how does .maxstack really work. I know it doesn't have to do with the actual size of the types you are declaring but with the number of them. My questions are: does this apply just ...
2
votes
2answers
993 views

How and when does .NET actually compile code?

Let's say you write an app in C#, VB, anything with .NET When you hit build, does it really compile your code? I thought so until I started using redgates reflector on some of my assemblies and saw my ...

1 2