LLVM is a collection of modular and reusable compiler and toolchain technologies. LLVM C++ API is the external interface users of the library employ to implement their compiler.
0
votes
1answer
26 views
How can I add my pass before X86 AT&T-Style Assembly Printer pass?
How can I add my pass before X86 AT&T-Style Assembly Printer pass?
I need to change MachineFunction and save changes to the asm file.
The problem is that my pass is triggered after all.
Pass ...
1
vote
1answer
55 views
LLVM IR Function with an array parameter
I want to generate LLVM IR code from two basic c++ functions which are like below.
int newFun2(int x){
int z = x + x;
return z;
}
int newFun(int *y){
int first = y[3]; //How to define ...
1
vote
1answer
39 views
How could I insert/remove an edge in LLVM?
Could I insert a new edge by changing its destination, and remove another edge by its source and destination. In other words, could I replace the basic block destination of an edge by another one, to ...
1
vote
1answer
40 views
LLVM IR getelementptr LLVM C API equivalent
I am trying to write an LLVM C API code to generate an LLVM assembly code to count the number of characters in a string. I need to know how to write a getelementptr in LLVM IR equivalent in LLVM C ...
0
votes
1answer
33 views
Designing an API to accept a generic output stream as a parameter
I am designing an API using the LLVM library which will accept an output stream as one of its constructor parameters. The LLVM coding standards dictate the following:
Use raw_ostream
LLVM ...
11
votes
1answer
163 views
Dynamic Symbol Resolution of Executable Using LLVM
I am currently using LLVM's ObjectFile (documented here) to represent an executable. I have successfully read in an executable to the ObjectFile and would like to determine which call destination ...
1
vote
1answer
42 views
Undefined symbol for LoopPass loadable module
I am building a loop pass following these instructions: http://llvm.org/docs/WritingAnLLVMPass.html
Everything works fine, I did it many times for Function Passes, but in the runOnLoop method, ...
0
votes
1answer
48 views
Access variable Element of Array in llvm
I want to get the Value of an array at an variable index. The Index is computed by the program and not known at parse time. So it is stored in an Value and converted to an Int like this:
Value ...
1
vote
1answer
69 views
How to call a JITed LLVM function with unknown type?
I am implementing a front-end for a JIT compiler using LLVM. I started by following the Kaleidoscope example in the LLVM tutorial. I know how to generate and JIT LLVM IR using the LLVM C++ API. I also ...
1
vote
0answers
38 views
llvm inliner pass doesn't work
I have wrote a wrapper over a function and i want to inline it (this wrapper just maps the arguments for the original function in another way).
I am trying to call the inliner in llvm over my module ...
0
votes
3answers
274 views
Apple LLVM Compiler Error 4.1 [invalid deployment target for -stdlib=libc++]
Can Any one Tell me how to solve this Error... My X-Code is Version 4.5. My IOS Simulator is Version 4.3
clang: error: invalid deployment target for -stdlib=libc++ (requires iOS 5.0 or later)
...
1
vote
2answers
124 views
Passing an array to an external function
I am new to LLVM, and I am learning how to use LLVM for profiling. I need to pass an array to an external method, and insert a call instruction to the method in the code. I am currently using the ...
0
votes
1answer
166 views
How to get variable definition line number etc. using dbg metadata?
As far as I know, when I need to get the line number of a local variable I had to look for the invocation of the llvm.dbg.declare intrinsics and get the dbg metadata(since AllocaInst itself does not ...
1
vote
1answer
335 views
Exact differences in c++11 support when using libc++ versus libstc++ on Apple llvm 4.1?
Can anyone suggest a way to determine the differences in c++11 support when using libc++ versus libstdc++ that ship with the Apple LLVM compiler?
In particular, I am currently using LLVM 4.1 that ...
4
votes
1answer
90 views
Is it possible to add arguments for user defined passes in llvm
Now we are implementing a analysis pass for llvm, following this tutorial. and need to pass an additional argument to the plugin such as below:
opt -load /path/to/myplugin.so -mypass -mypass_option ...
5
votes
1answer
331 views
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 a transformation pass (with the C++ API). I intend to store this information for use by another tool ...
2
votes
1answer
59 views
do I need to calculate padding by myself to construct a StructType?
I am using LLVM IR to generate some structure data.
For example:
struct mystruct {int a:1; int b:2; unsigned long c} = {{1, 2, 3}};
I read the document and tried the demo, it seems the API ...
1
vote
1answer
63 views
Can I create a constant from a symbol and use it as array initializer?
Basically I want to create the data IR for following C code:
extern int myarr1[];
int myarr2 = {(int)&myarr1, 0, 0};
So I created an llvm::GlobalVariable object for myarr1. But llvm asserted ...
2
votes
0answers
148 views
how to change type: global variable use before define
In my case, I need to create a reference to a global variable in the module and then define the global variable after the reference.
When I create the instruction which will use the global varaible, ...
1
vote
1answer
148 views
No more ConstantArray::get(Context&, char*&, bool)?
Look at the LLVM Demo, the offical way to create a constant string is:
Constant* consStr = ConstantArray::get(mod->getContext(), "hello", true);
However, it doesn't work! I aways get compile error ...
0
votes
0answers
85 views
LLVM: Undefined symbol when calling recalculate method on DominatorTreeBase
I'm working on moving a llvm pass from llvm 2.8 to llvm 3.1, and I'm getting this runtime error:
opt: symbol lookup error: /......./llvm/Release+Asserts/lib/InstrLLVM_VM_multi.so: undefined ...
0
votes
1answer
139 views
accessing function parameters registers for load
functions are created like this:
llvm::FunctionType* FunctionTypePtr = llvm::FunctionType::get( returnTypePtr , types , false );
llvm::Function* llvmFunction = llvm::Function::Create(FunctionTypePtr,
...
1
vote
1answer
194 views
How can I call this native function from F#? (LLVMCreateJITCompilerForModule)
I'm using the llvm-fs bindings and one method I would like to call is createJITCompilerForModule which is an extern to the native method LLVMCreateJITCompilerForModule in the LLVM C api. The author of ...
0
votes
0answers
243 views
compiling opencl program in llvm [closed]
Can llvm compile any opencl program c and c++ ?
I am using intel CPU.
if yes can you tell me the compilation steps/commands ?
With Thanks,
Barun
0
votes
1answer
239 views
Segfault when using GetElementPtrInst with an ArrayRef containing more than one Value
I'm trying to write a toy compiler with LLVM and C++. But whenever I try to create a GetElementPtrInst with more than one Index there is a Segfault.
The documentation about this instruction didn't ...
1
vote
1answer
718 views
Possible to auto-generate llvm c++ api code from LLVM-IR?
The clang 3.0 online demo page http://llvm.org/demo/index.cgi provides an option to output LLVM C++ API code" representing the LLVM-IR for the input program.
Is "produce LLVM C++ API code" output a ...
