python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Checking if a function argument is a global variable in LLVM
This question is similar to the question posted a few years back (Tracing global variables use in llvm), but it went unanswered (also I could not implement what comment suggested in that post). I want...
Jay
Votes: 0
Answers: 1
Is LLVM IR a machine independent language?
When I was reading LLVM IR code (transformed from C), I saw an instruction like this:
%div = sdiv i32 %add, %32
The C code of this instruction may be like this:
a = c / b;
We can see that there is a...
Shane
Votes: 0
Answers: 3
getting providers of a llvm instruction
Analyzing llvm IR file ( .bc or .ll ) for every instruction it is possible, using the provided functions, to determine the list of instructions that consume it result. What about the other way around ...
David Livshin
Votes: 0
Answers: 0
Define external c functions (dlopen) in LLVM Pass
I am trying to insert a call to dlopen in my LLVM Pass when processing bitcode files
The function signature for dlopen (based on https://man7.org/linux/man-pages/man3/dlopen.3.html) is
void *dlopen(co...
localacct
Votes: 0
Answers: 0