The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.
0
votes
0answers
1 views
HOW to get FILE handle in LLVM on windows
I'm trying to implement a script interpreter on windows using LLVM C++ API.there's a perl-like statement like
myInput=<stdin>;
i don't want to use similar function in C and link them with ...
0
votes
1answer
6 views
Input in LLVM, I think I do not understand dominance and the location of phi nodes
My goal is to do something simple in LLVM. I want to, using the C library function getchar, define an LLVM function that reads an input from the commandline. Here is my algorithm in pseudocode:
...
0
votes
0answers
19 views
How do I put multiple LLVMValueRefs in a function body?
I'm implementing the code generation in LLVM for a begin/end type statement (see wiki for more details). I already have an AST generated which I can run manually, but I'd like to JIT it.
Normally, ...
0
votes
0answers
20 views
`run` method in allias analysis llvm
I want to implement alias analysis for llvm. Documentation says that the alias analysis implementation should implement function run:
bool run(Module &M) {
InitializeAliasAnalysis(this);
// ...
1
vote
0answers
62 views
c++ error while compiling with both clang++ and g++
I am working on a project which modifies the control flow of user program. I am using llvm for this. At the end I generate a set of .s files using clang++. Then I use g++ to merge them all. I cant use ...
0
votes
1answer
29 views
changing llvm pass architecture to find desired function instead main function in module
I try to do some optimization on LLVM bitcode without generating final executable binary. I link all project bitcode.In this test there is no main function in bitcode, but LLVM needs to find a main ...
-1
votes
0answers
32 views
How to use WhileStmt to implement while loop in LLVM [closed]
How could I use WhileStmt class in Stmt.h
http://clang.llvm.org/doxygen/Stmt_8h_source.html
to implement while loop like while(i==1){} that is required to be inserted in the IR in LLVM
from the ...
0
votes
1answer
31 views
C compiler for mac?
I'm working through a text on linking, and wanted to work along with some examples in said text.
To better understand whats going on when I invoke the gcc driver, I was looking into doing all the ...
1
vote
1answer
22 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
31 views
Get pointer to llvm::Value previously allocated for CreateLoad function
I'm new to llvm and I'm writing a small llvm IR Builder.
I use the IRBuilder and all these Create* functions to generate my IR.
What I'm trying to do is to create a load instruction which create a new ...
0
votes
0answers
13 views
Popular reasons for Xcode not building properly
I am getting into xcode after spending a few years in Quartz Composer and Processing.
I am struggling with getting the simplest included examples in openframeworks and Cinder to build properly ...
1
vote
0answers
20 views
LLVM: Get function argument locations (ABI)
I'd like to write a LLVM plugin to tell me: for each function declaration, how many general purpose register, XMM register, and stack arguments the function will have. This only needs to work for the ...
0
votes
2answers
56 views
Say I didn't like the syntax of objC blocks… (or: how to customize llvm a little bit)
...is there anything I could do about it?
To be more precise, I would like to replace the caret "^" with something like "ยง" - granted, there's not much left on the keyboard that's not in use already.
...
0
votes
1answer
30 views
Modify CFG in LLVM
Could I modify the CFG in LLVM and these modifications be written in IR file? I made an LLVM pass to modify basic block and edges sequence and I ran the pass by lli -load to emit the IR, but nothing ...
1
vote
1answer
28 views
LLVM IR String Initialization
I'm working on a program in LLVM IR, and I am trying to initialize a string that says "Hello World!" but I can't figure out how. The goal of the code is to count the number of characters in the ...
1
vote
1answer
29 views
LLVM. Is it possible to set ranged labels with SwitchInst?
I know how to compile such piece of code with LLVM API (specifically with SwitchInst):
switch (h)
{
case 11:
.......
case 22:
........
}
But I don't know, is it possible to compile with ...
5
votes
2answers
154 views
A simple test case between clang++/g++/gfortran
I ran across this question on scicomp which involves computing a sum. There, you can see a c++ and a similar fortran implementation. Interestingly I saw the fortran version was faster by about 32%.
...
0
votes
2answers
42 views
Import a function from a different module
Say a function f_a in module m_a calls another function f_b in module m_b. This is the only reference across module m_a. Now, I'd like to make module m_a self-contained, i.e. eliminate references to ...
1
vote
1answer
23 views
Why does 0xE1 0x4F disassemble to different instructions in LLVM and NDISASM?
In a Bash shell:
$ echo "0xe1 0x4f" | llvm-mc-3.2 -disassemble -triple i386
.section __TEXT,__text,regular,pure_instructions
loope 79
$ echo -n "\xe1\x4f" | ndisasm -b 32 - ...
1
vote
0answers
30 views
Access of array of doubles in loop
I'm working on implementing code generation for arrays in LLVM. I have this weird problem with my generated LLVM IL code that when I'm loading elements from an array of doubles in a loop I get just ...
0
votes
1answer
44 views
Does CMAKE support Python 3?
I'm attempting to build Clang on Windows 7 using CMAKE.
I've performed the following steps; as specified in this guide. The guide is wrong in one aspect: Python is required and without it, cmake ...
0
votes
1answer
33 views
Llvm how to access global array elements
Can someone please explain me what is wrong with this code?
I think this should fetch the second argument from global array, but in fact it silently crushes somewhere inside JIT compilation routine.
...
0
votes
1answer
26 views
Apple C++ LLVM Compiler 4.x & UNICODE: when needed? Is UNICODE default compiler charset? Making your code compiling both ANSI and UNICODE versions
I have Microsoft C++ compiler experience.
There you could adjust your using/not using UNICODE compilation path very simply.
Following constructions were legitimate and perfectly possible:
#ifdef ...
0
votes
1answer
26 views
Where to get cross-linker?
I found that providing few options to llvm-clang I can compile to other platform. This for example will compile for ios:
clang -cc1 -triple arm-apple-darwin -emit-obj -mrelax-all -disable-free ...
0
votes
1answer
13 views
Linking with llvm clang llvm ld main not found
$ cat test.c
int printf(const char *, ...);
int main() { printf("ok\n");}
$ clang -c test.c
$ llvm-ld test.o -o test /usr/lib/crt1.o -lSystem
$ ./test
'main' function not found in module.
$ ld test.o ...
4
votes
1answer
29 views
What is an exception handling personality function?
I've looked at the documentation for the LLVM EH intrinsics, and also the Itanium ABI, and I'm stumped on a few things.
What is an exception personality function? What jobs does it perform? How would ...
0
votes
1answer
16 views
LLVM Test Infrastructure Fails
I have successfully followed all of the steps for installing LLVM's test infrastrucure (LNT) located at this link. The final step is to execute the following command:
lnt runtest nt \
--sandbox ...
1
vote
0answers
26 views
how to Generate code from clang::ASTContext
I need a sample code to learn how to Generate C++ Code from clang::ASTContext.
I created ast from c++ code and I made some changes in AST and now I want to Generate Code again. Can anybody help? ...
1
vote
0answers
29 views
Invalid token at start of a preprocessor expression in CoreFoundation
I'm having the following issue for the last 2 days. Whenever I try to build 1 specific app, I keep getting errors in some of the CoreFoundation classes. To be specific in the classes where one of the ...
0
votes
0answers
14 views
Trying to optionally link bundled framework in Xcode: Dyld error
I'm distributing an app to OS X 10.6+ which includes a OS X 10.7+ only library (as a subproject). Basically I am writing an app to be distributed through the app store so it runs on 10.6.6+ but it has ...
0
votes
1answer
51 views
Some problems when using Boost Library on Xcode
I use Xcode 4.5.2 and I wonna use Boost, but I got some problems.
In Build Setting, if I choose libc++ (LLVM C++ standard library with C++11 support), I will get the error messgae "Apple Mach-O ...
0
votes
0answers
32 views
How to get struct size in LLVM 3.0
Current doxygen documentation says that
To get the actual size for a particular target, it is reasonable to use the
DataLayout subsystem to do this.
However there is no such thing in version 3.0. ...
0
votes
1answer
33 views
Should I care about Compiler when I have created Library/Framework of my Project and running on Different Compiler?
I have created iOS Library/Framework (static) of my project using LLVM GCC compiler with NON-ARC build. Now I want to use this Library in my newer projects with Apple LLVM Compiler with ARC ...
0
votes
0answers
35 views
Find live variable definitions out of a basic block in llvm
I need to find the variable definitions that are live out of basic block while writing an llvm pass.
Will getting the Instruction List using getInstList() help?
If yes, how do i find out which ...
0
votes
1answer
31 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
37 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.
1
vote
0answers
21 views
Automatically promoting input values for LLVM instructions
When using the IR Builder obviously I can build IR that is invalid, e.g. by adding two values with incompatible type, like i32 and float. Is there a facility that kind of promotes values (or better ...
1
vote
1answer
36 views
Is there a general binary intermediate representation for OpenCL kernel programming?
as I understood, the OpenCL uses a modified C language (by adding some keywords like __global) as the general purpose for defining kernel function. And now I am doing a front-end inside F# language, ...
1
vote
0answers
119 views
Compile C#->LLVM->ASM.JS?
From my understanding I can compile C++ to LLVM, then use Emscripten which outputs to JS
From http://kripken.github.io/mloc_emscripten_talk/#/11
C/C++ => LLVM => Emscripten => ...
0
votes
1answer
29 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 ...
1
vote
1answer
41 views
Static code generation using the LLVM API
Starting from an LLVM module *Mod containing some IR: How do I use a specific back-end to generate target-specific assembler from it? Unfortunately the Kaleidoscope tutorial does not detail on this. ...
0
votes
1answer
18 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 ...
2
votes
1answer
64 views
Why do byte spills occur and what do they achieve?
What is a byte spill?
When I dump the x86 ASM from an LLVM intermediate representation generated from a C program, there are numerous spills, usually of a 4 byte size. I cannot figure out why they ...
1
vote
2answers
59 views
How to force LLVM to unparse the AST?
I have an input file (.ll) which I'd like to have parsed by LLVM, thus generating the in-memory representation of the program, and then it should be unparsed and dumped to stdout, but purely from the ...
1
vote
1answer
44 views
llvm dumping control flow graph to file inside a pass
I want to build a control flow graph diagram in llvm in one of my passes. I currently use the following to show the CFG
block->getParent()->viewCFG(); //block is a basic block
The problem is ...
3
votes
1answer
23 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 ...
0
votes
2answers
22 views
In Objective-C ARC, what are “BPTRs declared within extern ”BCPL“ blocks”?
In the Clang documentation for ARC, it says:
ARC applies to Objective-C pointer types, block pointer types, and
[beginning Apple 8.0, LLVM 3.8] BPTRs declared within extern "BCPL"
blocks.
...
0
votes
1answer
17 views
Implementing Stack Layout in LLVM Backend
I'm trying to implement a Backend for LLVM.
Right now I'm running into problems with stack frame lowering.
I need to implement the following stack layout:
When a function gets called I need to put a ...
3
votes
0answers
109 views
how to represent functional language debug information in llvm source level debug information?
I am developing a llvm frontend for a language based on F#, a functional language. Well, the functional language matches the concept of value, not variable. F# also support variable by so called ...
1
vote
1answer
41 views
how to use %llvm.dbg.value?
I'm developing a frontend of LLVM IR, and want to attach debug information. I already made the %llvm.dbg.declare works, it can track my variable after this declaration. But I do not understand the ...


