A Basic Look At How The LLVM Compiler Works

The LLVM project has posted a new blog entry about the life of an instruction in LLVM.
This blog post basically goes over the process of LLVM's multiple compilation stages in how C source-code is ultimately parsed and then transformed and lowered into binary machine code.
This isn't too technical of a posting but rather just a nice overview of the LLVM process. Covered processes include starting out with Clang and generated LLVM IR, SelectionDAG instruction selection, scheduling and emitting a machine instruction, register allocatio, emitting code, the MC layer, and then the assemblers/disassemblers.
Add A Comment