Tagged Questions
0
votes
1answer
30 views
Is there any api in libclang to simpilfy BinaryOperator
I want to do a transform on my code, it simplifies the binary operator e.g. "1+ a+ 2" to "a+3", so is there any api in libclang can do such things?
0
votes
1answer
34 views
construct AST from string with libclang
I generate some c++ codes, and store it in string, I want to construct an AST tree from the string using libclang. How to do it? I don't want to string into extra files.
0
votes
1answer
17 views
llvm error: Found more than one landing-pad successor
llvm has a MachineVerifier pass which checks a MachineFunction for correctness based on different parameters like: liveness, dead Basic Block, correct register class etc. Recently I came across this ...
3
votes
1answer
21 views
Is there a web-page containing a list of LLVM optimizations?
I've seen many optimization acronyms, eg.
dce, inline, constmerge, constprop, dse, licm, gvn, instcombine, mem2reg, scalarrepl
While I can deduce that dce is dead code elimination, I have trouble ...
1
vote
1answer
54 views
LLVM alias analyzer weird results
I'm implementing a pass that uses alias analyzer, specially using the AliasSetTracker. I simply want to output all alias sets in a function.
The pass code is very simple, it runs on functions and it ...
0
votes
0answers
28 views
Implement custom instruction in LLVM backend
I'm working on implementing a new backend for LLVM and thought it would be a good idea to start with an example LLVM backend project (Cpu0 backend for LLVM compiler).
Im trying to implement a custom ...
0
votes
2answers
39 views
Does Objective-C load the whole #imported file?
I'm trying to understand what really happens at compile time and runtime with imported files.
Does #import "file.h" directive essentially copy and paste the entire file.m into the current file? Or ...
-1
votes
1answer
103 views
Advantage of llvm for a pure C++ software? [closed]
I have been hearing LLVM around and people say it is good. As far as I understand, it allows front ends for multiple languages and share the same back-end. What I am confusing is, if I work on a C++/C ...
2
votes
1answer
85 views
LLVM and GCC, different output same code
This is a sample code just to show a different output from the LLVM compiler and the GCC. I wonder why? The answer should be very simple, but I can't see it.
(Xcode 4.6.1)
The code:
#include ...
1
vote
1answer
31 views
Adding jmp instructions
I want to add harmless unconditional branches after every jmp-like instruction in the binary to ensure that the fall through branch can be observed when we keep a record of branch instructions ...
0
votes
0answers
42 views
Apple Mach-O Linker Warning about overriding instance method and shows same path
in my project I get over 200 linker warning, which have all the same pattern.
For example:
ld: warning: instance method 'methodName' in category from
...
3
votes
1answer
125 views
constant propagation after register allocation
I am wondering why it is not advisable to do constant propagation after register allocation (RA) as well. After several optimization passes (post RA) there is scope for peephole optimizations like ...
1
vote
1answer
58 views
applying a pass only on execution paths
I have a pass that is analyzing the entire module (using runOnFunction()). But I want to apply it on each execution path. By execution path I mean the sequence of instructions starting from a point in ...
1
vote
0answers
37 views
Data Dependency Profiling
I need to do a data dependency graph for some applications. However I need to highlight those dependences that in fact happened during a profiling execution of the application.
My question is: which ...
0
votes
1answer
140 views
Executing LLVM IR during runtime on Windows
During some research across the internet and Stackoverflow the only example on how to execute IR code during runtime was this one on SO. I have now compiled llvm and clang with Visual Studio 2012 and ...
1
vote
0answers
62 views
size optimization in xcode LLVM
I am compiling a C library with xcode 4.5.1 on os x 10.7.5.
The size of the library compiled with xcode LLVM is significantly bigger than when I just compile it using plain gcc with makefile passing ...
1
vote
1answer
82 views
Virtual table in llvm (llvm-py)
I'm using llvm-py to create a DIY compiler for some artificial and need to have a virtual method table in the globe scope. My concept is to have several arrays of function pointers (one for each ...
4
votes
1answer
246 views
LLVM JIT Parser writing with Bison / Antlr / Packrat / Elkhound /
In the LLVM tutorials there is instruction how to write simple JIT compiler. Unfortunatelly, lexer and parser in this tutorial is written manually. I was thinking, such solution is good for learning ...
0
votes
1answer
194 views
Speed up & Optimize C++ program using Clang/LLVM on Mac
OK, here's my issue :
I'm working on a super-complex project and speed & performance is crucial - with lots of bit twiddling and low-level stuff (you may ask me if there's anything specific you ...
1
vote
1answer
69 views
Collecting LLVM Edge Profiling with llvm-prof
I'm using these commands to compile the code below in order to collect
edge/blocks profiling in trunk-llvm:
clang -emit-llvm -c sort.c -o sort.bc
opt -insert-edge-profiling sort.bc -o sort_prof.bc
...
2
votes
1answer
100 views
Instrumentation of ARM Binaries
Lets say I've an Linux system running on a ARM processor. What are the current available tools for doing dynamic binary analyze/instrumentation? I was wondering if there is something like Pin but for ...
0
votes
2answers
69 views
How to pass parameters with LLVM
I'm looking for ways by which I can extract static code features (like number of instructions) during compile time using LLVM and then store these values so that I can use during program execution.
...
4
votes
1answer
274 views
How to target LLVM from a compiler written in F#?
I'm part way through writing a toy language in F#. I want to target LLVM, but it looks like I'll have to do some work to make that happen.
It looks like I might be able to do some interop with the ...
7
votes
1answer
217 views
How to extend Clang with an additional parser?
How can I extend Clang with an additional parser for files with a special file ending, i.e. can I develop a FrontendAction that says "Hey! I'll take care of all files with the file ending '.lorem' and ...
1
vote
1answer
40 views
SCEV pass in LLVM usage for array access pattern
I am trying to find array access pattern in a c code using LLVM. I found that SCEV can be used for this purpose but have not been able to find any sample code for using scev. Any ideas how I can use ...
0
votes
0answers
76 views
Precompiled Binary of Clang/LLVM for NetBSD 4.0.1? [closed]
I am trying to install Clang/LLVM as user on a NetBSD system where I have user but not root privileges. I know Clang will run from my home directory if I have it's binary in my PATH having used it as ...
1
vote
1answer
81 views
How can I print to a string in LLVM
I want to print an instruction in LLVM to a string instead of the screen. I use I->print( errs() ) to print to the screen. How can I instead put the instruction in a string?
0
votes
2answers
138 views
Replacing the operand of an LLVM instruction
In the following code, I try to replace operand(s) of an LLVM instructions. However it doesn't work and nothing is changed. Any idea how to solve this?
for (OI = insn->op_begin(), OE = ...
1
vote
1answer
242 views
LLVM IR to Python Compiler
Is there any tool to convert the LLVM IR code to Python code?
I know it is possible to convert it to Javascript (https://github.com/kripken/emscripten/wiki), to Java ...
0
votes
1answer
126 views
*Value is not being generated into the LLVM code
I am attempting to write some compiler and use LLVM to generate intermediate code. Unfortunately, LLVM documentation is not very great and even somewhat confusing.
At the moment I have lexer,grammar ...
1
vote
1answer
136 views
How can you print instruction in llvm
From an llvm pass, I need to print an llvm instruction (Type llvm::Instruction) on the screen, just like as it appears in the llvm bitcode file. Actually my compilation is crashing, and does not reach ...
2
votes
1answer
75 views
Example for llvm::CloneBasicBlock
I am trying to find an example code which uses llvm::CloneBasicBlock, but can't find it. I am having problems with PHI nodes and problem with instruction domination. So I'll appreciate any good ...
2
votes
1answer
101 views
How to find loop start and end in LLVM IR
How to find starting and ending values of loop induction variable in LLVM IR?
for(int i = start; i < end; i++) {
A[i] = 0;
}
Want to replace with a call to "zero(A,start,end)"
Or is it ...
1
vote
1answer
71 views
How to remove a successor from a terminator instruction in LLVM
For a basic block I want to change conditional jump to an unconditional jump. So if a basic block had two successors I want to remove the edge to one of the successor. I want the basic block to ...
2
votes
1answer
145 views
LLVM static value analysis for optimization
Let's say I have a function like this:
int foo(int a, int b, int d, int x){
if (c) {a = 1; b = 1; d = a;}
else {a = 2; b = 2; d = 1;}
if (a == b) {x = d;} else {x = 0;}
return x;
}
This ...
0
votes
1answer
113 views
Inserting a block between two blocks in LLVM
I want to insert a block in between two basic blocks in LLVM. So for example, if a basic block A was jumping to basic block B, I want to insert a basic block C in between them such that A jumps to C ...
0
votes
0answers
65 views
Determining stride of arrays
I am trying to perform LoopDependenceAnalysis on arrays in LLVM. For this I have written a LLVM LoopPass. I am able to detect the arrays using GetElementPtr.I am unable to determine the stride of an ...
3
votes
1answer
159 views
Warning “Use of GNU statement expression extension”
I have this Objective-C istruction:
NSRange range = NSMakeRange(i, MIN(a, b));
where a and bare NSUIntegers.
MIN() is the macro defined in the standard NSObjCRuntime.hheader file as:
#if ...
1
vote
1answer
171 views
How to add metadata nodes using the LLVM C Api/llvm-fs bindings
I'm trying to add metadata nodes to a program, either onto the instructions or as global metadata. How do I do this with the LLVM C API? It now provides a function LLVMAddNamedMetadataOperand (as ...
2
votes
0answers
160 views
Putting source information into LLVM bitcode files for debugging compiler errors
I'm making a basic compiler and want to put the source lines of code somewhere near the llvm code that is produced for easy debugging. For example:
proc f(a:Int, b:Int):Int {
return a + b;
}
...
0
votes
0answers
55 views
What is the most efficient way of instrumenting load and stores
I want to instrument loads and stores in a program. For that purpose I will log the load and store addresses. I will inject code through an LLVM pass. So my tool will see the loads and stores in LLVM ...
1
vote
1answer
126 views
How to perform whole program optimization for LLVM bitcode files
I have several LLVM bitcode files which I link with llvm-link to create one bitcode file. However, llvm-link does not perform Whole Program Optimization (WPO). How can I link bitcode such that the ...
-1
votes
1answer
155 views
Is iOS programming going virtual with Clang and llvm?
I dont understand the whole Clang and llvm thingy. I asked myself if the code is running in a VM while runtime on the iOS device or wether it is going through a "VM" while compile time, for ...
1
vote
1answer
98 views
How do source transformers work?
I have been thinking about source transformers like HipHop and Haxe. From their respective websites, I see that these tools converts a source language to target language and then uses the compilers of ...
3
votes
2answers
225 views
Generating pure machine code with LLVM
Is there a way to generate "pure" machine code from a Module with LLVM?
I mean, I have a Module and want to get only the x86 opcodes without any MachO or Darwin object headers, just the opcodes(and ...
0
votes
1answer
135 views
Inlining a function in LLVM jit
I'm new to LLVM framework and compilers field. I'm trying to get acquainted with it. Having done some preliminary reading in compilers i have the following question:
I would like to know how is ...
3
votes
2answers
2k views
Difference between LLVM, GCC 4.2 and Apple LLVM compiler 3.1
What are the major differences between LLVM GCC 4.2 and Apple LLVM compiler 3.1?
I'm fairly new to compilers so any help is appreciated. Also I'm especially interested in how the two compilers could ...
1
vote
1answer
130 views
Using LLVM to traverse AST
Are there any helper methods to traverse the AST, basic blocks etc. generated by LLVM compiler for a C code ?
0
votes
1answer
59 views
Checking for backedges in an LLVM pass
I am writing an LLVM pass that modifies the intermediate code. I want to check each terminating instruction of a basic block to see if it has a back edge. To make it more clear, in the following ...
1
vote
1answer
150 views
llvm jit compile to binary
Is it possible somehow to write a compiler producing LLVM IR code which user will JIT compile and after compiling it in memory it would be written to disk as binary file?
The idea behind this ...

