Displaying 20 results from an estimated 3000 matches similar to: "[LLVMdev] Problem while building llvm"
2009 Dec 08
2
[LLVMdev] Problem while building llvm
Hi, all
I come across the problem when building llvm.
The errors are as follows
...
etJITInfo&, llvm::JITMemoryManager*, llvm::CodeGenOpt::Level, bool)':
: undefined reference to `__register_frame'
collect2: ld returned 1 exit status
make[2]: *** [/home/lishengmei/llvm-2.6/Release/bin/lli] Error 1
make[2]: Leaving directory `/home/lishengmei/llvm-2.6/tools/lli'
2009 Dec 23
0
[LLVMdev] Problem while compling SPEC2000 with llvm-gcc
On 2009-12-23 08:22, Li Shengmei wrote:
>
> Hi, all
>
> I use llvm-gcc –O4 to compile SPEC 2000, some benchmarks
> can’t be built successfully, such as 164.gzip, 175.vpr etc.
>
> The error messages are as follows.
>
>
>
> ……
>
> zh.o unlzw.o unpack.o unzip.o util.o zip.o -o gzip
>
> bits.o: file not recognized: File format not recognized
2009 Dec 23
2
[LLVMdev] Problem while compling SPEC2000 with llvm-gcc
Hi, all
I use llvm-gcc -O4 to compile SPEC 2000, some benchmarks can't be
built successfully, such as 164.gzip, 175.vpr etc.
The error messages are as follows.
..
zh.o unlzw.o unpack.o unzip.o util.o zip.o -o gzip
bits.o: file not recognized: File format not recognized
collect2: ld returned 1 exit status
specmake: *** [gzip] Error 1
specmake options 2> options.err |
2012 Aug 09
1
[LLVMdev] question about ExectuionEngine::Create
I found the following problem when I try to debug "target does not support
mc emission" in linux (the same code executes OK in windows):
Below is a snippet extracted from this method,
if (UseMCJIT && ExecutionEngine::MCJITCtor) {
ExecutionEngine *EE =
ExecutionEngine::MCJITCtor(M, ErrorStr, JMM, OptLevel,
2013 Jul 30
0
[LLVMdev] LLVM and Cygwin
Hi Brian,
On 29/07/13 23:42, Brian Herman wrote:
> I got the following error while compiling llvm and clang under cygwin.
>
> /cygdrive/c/Users/brianherman/Desktop/llvm/llvm-3.3.src/Release+Asserts/lib/libLLVMMCJIT.a(SectionMemoryManager.o):SectionMemoryManager.cpp:(.text+0x3b):
> undefined reference to `__register_frame'
I register_frame is used to enable the debugger (gdb) to
2009 Dec 08
1
[LLVMdev] Problem while building llvm
Thanks, sands
My gcc version is 3.4.6. Any problems?
Shengmei
----------------
Hi,
> / : undefined reference to `__register_frame' /
this is defined in libgcc on most platforms and is used for registering
exception handling frames. LLVM's JIT makes use of it on some platforms.
What version of gcc are you using?
Ciao,
Duncan.
2013 Jul 30
2
[LLVMdev] LLVM and Cygwin
I get this when I type:
brianherman at windows-8-[REDACTED] ~
$ nm libgcc_eh.a | grep register_frame
nm: 'libgcc_eh.a': No such file
brianherman at windows-8-[REDACTED] ~
$ nm libgcc_eh.a | grep register_fram
nm: 'libgcc_eh.a': No such file
brianherman at windows-8-[REDACTED] ~
$
On Tue, Jul 30, 2013 at 7:51 AM, Duncan Sands <baldrick at free.fr> wrote:
> Hi
2011 Aug 26
1
[LLVMdev] Build breaks in lib/CodeGen
I checked recent revisions 138624 and 138620 and both produce this log
with gcc-4.6.0 on FreeBSD-8.2-STABLE amd64:
gmake[2]: Entering directory
`/usr/home/yuri/llvm-svn/llvm-objects/lib/CodeGen'
llvm[2]: Compiling LLVMTargetMachine.cpp for Release build
/usr/home/yuri/llvm-svn/llvm/lib/CodeGen/LLVMTargetMachine.cpp:253:3:
error: ‘AsmStreamer’ does not name a type
2012 Jul 07
2
[LLVMdev] Crash using the JIT on x86 but work on x64
Hello everyone, i’m using LLVM (updated to 3.1 after seeing that bug, but it’s the same with 3.0) for running a bitcode on a C++ program, and Clang for compiling it. My code work perfectly, as expected on x64, but crash on x86. I’m on Windows 7 x64 and LLVM + Clang was compiled using Visual Studio 2010 (tested in both Release and Debug build). Project was make using CMake.
Here is my code:
2013 Jul 29
5
[LLVMdev] LLVM and Cygwin
I got the following error while compiling llvm and clang under cygwin.
/cygdrive/c/Users/brianherman/Desktop/llvm/llvm-3.3.src/Release+Asserts/lib/libLLVMMCJIT.a(SectionMemoryManager.o):SectionMemoryManager.cpp:(.text+0x3b):
undefined reference to `__register_frame'
2009 Oct 06
1
[LLVMdev] 2.6/trunk Execution Engine question
On Tue, Oct 6, 2009 at 5:49 PM, Reid Kleckner <rnk at mit.edu> wrote:
>> Also, the null pointer is coming from a call to JCE->allocateSpace().
>> This is a virtual function; I'm trying to discover what subclass it
>> is.
>
> So, there's JITEmitter::allocateSpace which overrides
> JITCodeEmitter::allocateSpace(), but *most* of the time it just calls
>
2007 Dec 12
3
[LLVMdev] Exception handling in JIT
Hi Evan,
My apologies: I've been so excited on sharing the functionality that I
forgot to review my patch!
Evan Cheng wrote:
> On Dec 10, 2007, at 9:52 AM, Nicolas Geoffray wrote:
>
>
>> Hi everyone,
>>
>> Here's a patch that enables exception handling when jitting. I've
>> copy/pasted _many_code from lib/Codegen/DwarfWriter.cpp, so we may
2009 Dec 31
0
[LLVMdev] Problems of source to source transformation of LLVM
Nobody give comments on this?
Is the source to source transformation of LLVM robust enough?
Thanks in advance.
Shengmei
_____
Problems of source to source transformation of LLVM
Hi,
I did experiments of the source transformation of LLVM on SPEC2000 C
programs. But I found most benchmarks can't be
transformed from source to source successfully.
The steps are as
2009 Dec 11
2
[LLVMdev] IR of LLVM
Hi, all
We want to learn the IR of LLVM. Are there any information or
documents you can suggest?
Or any suggestions are welcome.
Thanks
Shengmei
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091211/0a788413/attachment.html>
2009 Dec 21
2
[LLVMdev] What benchmarks can LLVM compile and run successfully?
Hi,
I want to know what benchmarks can LLVM compile and run
successfully.
Such as SPEC CPU2000, SPEC CPU2006 or other benchmarks.
Thanks
Shengmei
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091221/ed70efce/attachment.html>
2008 Dec 17
0
[LLVMdev] Getting the start and end address of JITted code
Hi Andrew,
Andrew Haley wrote:
> Here's my problem, which I raised on IRC:
>
> JIT::getPointerToFunction gets the address of the start of a function.
> But how do I find out where the end of the function is? I need this
> to register the function for profiling.
>
> varth said: aph, you need to intercept the "endFunctionBody" call on
> the memory manager, it
2009 Dec 21
0
[LLVMdev] What benchmarks can LLVM compile and run successfully?
On Sun, Dec 20, 2009 at 7:06 PM, Li Shengmei <lism03 at gmail.com> wrote:
> Hi,
>
> I want to know what benchmarks can LLVM compile and run
> successfully.
>
> Such as SPEC CPU2000, SPEC CPU2006 or other benchmarks.
llvm-gcc can compile essentially anything in C/C++.
-Eli
2008 Dec 17
1
[LLVMdev] Getting the start and end address of JITted code
Nicolas Geoffray wrote:
> Hi Andrew,
>
> Andrew Haley wrote:
>> Here's my problem, which I raised on IRC:
>>
>> JIT::getPointerToFunction gets the address of the start of a function.
>> But how do I find out where the end of the function is? I need this
>> to register the function for profiling.
>>
>> varth said: aph, you need to intercept
2017 Jan 06
2
LLVMTargetMachine with optimization level passed from clang.
> -----Original Message-----
> From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Mehdi
> Amini via llvm-dev
> Sent: Friday, January 06, 2017 11:10 AM
> To: Sumanth Gundapaneni
> Cc: LLVM Developers
> Subject: Re: [llvm-dev] LLVMTargetMachine with optimization level passed
> from clang.
>
>
> > On Jan 6, 2017, at 10:56 AM, Sumanth
2012 Oct 26
0
[LLVMdev] Lifetime of ExecutionEngine?
Hi Paul,
I'm surprised to hear that you aren't seeing any adverse effects. As I understand it, the memory for the function pointer returned by getPointerToFunction is owned by the JITMemoryManager which was used in creating the ExecutionEngine. In the case of the legacy JIT engine, the JITMemoryManager is owned by the JITEmitter which in turn is owned by the JIT ExecutionEngine. In the