The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
24 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 ...
1
vote
0answers
18 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 ...
-1
votes
2answers
33 views

Indirection operator on const_iterator error

This code std::ostream& operator<<( std::ostream& output, const Array& a) { if (a.empty()) { output << Structural::BEGIN_ARRAY << Structural::END_ARRAY; ...
0
votes
2answers
45 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 ...
4
votes
0answers
69 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
0answers
23 views

llc: error auto-selecting target

When I start my build process with make I get this error a few seconds later: llc: error auto-selecting target for module 'No available targets are compatible with this triple, see -version for ...
0
votes
0answers
27 views

Clang error while creating shared library

I want to compile a shared library on MBP and based on the advise given here, I have switched to clang (from gcc) to create the shared library. My makefile is: CC = clang CFLAGS = -c -fPIC -Wall -O3 ...
0
votes
1answer
145 views

clang compiler hangs on windows

I have built clang with VS9 following manual. It was built without errors. But when I am trying to compile some code - it hangs (not consuming cycles, two processes), both trunk and 3.2 release: ...
3
votes
1answer
85 views

Why isn't libclang returning meaningful completion results?

I'm trying to understand how to do code completion with libclang. I've watched "Thinking beyond the compiler" and I've looked over c-index-test, and I found a simple sample program here I compiled ...
5
votes
2answers
139 views

Objective-C naming conventions with ARC and possible caveats

I have experience with pure ARC coding. As a compiler feature it honors Objctive-C method family putting right retain/release calls whenever neeeded. All methods that start with alloc, mutableCopy, ...
0
votes
0answers
35 views

I am getting “llvm-config: error: components given, but unused” error while compiling FunctionInfo.cpp Makefile?

I am beginner with LLVM compiler. I am making a FunctionInfo pass for my compiler. for compiling this FunctionInfo.cpp we need to compile makefile but i am getting an error. Like this "llvm-config: ...
0
votes
1answer
96 views

Compiler error with LLVM Xcode Version 4.6.1 (4H512)

Seeing this error when we recently upgrade Xcode to 4.6.1. Was able to compile perfectly prior to this version. Any insight into this message? Seems like a 32/64 bit issue? From looking at LLVM Patch ...
-1
votes
1answer
38 views

Number of load instruction in a program

How to count total number of load instruction on a simple "hello world" program through LLVM ??
1
vote
1answer
120 views

LLVM : inject debugging lines in C++ source code

I have downloaded LLVM 3.1 and build it successfully. My requirement is to add some few debugging lines in a C++ source code files. I have coded module using CLANG 3.1. But CLANG reports a lot of AST ...
0
votes
0answers
112 views

Extract type string with Clang bindings

I am writing a python script(using python clang bindings) that parses C headers and extracts info about functions: name, return types, argument types. I have no problem with extracting function name, ...
0
votes
0answers
92 views

UNREACHABLE executed! error while trying to generate PTX

I am trying to generate PTX code for 'nbody' sample program's kernel (nbody_kernel.cu) using clang/LLVM version 3.2. The nbody CUDA program is available in Nvidia's SDK. I am referring to ...
0
votes
3answers
188 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) ...
0
votes
0answers
23 views

LLVM pass to record frequency of functions and instruction types

Im surprised I dont see the anywhere in llvm. I would like to record the frequency of many instruction types such as branches, loads/stores, arithmetic, as well as functions in a bitcode file. ...
4
votes
0answers
119 views

Symbol not found: _objc_retainAutoreleasedReturnValue in MacOS command line tool

There are a couple questions with the same keywords as the title, however they focus on the iOS side of Objective-C. My problem is with a MacOS command line tool. Basically what's happening is that ...
0
votes
1answer
111 views

How to use Gold for link time optimization in LLVM 3.2 and Clang 3.3?

There are instructions on llvm.org on how to add the Gold plugin to LLVM-gcc; however since version 3.2 they are not using LLVM-gcc anymore, using Clang instead, and it's unclear on how to use it. ...
1
vote
1answer
78 views

Gold plugin for LLVM 3.3

I built LLVM and was using it, now I want to add Gold plug-in to use as linker, I just followed "build gold with plugin support" in LLVM website,and now have ld-new but I dont want to rebuild LLVM ...
0
votes
0answers
49 views

Reading HDF5 table in C++ - Error when compiling data struct

I am trying to read from a HDF5 file in C++. A trying to define the data struct for a table: struct LandE{ enum {nFields = 7}; double Luminosity_nue; double Luminosity_nuebar; double ...
10
votes
2answers
1k views

po object results in error: cannot find interface declaration for '$__lldb_objc_class'

I'm having this weird functionality in the debug console. say you have the following code: anIssue.issueID=[issueDictionary objectForKey:@"uniqueId"]; the po of the issueDictionary function ...
2
votes
1answer
76 views

Accessing protected members in base class objects

Consider: class A { protected: int _i; }; class B : public A { B(const B & object) { _i = object._i; }; B(const A & object) { _i = object._i; }; }; ...
0
votes
2answers
154 views

Objective-C code analysis

I want to write a tool that does code-completion for objective-c class-names, selector-names and property names, as the software is being developed. (ie something that can run periodically and build a ...
2
votes
1answer
105 views

Does specifying parameters or variables as __attribute__ ((unused)) allow the compiler to perform any additional optimizations?

I'm particularly curious about LLVM 4.1, but would be interested in other compilers' behavior as well. According to the GCC documentation (which LLVM supports at least in part), the unused attribute ...
1
vote
2answers
100 views

Objective-C Auto-unboxing with LLVM 4

I've been looking at autoboxing in Objective-C (here, for instance). Is there a new syntax for unboxing? For instance, I want to do this but shorter: NSArray *oneNumber = @[@1]; int one = ...
0
votes
0answers
70 views

With libclang, how can I enable and disable specific warnings?

I'm trying to use the libclang API to programmatically analyze a C++ project. I have clang compiling fine, and my tool is properly parsing the generated AST, but I can't figure out how to turn on/off ...
5
votes
4answers
144 views

Compile time check for valid file references in Xcode

Is it possible to force the Xcode complier to verify that files referenced in code are valid? There are multiple points in Cocoa development when you naturally reference a file programmatically via ...
0
votes
0answers
48 views

how to generate human readable intermidiat code by llvm

I want to use clang to print out the abstract syntax tree in a human readable, do not want the binary bytecode one. I have used: ast-print ast-dump but they are providing non-readable code.. ...
0
votes
0answers
33 views

Missing symbols __Unwind_resume and __assert_fail when trying to run jited code in llvm

We are trying to adapt the clang-llvm interpreter code here to run some c++ code that uses stl vector and c++ string among other things. This resulted in a number of unresolved symbols, and after ...
1
vote
1answer
125 views

what optimization passes are done for -O4 in clang?

We are trying to implement a jit compiler whose performance is supposed to be same as doing it with clang -o4. Is there a place where I could easily get the lost of optimization passes invoked by ...
0
votes
2answers
211 views

Compiling Apache httpd into LLVM bytecode using clang

I want to compile httpd into LLVM bytecode using clang. First I tried compiling it using gcc, for which I did the following: ./configure --prefix=/home/varun/apache/httpd/gcc --with-included-apr ...
2
votes
1answer
76 views

Using indvars optimization pass for finding canonical induction variable in llvm/opt

I am trying to obtain the canonical induction variable for a loop in a loop pass, given its reference L*, using L->getCanonicalInductionVariable(). But many of the loops I encounter are not in ...
1
vote
1answer
243 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 ...
0
votes
1answer
27 views

how to get basic block ID of a statement inside visit* methods

How can we get basic block id (blockID) of a statement when we override visit* methods? e.g. for a basic block given below, when VisitIfStmt() is visited, how to get blockID inside this visit ...
1
vote
1answer
243 views

Disable -Werror via pragma clang diagnostic

Using -Werror to treat all warning as errors, I don't want to suppress a deprecated declaration warning : #pragma clang diagnostic push #pragma clang diagnostic ignore "-Wdeprecated-declarations" ...
0
votes
0answers
10 views

getting visit methods right

I have overridden `VisitIfStmt(Stmt* s)' and some visit methods for binary operators: - VisitBinAssign(), - VisitBinAdd() and other arithmetic operators, - VisitBinGT() and other relational operators ...
0
votes
2answers
470 views

How to compile c99-to-c89 convertor with clang?

I'm trying to compile ffmpeg in windows for VisualStudio and one of the step is to compile c99-to-c89 code with clang according to this post. I managed to create clang.exe but how I compile c99-to-c89 ...
0
votes
2answers
447 views

How to build llvm and clang on cygwin

Can I build the LLVM and clang from source code on cygwin? How long to build LLVM and Clang? Because I try to build them on VirtualBox, it takes about 2 hours.
0
votes
2answers
206 views

Issue trying to build LLVM and clang

I'm trying to build LLVM and clang on my machine (Ubuntu 12.04). I followed the instructions on http://clang.llvm.org/get_started.html up to step 6 (build LLVM and clang). When I make, I get a whole ...
0
votes
0answers
58 views

overriding visitor methods from class RecursiveASTVisitor for clang front end

Is there any concept of level or hierarchy of classes that are inherited separately from RecursiveASTVisitor? because statements in CFGBlock::CFGElement have hierarchy. Say, we inherit class A and ...
-1
votes
1answer
339 views

Clang not working. Undefined symbol error. Code compiles fine in gcc

I decided to go and give Clang a go, since I've heard good things about it, and I wanted to try out some of the C++11 features. So, as usual I started out with a simple hello world program. #include ...
1
vote
1answer
118 views

How resolve error:Conflicting type for “snprintf”

In my app i used Compiler for C/C++/Objective-C is Apple LLVM compiler 4.1 for simulator. For simulator this is working. When i compiling same code for Device i changed Compiler for C/C++/Objective-C ...
2
votes
1answer
25 views

What to pass for the vmap argument of CloneFunction in llvm?

I am trying to clone the exact copy of another function. I have not been able to find any examples of CloneFunction usage on the internets.
4
votes
1answer
63 views

-fcatch-undefined-behavior only catches local array access thats more than 1 element above the size

I have a question regarding the catch-undefined-behavior flag in clang. I tried it out in a big project written in C, where at one point, an integer value (i) supplied by the user arrives. I then ...
1
vote
2answers
356 views

Using NEON multiply accumulate on iOS

Even though I am compiling for armv7 only, NEON multiply-accumulate intrinsics appear to be being decomposed into separate multiplies and adds. I've experienced this with several versions of Xcode ...
4
votes
0answers
389 views

How to tell clang not to save registers to stack?

The Goal I'm currently trying out avr-llvm (a llvm that supports AVR as a target). My main goal is to use it's hopefully better optimizer (compared to the one of gcc) to achieve smaller binaries. If ...
0
votes
1answer
132 views

speak.js compiling issues in windows

I'm having this issue when trying to compile speak.js. In emscripten.sh when the compiler reaches this line: $EMSCRIPTEN/emcc -O2 --js-transform "python bundle.py" speak.bc -o speak.raw.js I get ...
0
votes
0answers
29 views

How to capture values that are stored in a hash table in a large software system executable at runtime?

I am trying to capture the values that are stored in a hash table for a large software system mainly written in c++. I am interested in the values that are stored in a hash table when the system is ...

1 2