Tagged Questions
1
vote
2answers
332 views
Is there a binutils for llvm?
The LLVM compiler toolchain has a gcc that is compatible with normal gcc. The advantage of using llvm-gcc is that is goes to an arbitrary target, meaning normal gcc will say no such target when you ...
0
votes
2answers
108 views
gcc to tell a register compiled from which variable
I need to know from which variable is a register of a binary instruction in the obj file is compiled from.
In short: the mapping from the register to variable for each instruction
Example: suppose ...
0
votes
2answers
672 views
Trying to no-op an instruction
Is it possible using GNU tools (gcc, binutils, etc) to modify all occurrences of an assembly instruction into a no-op? Specifically, gcc with the -pg option generates the following assembly (ARM):
...