Displaying 1 result from an estimated 1 matches for "i28_mov32ri64".
2016 Feb 17
2
Getting MachineInstr opcode mnemonics as strings
...to examine the output of my pass and identify instructions
from it for use in an attack. Right now I'm representing unique
instructions with nondescript numeric symbols, like "i28" for the 28th
instruction; but it would be nice to give the reader something more
helpful like "i28_MOV32ri64".
MachineInstr doesn't have a getName() function like many other LLVM
IR/MachineIR objects; is there anything roughly equivalent to this? I'm
already using MachineInstr::print() for debugging output, but it's far
too verbose for this purpose. I thought about trying to parse the...