Programming
A look at the Windows Phone JIT compiler
Saturday, July 16th, 2011When optimizing a very hot path in my code, I sometimes find it useful to see what code the compiler is generating for me. Many times I can spot things that can be easily fixed by rearranging code or adding some typecasts. But getting my hands on the CLR JIT-generated code disassembly on the Windows […]
Injecting code into executables with C
Monday, July 30th, 2007In this article, I would like to answer a commonly asked question: is it possible to use my project – PE-inject with C? The short answer: yes. The problem with PE-inject is that it is written in Delphi. Even though a DLL version of PE-inject is available, all the samples are written in Delphi too […]