Top "Llvm-ir" questions

The LLVM Intermediate Representation

How to Insert a LLVM Instruction?

I've been searching for hours and I can't find anything that could help me. I'm working on a project that …

c++ llvm llvm-ir
Is it possible to use LLVM-assembly directly?

I have read some webpages and articles about llvm and I am quite interested in this project. (Maybe to learn …

assembly llvm llvm-ir
Call LLVM Jit from c program

I have generated a bc file with the online compiler on llvm.org, and I would like to know if …

llvm jit llvm-ir
LLVM tail call optimization

Here is my understanding of things: A function "f" is tail recursive when calling itself is its last action. Tail-recursion …

llvm tail-recursion llvm-ir
Getting the original variable name for an LLVM Value

The operands for an llvm::User (e.g. instruction) are llvm::Values. After the mem2reg pass, variables are in …

compiler-construction clang llvm debug-symbols llvm-ir
Adding Metadata to Instructions in LLVM IR

First up, I am a newbie to LLVM passes. I am trying to add metadata to instructions in LLVM after …

llvm llvm-c++-api llvm-ir