Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
121 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.: ...
10
votes
1answer
294 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() { ...
8
votes
5answers
2k views

Why is it so easy to decompile .NET IL code?

Why is it so easy to decompile .NET IL-code into source code, compared to decompiling native x86 binaries? (Reflector produces quite good source code most of the time, while decompiling the output of ...
6
votes
1answer
284 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 ...
5
votes
1answer
418 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 ...
5
votes
1answer
423 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 ...
5
votes
2answers
969 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 ...
4
votes
4answers
175 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 ...
4
votes
1answer
108 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 ...
4
votes
5answers
189 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 ...
4
votes
1answer
222 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
4answers
178 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 ...
3
votes
2answers
213 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
162 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 ...
3
votes
2answers
225 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 ...
3
votes
2answers
444 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?
3
votes
3answers
736 views

Which Tools Perform Post-Compile Modification of IL?

A recent mention of PostSharp reminded me of this: Last year where I worked, we were thinking of using PostSharp to inject instrumentation into our code. This was in a Team Foundation Server Team ...
2
votes
3answers
281 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++ ...
2
votes
1answer
93 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 ...
2
votes
3answers
178 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 ...
2
votes
1answer
87 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 ...
2
votes
2answers
1k 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?
2
votes
2answers
187 views

Getting Started with IL (Intermediate Language)

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.
2
votes
4answers
210 views

Where can I learn how best to represent procedural code in a language-independent manner ready for transformations?

For my source-code transforming (Fortran and C) numerical automatic differentiation engine project PARADE, I need a language-independent representation of procedural program code. The IL (intermediate ...
1
vote
4answers
135 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 ...
1
vote
1answer
71 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 ...
1
vote
1answer
166 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 ...
1
vote
4answers
239 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
173 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 ...
1
vote
2answers
209 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 = ...
1
vote
2answers
103 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
141 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 ...
1
vote
2answers
356 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
vote
1answer
223 views

Does PL/SQL perform tail call optimization?

I'm fairly new to the language, and I was wondering if tail calls were optimized. In other language I could examinate the machine code or an intermediate representation and figure it for myself but I ...
1
vote
6answers
722 views

Making a language, need a good backend

I want to make a compiled language. I am currently evaluating backends. So far I am looking at C because of its speed of execution, compiling, and a small, easy to use compiler called TCC. Having ...
1
vote
2answers
242 views

In .NET, is the call stack inextricably tied to a thread?

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 ...
0
votes
1answer
82 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
49 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 ...
0
votes
1answer
122 views

.NET IL Property setter

Consider this class: public class Foo { // Fields private string _bar; // Properties private string Bar { get { return this._bar; } ...
0
votes
2answers
123 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
110 views

Is there any way to consume .NET 4.0 assemblies in Silverlight

Silverlight can only recognize its v2.0.5.0 assemblies. The way to consume .NET 2.x/3.x assemblies in Silverlight truly exists. If I want to call, such as the method of Json class provided by ...
0
votes
1answer
37 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 ...
0
votes
2answers
201 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 ...
0
votes
4answers
60 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
200 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?
0
votes
4answers
164 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 ...