Tagged Questions
The ilgenerator tag has no wiki summary.
30
votes
1answer
474 views
C#/.NET: Why is Calli Faster Than a Delegate Call?
I was playing around with Reflection.Emit and found about about the little-used EmitCalli. Intrigued, I wondered if it's any different from a regular method call, so I whipped up the code below:
...
8
votes
1answer
216 views
Using Reflection.Emit to emit a “using (x) { … }” block?
I'm trying to use Reflection.Emit in C# to emit a using (x) { ... } block.
At the point I am in code, I need to take the current top of the stack, which is an object that implements IDisposable, ...
5
votes
1answer
51 views
ILGenerator: How to use unmanaged pointers? (I get a VerificationException)
I'm making a sound synthesis program in wich the user can create his own sounds doing node-base compositing, creating oscillators, filters, etc...
The program compiles the nodes onto an intermediary ...
4
votes
2answers
3k views
Dynamic object property populator (without reflection)
I want to populate an object's properties without using reflection in a manner similar to the DynamicBuilder on CodeProject. The CodeProject example is tailored for populating entities using a ...
4
votes
3answers
1k views
Is there a good wrapper around ILGenerator?
I'm using System.Reflection.Emit for a while now, and find it (who don't?) as painful as bug prone.
Do you know if there is a good wrapper around the IL Generator, something that I can rely on to ...
3
votes
3answers
96 views
ILGenerator method inlining
Given following code:
using System;
using System.Reflection.Emit;
using System.Diagnostics;
using System.Reflection;
namespace ConsoleApplication1
{
class A
{
public int Do(int n)
...
3
votes
1answer
95 views
Why is it necessary to load every argument onto the stack in CIL method?
in my application I need to dynamically create a type that contains multiple properties. I am aware that in cases such as this, one has to generate an CIL for both getter and setter methods of a ...
2
votes
1answer
150 views
Using System.Reflection.Emit.ILGenerator to call Random in VB.Net?
I'm generating output for a .Net executable from my own language... the opcode (called 'Random') that's being translated from my language is supposed to create a random number within a specific range. ...
1
vote
3answers
112 views
Redirecting to a dynamic method from a generic event handler
I'm trying to write a class that's to be used to trigger a call to a method from an arbitrary event but I'm stuck as I simply cannot figure out a way to reference 'this' from emitted MSIL code.
This ...
1
vote
1answer
75 views
ILGenerator. Whats wrong with this Code
I am trying to build a dynamic Property Accessor. Want something which is like really fast as close to calling the actually Property. Dont want to go the Reflection route as its very slow. So i opted ...
1
vote
1answer
47 views
A simple Pop and then load back does not work
After calling a function, which returns an object, I try to store the value on stack in a local variable and then push it back, but it fails with an exception
Exception has been thrown with a ...
1
vote
1answer
259 views
Place an object on top of stack in ILGenerator
I have to pass a function an instance of an object, so obviously all the information to be taken as argument is to be loaded onto the evaluation stack
Here is the code that i am looking for
someClass ...
1
vote
2answers
2k views
Dynamic event generation in C# using DynamicMethod and ILGenerator
I need to generate an event handler based on an EventInfo object in runtime and call a method within that event handler. Something like the following:
public void RegisterAction(ActionData ...
1
vote
1answer
246 views
Are there any gotchas or good reasons not to use autosproc for stored procedure calls?
I've implemented a data access layer that populates generic entities from a datareader using a variation of the third monkey approach ...
0
votes
1answer
47 views
ILGenerator, make decision on return value of null
il.Emit(OpCodes.Callvirt, _compactBinaryReader_ReadObject);
this function is called and at a special condition a return value of 'null' is provided.
if that value is null i have to take a decision ...
0
votes
2answers
136 views
How to call a 'normal' method through ILGenerator.Emit*?
Is it possible for a DynamicMethod to call (via ILGenerator.EmitCall -- or similar -- for instance) a 'normal' method, e.g. Private Sub BlahBlah(ByVal obj as Object)?
Thanks in advance
0
votes
1answer
94 views
Where is the output file of microsoft ILGenerator?
I've used Microsoft ILGenerator and its Emit member. I want to know where I can find the output il file which is generated by it.
0
votes
2answers
383 views
Convert C# code
I need to simulate in C# code (with ilGenerator.Emit) the following function
public void AssignAttribute(ref ValueHolder output, Assignment assignment) {
ResultAttribute attribute = null;
if ...