Displaying 16 results from an estimated 16 matches for "dbxout".
2008 Jan 10
3
[LLVMdev] LLVM Build Problems on Itanium
...rty/llvm.ia64/llvm-gcc4.2-2.1.source/gcc/../libdecnumber
-I../libdecnumber -I/liberty/llvm.ia64/llvm-2.1/include
-I/liberty/llvm.ia64/llvm-2.1//include -DENABLE_LLVM
-I/liberty/llvm.ia64/llvm-2.1/include -D_DEBUG -D_GNU_SOURCE
-D__STDC_LIMIT_MACROS
/liberty/llvm.ia64/llvm-gcc4.2-2.1.source/gcc/dbxout.c -o dbxout.o
In file included from
/liberty/llvm.ia64/llvm-gcc4.2-2.1.source/gcc/dbxout.c:4365:
./gt-dbxout.h: In function ‘gt_ggc_ma_type_queue’:
./gt-dbxout.h:83: error: ‘type_queue’ undeclared (first use in this
function)
./gt-dbxout.h:83: error: (Each undeclared identifier is reported only o...
2008 Jan 10
0
[LLVMdev] LLVM Build Problems on Itanium
Hi,
I've figured out a little more. #if defined DBX_DEBUGGING_INFO ||
XCOFF_DEBUGGING_INFO guards the declaration of type_queue, however,
neither is defined on Intanium. In gt-dbxout.h type_queue's uses are
unguarded and thus are undefined on Itanium. When I compared llvm-gcc's
gt-dbxout.h with FSF gcc's, I found that type_queue was never used in
FSF gcc's version. Does anyone know what DBX_DEBUGGING_INFO and
XCOFF_DEBUGGING_INFO signify? I know that gt-dbxo...
2008 Jan 10
2
[LLVMdev] LLVM Build Problems on Itanium
On Jan 10, 2008, at 10:29 AM, Thomas Jablin wrote:
> Hi,
>
> I've figured out a little more. #if defined DBX_DEBUGGING_INFO ||
> XCOFF_DEBUGGING_INFO guards the declaration of type_queue, however,
> neither is defined on Intanium. In gt-dbxout.h type_queue's uses are
> unguarded and thus are undefined on Itanium. When I compared llvm-
> gcc's
> gt-dbxout.h with FSF gcc's, I found that type_queue was never used in
> FSF gcc's version. Does anyone know what DBX_DEBUGGING_INFO and
> XCOFF_DEBUGGING_INFO signi...
2008 Jan 10
0
[LLVMdev] LLVM Build Problems on Itanium
...rote:
> On Jan 10, 2008, at 10:29 AM, Thomas Jablin wrote:
>
>
>> Hi,
>>
>> I've figured out a little more. #if defined DBX_DEBUGGING_INFO ||
>> XCOFF_DEBUGGING_INFO guards the declaration of type_queue, however,
>> neither is defined on Intanium. In gt-dbxout.h type_queue's uses are
>> unguarded and thus are undefined on Itanium. When I compared llvm-
>> gcc's
>> gt-dbxout.h with FSF gcc's, I found that type_queue was never used in
>> FSF gcc's version. Does anyone know what DBX_DEBUGGING_INFO and
>> XCOFF_...
2008 Jan 10
0
[LLVMdev] LLVM Build Problems on Itanium
...rty/llvm.ia64/llvm-gcc4.2-2.1.source/gcc/../libdecnumber
-I../libdecnumber -I/liberty/llvm.ia64/llvm-2.1/include
-I/liberty/llvm.ia64/llvm-2.1//include -DENABLE_LLVM
-I/liberty/llvm.ia64/llvm-2.1/include -D_DEBUG -D_GNU_SOURCE
-D__STDC_LIMIT_MACROS
/liberty/llvm.ia64/llvm-gcc4.2-2.1.source/gcc/dbxout.c -o dbxout.o
In file included from
/liberty/llvm.ia64/llvm-gcc4.2-2.1.source/gcc/dbxout.c:4365:
./gt-dbxout.h: In function ‘gt_ggc_ma_type_queue’:
./gt-dbxout.h:83: error: ‘type_queue’ undeclared (first use in this
function)
./gt-dbxout.h:83: error: (Each undeclared identifier is reported only o...
2008 Jan 10
2
[LLVMdev] LLVM Build Problems on Itanium
...LVM bug. Inline assembly is known to have some problems.
I'm not sure how robust the ia64 implementation is.
Configuring with
BOOTSTRAP=
should stop it from trying to bootstrap. However, it's still likely
to try to build the file that's causing trouble.
>>> I know that gt-dbxout.h is machine
>>> generated. Does anyone know where and how this machine generation
>>> occurs? Thanks.
>>> Tom
>>>
>>> Thomas Jablin wrote:
>>>
>>>> Hi,
>>>>
>>>> I am having some difficulties building llvm on...
2004 May 05
0
[LLVMdev] Testing LLVM on OS X
...Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o
emit-rtl.o -DHOST_WORDS_BIG_ENDIAN -O3 emit-rtl.c
/Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o real.o
-DHOST_WORDS_BIG_ENDIAN -O3 real.c
/Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o
dbxout.o -DHOST_WORDS_BIG_ENDIAN -O3 dbxout.c
/Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o
sdbout.o -DHOST_WORDS_BIG_ENDIAN -O3 sdbout.c
/Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o
dwarfout.o -DHOST_WORDS_BIG_ENDIAN -O3 dwarfou...
2004 May 04
6
[LLVMdev] Testing LLVM on OS X
On Tue, 4 May 2004, Chris Lattner wrote:
> I suspect that a large reason that LLVM does worst than a native C
> compiler with the CBE+GCC is that LLVM generates very low-level C code,
> and I'm not convinced that GCC is doing a very good job (ie, without
> syntactic loops).
Yup, this is EXACTLY what is going on.
I took this very simple C function:
int Array[1000];
void test(int
2004 May 05
2
[LLVMdev] Testing LLVM on OS X
.../ppc/llvm-gcc/bin/gcc -c -o
> emit-rtl.o -DHOST_WORDS_BIG_ENDIAN -O3 emit-rtl.c
> /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o real.o
> -DHOST_WORDS_BIG_ENDIAN -O3 real.c
> /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o
> dbxout.o -DHOST_WORDS_BIG_ENDIAN -O3 dbxout.c
> /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o
> sdbout.o -DHOST_WORDS_BIG_ENDIAN -O3 sdbout.c
> /Users/patrick/Desktop/LLVM/cfrontend/ppc/llvm-gcc/bin/gcc -c -o
> dwarfout.o -DHOST_WORDS_BIG_ENDIAN...
2015 Apr 16
2
[LLVMdev] Compile SPEC2006 with clang-3.2, multi definition errors.
...pphash.bc cpperror.bc cppinit.bc cppdefault.bc
line-map.bc mkdeps.bc prefix.bc version.bc mbchar.bc alias.bc bb-reorder.bc
bitmap
.bc builtins.bc caller-save.bc calls.bc cfg.bc cfganal.bc cfgbuild.bc
cfgcleanup.bc cfglayout.bc cfgloop.bc cfgrtl.bc combine.bc conflict.bc
convert.bc cse.b
c cselib.bc dbxout.bc debug.bc dependence.bc df.bc diagnostic.bc doloop.bc
dominance.bc dwarf2asm.bc dwarf2out.bc dwarfout.bc emit-rtl.bc except.bc
explow.bc
expmed.bc expr.bc final.bc flow.bc fold-const.bc function.bc gcse.bc
genrtl.bc ggc-common.bc global.bc graph.bc haifa-sched.bc hash.bc
hashtable.bc hooks.bc
i...
2006 Jul 10
1
[LLVMdev] enabling Debian x86_64 for llvm 1.7
...-reorder.o bitmap.o builtins.o
caller-save.o calls.o cfg.o cfganal.o cfgbuild.o cfgcleanup.o
cfglayout.o cfgloop.o cfgloopanal.o cfgloopmanip.o loop-init.o
loop-unswitch.o loop-unroll.o cfgrtl.o combine.o conflict.o convert.o
coverage.o cse.o cselib.o tree-ssa-loop-prefetch.o
tree-ssa-loop-memset.o dbxout.o ddg.o tree-ssa-loop-ch.o
loop-invariant.o tree-ssa-loop-im.o debug.o df.o diagnostic.o dojump.o
dominance.o loop-doloop.o dwarf2asm.o dwarf2out.o emit-rtl.o except.o
explow.o loop-iv.o expmed.o expr.o final.o flow.o fold-const.o
function.o gcse.o genrtl.o ggc-common.o global.o graph.o gtype-desc....
2007 Apr 27
2
[LLVMdev] Boostrap Failure -- Expected Differences?
...o differs
./collect2.o differs
./combine.o differs
./conflict.o differs
./convert.o differs
./c-opts.o differs
./coverage.o differs
./c-parse.o differs
./c-pch.o differs
./c-pragma.o differs
./c-pretty-print.o differs
./cselib.o differs
./c-semantics.o differs
./cse.o differs
./c-typeck.o differs
./dbxout.o differs
./ddg.o differs
./df.o differs
./diagnostic.o differs
./dojump.o differs
./dominance.o differs
./domwalk.o differs
./dwarf2asm.o differs
./dwarf2out.o differs
./emit-rtl.o differs
./errors.o differs
./except.o differs
./explow.o differs
./expmed.o differs
./expr.o differs
./final.o differ...
2009 Mar 04
2
[LLVMdev] Fwd: PPC Nightly Build Result
...Volumes/
> SandBox/NightlyTest/llvmCore.roots/llvmCore~dst/Developer/usr/local/
> include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -
> D__STDC_CONSTANT_MACROS -DLLVM_VERSION_INFO='"9999"' /Volumes/
> SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/src/gcc/dbxout.c -
> o dbxout.o
> /Volumes/SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/obj-
> powerpc-powerpc/./prev-gcc/xgcc -B/Volumes/SandBox/NightlyTest/
> llvmgcc42.roots/llvmgcc42~obj/obj-powerpc-powerpc/./prev-gcc/ -B/
> Developer/usr/llvm-gcc-4.2/powerpc-apple-darwin9/bin/ -c -g...
2009 Mar 05
0
[LLVMdev] Fwd: PPC Nightly Build Result
...t; SandBox/NightlyTest/llvmCore.roots/llvmCore~dst/Developer/usr/local/
> > include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -
> > D__STDC_CONSTANT_MACROS -DLLVM_VERSION_INFO='"9999"' /Volumes/
> > SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/src/gcc/dbxout.c -
> > o dbxout.o
> > /Volumes/SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/obj-
> > powerpc-powerpc/./prev-gcc/xgcc -B/Volumes/SandBox/NightlyTest/
> > llvmgcc42.roots/llvmgcc42~obj/obj-powerpc-powerpc/./prev-gcc/ -B/
> > Developer/usr/llvm-gcc-4.2/powerpc-apple...
2009 Mar 05
1
[LLVMdev] Fwd: PPC Nightly Build Result
...x/NightlyTest/llvmCore.roots/llvmCore~dst/Developer/usr/local/
>>> include -D_DEBUG -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -
>>> D__STDC_CONSTANT_MACROS -DLLVM_VERSION_INFO='"9999"' /Volumes/
>>> SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/src/gcc/dbxout.c -
>>> o dbxout.o
>>> /Volumes/SandBox/NightlyTest/llvmgcc42.roots/llvmgcc42~obj/obj-
>>> powerpc-powerpc/./prev-gcc/xgcc -B/Volumes/SandBox/NightlyTest/
>>> llvmgcc42.roots/llvmgcc42~obj/obj-powerpc-powerpc/./prev-gcc/ -B/
>>> Developer/usr/llvm-gcc-4....
2007 Apr 30
0
[LLVMdev] Boostrap Failure -- Expected Differences?
...t.o differs
> ./convert.o differs
> ./c-opts.o differs
> ./coverage.o differs
> ./c-parse.o differs
> ./c-pch.o differs
> ./c-pragma.o differs
> ./c-pretty-print.o differs
> ./cselib.o differs
> ./c-semantics.o differs
> ./cse.o differs
> ./c-typeck.o differs
> ./dbxout.o differs
> ./ddg.o differs
> ./df.o differs
> ./diagnostic.o differs
> ./dojump.o differs
> ./dominance.o differs
> ./domwalk.o differs
> ./dwarf2asm.o differs
> ./dwarf2out.o differs
> ./emit-rtl.o differs
> ./errors.o differs
> ./except.o differs
> ./explow.o...