Machine instructions

The register allocator works on an instruction representation given by the MachineInstr class (MI for short), defined in <llvm_source>/include/llvm/CodeGen/MachineInstr.h. The InstrEmitter pass, which runs after scheduling, transforms SDNode format into MachineInstr format. As the name implies, this representation is closer to the actual target instruction than an IR instruction. Differing from SDNode formats and their DAG form, the MI format is a three-address representation of the program, that is, a sequence of instructions rather than a DAG, which allows the compiler to efficiently represent a specific scheduling decision, that is, the order of each instruction. Each MI holds an opcode number, which is a number that has ...

Get Getting Started with LLVM Core Libraries now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.