search for: varth

Displaying 10 results from an estimated 10 matches for "varth".

Did you mean: earth
2007 May 15
2
[LLVMdev] Compiling llvm-gcc in linux/ppc
...rite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros -Wold-style-definition -DHAVE_CONFIG_H -DENABLE_LLVM -D__STDC_LIMIT_MACROS -I. -I. -I../../trunk/gcc -I../../trunk/gcc/. -I../../trunk/gcc/../include -I../../trunk/gcc/../libcpp/include -I/home/varth/project/llvm-cvs/llvm/include -I/usr/local/home/varth/project/llvm-cvs/llvm/include ../../trunk/gcc/stor-layout.c -o stor-layout.o ../../trunk/gcc/stor-layout.c:450:25: error: macro "ADJUST_FIELD_ALIGN" passed 3 arguments, but takes just 2 ../../trunk/gcc/stor-layout.c: In function 'l...
2007 May 22
0
[LLVMdev] Compiling llvm-gcc in linux/ppc
OK, seems like there were unused TARGET_MACHO macros that would protect these errors from happening. I made some modifications that add #if TARGET_MACHO. Now the error is a linkage problem: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/xgcc: symbol lookup error: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/libgcc_s.so.1: undefined symbol: __thenan_sf And even if I force the definition of thenan_sf with const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, {(fractype) 0} }; I still get the e...
2007 May 23
2
[LLVMdev] Compiling llvm-gcc in linux/ppc
...; OK, seems like there were unused TARGET_MACHO macros that would protect > these errors from happening. I made some modifications that add #if > TARGET_MACHO. ok. If you send a patch in that adds these, I would be happy to apply it. > Now the error is a linkage problem: > > /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/xgcc: symbol lookup > error: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/libgcc_s.so.1: > undefined symbol: __thenan_sf > > And even if I force the definition of thenan_sf with > const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, {(fractype)...
2007 May 23
0
[LLVMdev] Compiling llvm-gcc in linux/ppc
...I will when I'll figure out why it sometimes doesn't work to add these and I have to remove the specific instructions from the file (even an #if 0 does not work -- maybe there's a script somewhere that misbehaves) >> Now the error is a linkage problem: >> >> /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/xgcc: symbol lookup >> error: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/libgcc_s.so.1: >> undefined symbol: __thenan_sf >> >> And even if I force the definition of thenan_sf with >> const fp_number_type __thenan_sf = { CLASS_SNAN...
2008 Dec 17
1
[LLVMdev] Getting the start and end address of JITted code
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 will tell you the start pointer and the end pointer But how can I do this? The obvious way would be for me to inherit from DefaultMemoryManager and pass an instance of my class to ExecutionEngine::crea...
2007 May 14
0
[LLVMdev] Compiling llvm-gcc in linux/ppc
...-inline.c:(.text+0x4b78): undefined reference to `build_stmt' > libbackend.a(tree-inline.o):tree-inline.c:(.text+0x4b90): more undefined > references to `build_stmt' follow > collect2: ld returned 1 exit status > make[1]: *** [f771] Error 1 > make[1]: Leaving directory `/home/varth/project/llvm-cvs/llvm-gcc/gcc' > make: *** [all-gcc] Error 2 > > If anyone has a clue... > > Best, > Nicolas > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs....
2007 May 14
2
[LLVMdev] Compiling llvm-gcc in linux/ppc
...to `build_stmt' tree-inline.c:(.text+0x4b78): undefined reference to `build_stmt' libbackend.a(tree-inline.o):tree-inline.c:(.text+0x4b90): more undefined references to `build_stmt' follow collect2: ld returned 1 exit status make[1]: *** [f771] Error 1 make[1]: Leaving directory `/home/varth/project/llvm-cvs/llvm-gcc/gcc' make: *** [all-gcc] Error 2 If anyone has a clue... Best, Nicolas
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 will tell you the start pointer and the end > pointer > Yep, that's what I said :) > But how can I do this? The obvious way would be for me to inherit > from DefaultMemoryManag...
2008 Dec 17
5
[LLVMdev] Windows build problems
Folks, Is anyone else the failure below? On Mac OS X everything builds properly... Thanks for any help, snaroff -------------- next part -------------- A non-text attachment was scrubbed... Name: Picture 27.png Type: image/png Size: 18959 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20081217/e7d37fee/attachment.png>
2008 Dec 17
1
[LLVMdev] Getting the start and end address of JITted code
...ley 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 will tell you the start pointer and the end >> pointer >> > > Yep, that's what I said :) > >> But how can I do this? The obvious way would be for me to inher...