Tagged Questions
The dynamic-execution tag has no wiki summary.
5
votes
2answers
132 views
Python: how to dynamically set function closure environment
I want to declare a function dynamically and I want to wrap any access to global variables OR alternatively define which variables are free and wrap any access to free variables.
I'm playing around ...
4
votes
5answers
469 views
Is there any way to trick the .net JIT compiler into running another method?
Ok, say that my application is emitting (x86) instructions into memory, making the page executable, etc. Is there any way of altering the method stub of an un-JITted method to point to my emitted ...
2
votes
2answers
114 views
How can you get a DLL to be deleted when its owner process exits?
I have a .NET assembly DLL that is created on-the-fly from pre-compiled code in a database. Is there a way to create the DLL file, put data into it, load it with the Assembly class, then when the ...