Tagged Questions

14
votes
10answers
3k views

What is a code cave, and is there any legitimate use for one?

I encountered this word for the first time in the StackOverflow question "C# Theoretical: Write a JMP to a codecave in asm." I see that according to Wiktionary, a code cave is: an unused block of ...
10
votes
3answers
1k views

Homoiconic and “unrestricted” self modifying code + Is lisp really self modifying?

I will be forward in admiting that my knowledge of Lisp is extremely minimal. However I am extremely interested in the language and plan to begin seriously learning it in the near future. My ...
10
votes
4answers
1k views

How to write self-modifying code in x86 assembly

I'm looking at writing a JIT compiler for a hobby virtual machine I've been working on recently. I know a bit of assembly, (I'm mainly a C programmer. I can read most assembly with reference for ...
7
votes
2answers
673 views

Writing a JIT compiler in assembly

I've written a virtual machine in C which has decent performance for a non-JIT VM, but I want to learn something new, and improve performance. My current implementation simply uses a switch to ...
7
votes
3answers
694 views

Dynamic relocation of code section

Just out of curiosity I wonder if it is possible to relocate a piece of code during the execution of a program. For instance, I have a function and this function should be replaced in memory each time ...
3
votes
2answers
536 views

Self modifying code

i found an article about self modifying code and tried to do some examples, but i get always segmentation faults. As fas as i can understand, there is a violation in memory permissions. The code ...
1
vote
3answers
186 views

copy and call function

I'd like to copy and call a function, but the code below segfaults when calling the buffer. What do I have to change? (Linux, x86) #include <string.h> #include <malloc.h> #include ...
0
votes
1answer
223 views

How to inline in C++ self modifying assembly code?

How would I inline this in C++ function. 0041F84E . 7B 02 JPO SHORT Unmodifi.0041F852 0041F850 B8 DB B8 0041F851 00 DB 00 0041F852 . 8B46 38 MOV ...