The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

learn more… | top users | synonyms

0
votes
2answers
37 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
18 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
23 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
0answers
28 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
27 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
25 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
0answers
13 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
11 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 ...
2
votes
0answers
16 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
12 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
21 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
25 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
8 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
46 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
29 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
34 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
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.
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
30 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
63 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
28 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
38 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
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 ...
2
votes
1answer
58 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
58 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
36 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
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 ...
0
votes
1answer
15 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
37 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 ...
0
votes
2answers
59 views

Inserting C++ code in homemade language and compile it with llvm-3.2

I'm currently trying to create a compiler using flex, bison and llvm (3.2) for a programming language I created and I would like to allow programmers to insert C++ code. Example : //some code using ...
0
votes
0answers
28 views

How to create array in llvm with the library

I'm creating my own language with Bison + llvm and I want to have the possibility to declare some arrays in my code. After the parsing, I make a specific object which represent that array with a type, ...
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 ...
3
votes
1answer
87 views

LLVM JIT tutorial code crashes with simple parameterized function. Why?

I'm trying to learn my way around the LLVM infrastructure. I've installed the LLVM binaries for Windows on a MinGW installation. I'm following the tutorial found on the LLVM site about the so-called ...
0
votes
2answers
42 views

Clang(LLVM) compile with frameworks

I am using: clang -ObjC -framework UIKit -o /var/compiled/c /Documents/Source/main.m In OS X terminal. I also tried UIKit.framework, but I am getting Fatal Error: 'UIKit/UIKit.h' not found ...
0
votes
0answers
23 views

Can't include llvm library in a c++ project on Mac OS X

I simply try to include in a .cpp file from the llvm library. I get this error : 'llvm/Module.h' file not found Here is my makefile command : c++ -o Vyking `llvm-config --cxxflags` Vyking.lex.c ...
0
votes
1answer
22 views

How could I use SplitEdge method in llvm

I need to insert a basic block into an edge. I tried to use SplitEdge method in the following link: http://llvm.org/docs/doxygen/html/BasicBlockUtils_8cpp_source.html I found an answer here: ...
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 ...
8
votes
0answers
118 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 ...
0
votes
1answer
28 views

How to link a library with llvm-link [duplicate]

I am using llvm-link to link LLVM bitcode files, but in my source code I also want to use a function from a shared library file that I created. Now, how do I go about linking that shared library with ...
0
votes
0answers
44 views

Can I compile a function with gcc and then use it with clang?

I am trying to use SSE4.2 intrinsics with clang/llvm but its not compiling, as I get cannot select intrinsic error from LLVM. On the other hand, the same code compiles flawlessly in gcc. So I thought, ...
0
votes
0answers
29 views

LLVM: Cannot select intrinsic error

I'm trying to use the SSE4.2's instruction _mm_crc32_u64 and for that purpose added -msse4.2 flag in the makefile, but yet I get this error when I try to compile my code with clang/llvm. LLVM ERROR: ...
1
vote
1answer
39 views

Using LLVM as virtual machine - multiplatform and multiarchitecture coding

I'm currently working in a pet programming language (for learning purposes), and have gone through a lot of research over the past year, and I think its time to finally start modelling the concepts of ...
4
votes
0answers
68 views

Building autotooled software to LLVM bitcode

I would like to compile software using the autotools build system to LLVM bitcode; that is, I would like the executables obtained at the end to be LLVM bitcode, not actual machine code. (The goal is ...
0
votes
1answer
70 views

Clang Cross Compiling for Windows Phone ARM target

I would like to compile a program written in C using Clang for 'Windows Phone' ARM target. Does anyone have experience with it? What is a better approach? 1) Building on a host running Windows 8 ...
1
vote
1answer
30 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, ...
2
votes
0answers
43 views

Method signature and compiler disagree on struct-return-edness [duplicate]

NSForwarding: warning: method signature and compiler disagree on struct-return-edness of 'mapRegion'. Signature thinks it does not return a struct, and compiler thinks it does. This is a ...

1 2 3 4 5 27