I have tried the LLVM demo from Try out LLVM and Clang in your browser!.
What kind of IR is this? HIR, MIR, or LIR? The SSA representation is usually used in MIR, I think. So, is it an MIR? But it can store the information for dependence analysis. Hence can it be an HIR?
What filename extension actually represents the LLVM IR, .ll or .bc?
How can I get the symbol table used in LLVM?
.ll
extension, binary one -.bc
– Saguenay