Tagged Questions

7
votes
2answers
358 views

Making gcc generate only machine code

More specifically, I would like to produce a file that I can load into memory (for example with mmap) and then jump to the start of that memory to run the code. Ideally, I'd like the option of either ...
4
votes
3answers
467 views

Loading MachineCode From File Into Memory and Executing in C — mprotect Failing

Hi I'm trying to load raw machine code into memory and run it from within a C program, right now when the program executes it breaks when trying to run mprotect on the memory to make it executable. ...
3
votes
8answers
482 views

Can software be executed in bare metal machine?

I just wonder, can we execute a program on a machine without an operating system? Besides, I heard that the Linux kernel is written in C language and a kernel is run during booting, so I just wonder ...
1
vote
3answers
70 views

How to include and translate custom instructions/extension on standard C/C++ code keeping performance high

I'm developing a general purpose image processing core for FPGAs and ASICs. The idea is to interface a standard processor with it. One of the problems I have is how to "program" it. Let me explain: ...
1
vote
1answer
101 views

Assembly how to translate JNE to C Code without ZF flag access

ASM to C Code emulating nearly done.. just trying to solve these second pass problems. Lets say I got this ASM function 401040 MOV EAX,DWORD PTR [ESP+8] 401044 MOV EDX,DWORD PTR [ESP+4] 401048 ...
1
vote
2answers
124 views

Assembly How to translate IMUL opcode (with only one oprand) to C code

Say I got EDX = 0xA28 EAX = 0x0A280105 I run this ASM code IMUL EDX which to my understand only uses EAX.. if one oprand is specified So in C code it should be like EAX *= EDX; correct? After ...
1
vote
3answers
163 views

How to monitor machine code calls by binary program

My goal is to record the number of processor instructions executed by a given binary program through the duration of its run. While it's easy to get the actual machine code from the source code ...
0
votes
2answers
115 views

Assembly How to translate opcode DIV to C Code

Hey I know I been asking alot of questions.. but not much resources on this on google so hopefully this will help future people who attempt to do similar projects, I always google solutions as well, ...
0
votes
1answer
180 views

Assembly How to convert REP STOS to C code

I been debugging REP STOS DWORD PTR ES:[EDI] for a while now From my conclusion it always uses ECX as counter. EAX as the value that will be copied over EDI and then appended ECX times so after ...
0
votes
4answers
121 views

cast pointer to functor, and call it

can I do something like: typedef void (*functor)(void* param); //machine code of function char functionBody[] = { 0xff,0x43,0xBC,0xC0,0xDE,.... } //cast pointer to function functor myFunc = ...
0
votes
4answers
508 views

Kind of self-modifying program in C [closed]

Is it possible to write a C function that does the following? Allocate a bunch of memory in the heap Writes machine code in it Executes those machines instructions Of course, I would have to ...