The llvm-3.0 tag has no wiki summary.
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
69 views
Add a new register allocation pass llvm
I am writing a new register allocation pass on llvm. I followed the instructions here http://llvm.org/docs/WritingAnLLVMPass.html#the-machinefunctionpass-class.
The pass is not displayed in llc ...
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
42 views
How to build llvm packaged in Android Sources?
I'm trying to build llvm that is packaged in android sources.
I'm running ubuntu 12.04, with android src version 4.0.4
The llvm is located in android-src/external/llvm/
I did the following to ...
1
vote
1answer
36 views
Specify dependency of my LLVM pass on the mem2reg pass
I am writing a ModulePass and invoke it using opt -load. I would require that alloca has been promoted to registers when my pass runs, using the -mem2reg switch for opt.
There is a link which ...
-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
1answer
209 views
llvmpy on Ubuntu Server 12.04
I'm trying to install llvmpy on ubuntu 12.04 using edpFree 7.3-2
# uname -a
Linux svnserver 3.2.0-38-generic #61-Ubuntu SMP Tue Feb 19 12:18:21 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
# lsb_release ...
2
votes
3answers
443 views
c++ -std=c++11 -stdlib=libc++ giving errors on osx lion
This ought to be a duplicate question. But I've googled quite a bit and haven't found a hit that fixes my issue.
I'm trying to use a c++11 standard feature on osx lion and it's not working. I believe ...
0
votes
0answers
36 views
Array Detection in Function arg list LLVM opt pass
suppose I have the following LLVM IR
define void @foo(i32* %a, i32* %m) nounwind { ...
and I call foo by passing an array for the first arg and passing a variable's address for m.
Now, I need to ...
0
votes
0answers
82 views
LLVM Edge Profiling
I am trying to get edge profile data into a custom analysis pass.
I have implemented the getAnalysisUsage method, but I am confused as to how this works.
Do I have to run the profiler separately on ...
0
votes
2answers
557 views
Compiling C code inside a C++ code inside a Objective-C++ code
My problem is a little complex:
Library:
I have a library written in C and C++. It compiles perfecly in XCode with Apple LLVM.
The work of this library itself is done by the C code while the C++ part ...
4
votes
1answer
436 views
Why is the -ObjC linker flag needed to link categories in static libraries? (LLVM)
Regarding this technical Q&A from Apple: http://developer.apple.com/library/mac/#qa/qa1490/_index.html
I think the compiler could mark calls to methods defined in categories at compile-time (it ...
0
votes
0answers
71 views
Apple LLVM 3.1's gcda file format document
Where can I get the document on Apple LLVM 3.1's gcda file format document?
I'd like to parse it to get the line and branch coverage information from it.
Thanks.
2
votes
0answers
368 views
how to collect code coverage on physical iPhone with Apple LLVM Compiler 3.0?
Does latest XCode's Apple LLVM compiler 3.0 support collecting code coverage data from physical iPhone machine? If yes, how to set it up?
Below gives a solution for gcc compiler. But I want to know ...
3
votes
6answers
6k views
Apple LLVM compiler 3.1 error - iOS 5; Xcode 4.3
I have been receiving this error for a long time and I don't know what to do.
In order to keep the question short, I have written the error into a .rtf file and put it into CloudApp. Here's the link: ...
2
votes
1answer
165 views
Is there a struct type isomorphism check in LLVM 3.0?
In LLVM-3.0, named structs are always unique and pointer equality with other structurally same structs does not work. From their blog entry on LLVM-3.0 types, the highlights are mine:
Identified ...
2
votes
0answers
329 views
LLVM based project lib dependencies for CMake on windows
This has been asked here before but I couldn't find a solution which works for me.
Sample CMakeLists.txt file for LLVM project - This was the original question.
However, there are a couple of ...
5
votes
5answers
418 views
What are primitive types default-initialized to in C?
I just had Apple's C/C++ compiler initialize a float to a non-zero value (approx "-0.1").
That was a big surprise - and only happened occasionally (but 100% repeatably, if you ran through the same ...
0
votes
1answer
448 views
xcode - “attempt to use a deleted function” - what does that mean?
I am writing a C++ library in Xcode 4.2
One of my classes won't compile with this error : "attempt to use a deleted function".
There is no specific indication what function it's talking about.
I ...
0
votes
1answer
2k views
Typedef redefinition error when trying to build XCode project for release
I can build my project in Xcode(4.2) for debugging without issues, but when I want to build it for release (build for archiving) I get error:"Typedef redefinition with different types (unsigned int vs ...
0
votes
1answer
189 views
use and meaning of DW_AT_location
I wanted to know the use of the attribute DW_AT_location for debugging. It is one of the attributes specified by dwarf for debugging, but could not really understand what exactly it represents. And ...
2
votes
1answer
174 views
Error linking LLVM
Whenever I create two separate libraries with LLVM 3.0 and link them together. I always get the following stack trace on exit.
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: ...
0
votes
1answer
262 views
Execute Openmp program in LLVM-3.0
I generated a .ll file using llvm-gcc for a Openmp program(written in c).
Then Optimized using opt(version 3.0)
But when I try to execute the optimized .ll file using lli or llvm-ld, getting the ...
9
votes
1answer
709 views
Does an @autoreleasepool {} drain when returning / exiting early?
Consider this example:
- (void)doSomething {
@autoreleasepool {
if (someCondition) {
/* ... allocate some autoreleased objects here ... */
return;
}
}
}
...
0
votes
1answer
216 views
llvm: strategies to build JIT content incrementally
I want my language backend to build functions and types incrementally but don't pollute the main module and context when functions and types fail to build successfully (due to problems with the user ...
0
votes
1answer
88 views
llvm: is it possible to merge validation and compilation in a single stage?
Generally speaking, when writing a llvm frontend, one will take an AST and first check that its semantics is well-defined. After this, one will take the AST and perform the IR build phase.
I was ...
0
votes
1answer
142 views
CreateGlobalStringPtr crashes when I don't create method + basic block for main
The following crashes in CreateGlobalStringPtr:
#include "llvm/Support/DataTypes.h"
#include "llvm/LLVMContext.h"
#include "llvm/Module.h"
#include "llvm/Constants.h"
#include "llvm/Function.h"
...
0
votes
1answer
415 views
Compilation errors while trying to link LLVM library
I am trying to use some LLVM API in my C++ code, and I end up getting linker errors. I am working on Apple MacOSX Lion. Using g++ for the compile. It is the CreateGlobalStringPtr which is throwing the ...
0
votes
2answers
238 views
memset 'CortexA8' issue under iOS5
Since iOS5 hit the streets I have begun I have been receiving many (so many) crash reports like:
...
Exception Type: SIGSEGV
Exception Codes: SEGV_ACCERR at 0x0
Crashed Thread: 0
Thread 0 Crashed:
...
0
votes
1answer
135 views
Error building haskell llvm bindings on Linux
I built llvm 3.0, downloaded from here. I did:
./configure CC=gcc CXX=g++ --enable-shared
sudo make -j5 -s install
Next, I cloned the LLVM bindings from here. I am trying:
runhaskell ...
1
vote
1answer
316 views
string representation of llvm::Type structure
llvm::Type 2.9 and earlier used to have getDescription method to retrieve a string representation of the type. This method does not exist anymore in llvm 3.0.
I'm not sure if this is deprecated in ...
7
votes
2answers
691 views
LLVM string objects
When building the IR from an existing AST, my AST has some string values (at compile-time they are built from std::string) and I want to set them safely as llvm::Value to use as a part of an ...
