skills/compilers/llvm/SKILL.md
LLVM IR and pass pipeline skill. Use when working directly with LLVM Intermediate Representation (IR), running opt passes, generating IR with llc, inspecting or writing LLVM IR for custom passes, or understanding how the LLVM backend lowers IR to assembly. Activates on queries about LLVM IR, opt, llc, llvm-dis, LLVM passes, IR transformations, or building LLVM-based tools.
npx skillsauth add mohitmishra786/low-level-dev-skills llvmInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Guide agents through LLVM as a user: generating and inspecting IR, running existing optimisation passes with opt, lowering to assembly with llc, and diagnosing missed optimisations. For writing new LLVM passes (PassPlugin, llvm-lit testing), use skills/compiler-internals/llvm-passes instead.
# Emit textual IR (.ll)
clang -O0 -emit-llvm -S src.c -o src.ll
# Emit bitcode (.bc)
clang -O2 -emit-llvm -c src.c -o src.bc
# Disassemble bitcode to text
llvm-dis src.bc -o src.ll
opt# Apply a specific pass
opt -passes='mem2reg,instcombine,simplifycfg' src.ll -S -o out.ll
# Standard optimisation pipelines
opt -passes='default<O2>' src.ll -S -o out.ll
opt -passes='default<O3>' src.ll -S -o out.ll
# List available passes
opt --print-passes 2>&1 | less
# Print IR before and after a pass
opt -passes='instcombine' --print-before=instcombine --print-after=instcombine src.ll -S -o out.ll 2>&1 | less
llc# Compile IR to object file
llc -filetype=obj src.ll -o src.o
# Compile to assembly
llc -filetype=asm -masm-syntax=intel src.ll -o src.s
# Target a specific CPU
llc -mcpu=skylake -mattr=+avx2 src.ll -o src.s
# Show available targets
llc --version
Key IR constructs to understand:
| Construct | Meaning |
|-----------|---------|
| alloca | Stack allocation (pre-SSA; mem2reg promotes to registers) |
| load/store | Memory access |
| getelementptr (GEP) | Pointer arithmetic / field access |
| phi | SSA φ-node: merges values from predecessor blocks |
| call/invoke | Function call (invoke has exception edges) |
| icmp/fcmp | Integer/float comparison |
| br | Branch (conditional or unconditional) |
| ret | Return |
| bitcast | Reinterpret bits (no-op in codegen) |
| ptrtoint/inttoptr | Pointer↔integer (avoid where possible) |
| Pass | Effect |
|------|--------|
| mem2reg | Promote alloca to SSA registers |
| instcombine | Instruction combining / peephole |
| simplifycfg | CFG cleanup, dead block removal |
| loop-vectorize | Auto-vectorisation |
| slp-vectorize | Superword-level parallelism (straight-line vectorisation) |
| inline | Function inlining |
| gvn | Global value numbering (common subexpression elimination) |
| licm | Loop-invariant code motion |
| loop-unroll | Loop unrolling |
| argpromotion | Promote pointer args to values |
| sroa | Scalar Replacement of Aggregates |
# Why was a loop not vectorised?
clang -O2 -Rpass-missed=loop-vectorize -Rpass-analysis=loop-vectorize src.c
# Dump pass pipeline
clang -O2 -mllvm -debug-pass=Structure src.c -o /dev/null 2>&1 | less
# Print IR after each pass (very verbose)
opt -passes='default<O2>' -print-after-all src.ll -S 2>&1 | less
| Tool | Purpose |
|------|---------|
| llvm-dis | Bitcode → textual IR |
| llvm-as | Textual IR → bitcode |
| llvm-link | Link multiple bitcode files |
| llvm-lto | Standalone LTO |
| llvm-nm | Symbols in bitcode/object |
| llvm-objdump | Disassemble objects |
| llvm-profdata | Merge/show PGO profiles |
| llvm-cov | Coverage reporting |
| llvm-mca | Machine code analyser (throughput/latency) |
For binutils equivalents, see skills/binaries/binutils.
skills/compiler-internals/llvm-passes for writing and testing custom LLVM passesskills/compiler-internals/compiler-frontend for generating LLVM IR from an ASTskills/compiler-internals/jit-compilation for ORC JIT execution of LLVM IRskills/compilers/clang for source-level Clang flagsskills/binaries/linkers-lto for LTO at link timeskills/profilers/linux-perf combined with llvm-mca for micro-architectural analysisdevelopment
QEMU/KVM skill for virtualization and kernel development. Use when running qemu-system-x86_64 with KVM, configuring virtio devices, VFIO passthrough, QMP monitor, libvirt, or booting custom kernels. Activates on queries about QEMU, KVM, virtio, VFIO, virsh, virt-install, or -kernel -append.
development
Hardware virtualization internals skill for Intel VT-x and AMD-V. Use when studying VMCS/VMCB, EPT/NPT page tables, VMEXIT handling, APIC virtualization, or building minimal hypervisors. Activates on queries about VMX, SVM, VMCS, EPT, NPT, VMEXIT, or type-1 hypervisor.
testing
Linux containers internals skill for namespaces, cgroups, and OCI. Use when understanding clone/unshare namespaces, cgroups v2 limits, overlayfs, runc, seccomp profiles, capabilities, or escape mitigations. Activates on queries about namespaces, cgroups, overlayfs, runc, seccomp-bpf, OCI spec, or container escape.
tools
Reverse engineering skill for binary analysis. Use when decompiling with Ghidra, analyzing with radare2, scripting RE tools, triaging with strings/file/xxd, or diffing binaries. Activates on queries about Ghidra, radare2, r2, decompiler, Binary Ninja, Diaphora, or stripped binary analysis.