LLVM: IR, Assembly, SSA

This is an introduction to LLVM intermediate code which is low level but still human-readable along with Assembly and Static Single Assignment (SSA).

Table of contents.Introduction.LLVM Assembly Code.Intermediate Code.Static Single Assignment - SSA.Summary.References.Introduction.

Creating a hello world program and compiling it to binary code;

$ gcc hello.c -o hello.bin; ./hello.bin

A .bin file holds the hello world code in binary format, 0s and 1s. We can view its contents using the ...

 •  0 comments  •  flag
Share on Twitter
Published on April 29, 2022 11:39
No comments have been added yet.