LLVM Examples and Code samples. LLVM Passes.
-
Legacy Pass Example : See
folder
. -
New LLVM Pass Manager :
-
For function paraments as operands, you can get it get it via Function Argumentslist()
- Reference : https://llvm.org/doxygen/group__LLVMCCoreValueFunctionParameters.html
- Value reference : http://llvm.org/doxygen/classllvm_1_1Value.html
- User class : for getnumoperands, getoperands etc. https://llvm.org/doxygen/classllvm_1_1User.html
-
Some other differences are listed here. Even C++ one is quadratic probed.
-
Where is "emit-llvm"? ASMWritter
AsmWritter.cpp
. -
LLVM Data Structures
: -
LLVM RTTI
: -
Inspection & Traversal over
CFG
inIR
: