search for: rdlo

Displaying 13 results from an estimated 13 matches for "rdlo".

Did you mean: edlo
2009 Jul 08
3
[LLVMdev] ARM cross compiling causes segmentation fault
Hello, I built a llvm toolchain for ARM and I'm trying to build a simple application on ARM using LLVM. When I compiled the code, it has the following message and the binary code has a segmentation fault when it is executed. /tmp/ccJPjMe4.s: Assembler messages: /tmp/ccJPjMe4.s:4250: rdhi, rdlo and rm must all be different /tmp/ccJPjMe4.s:4589: rdhi, rdlo and rm must all be different /tmp/ccJPjMe4.s:4694: rdhi, rdlo and rm must all be different /tmp/ccJPjMe4.s:4899: rdhi, rdlo and rm must all be different /tmp/ccJPjMe4.s:4915: rdhi, rdlo and rm must all be different Any idea? Regards, W...
2009 Jul 08
3
[LLVMdev] ARM cross compiling causes segmentation fault
...ying to build a simple > > application on ARM using LLVM. When I compiled the code, it has the > > following message and the binary code has a segmentation fault when > > it is executed. > > > > /tmp/ccJPjMe4.s: Assembler messages: > > /tmp/ccJPjMe4.s:4250: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4589: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4694: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4899: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4915: rdhi, rdlo and rm must...
2009 Jul 08
0
[LLVMdev] ARM cross compiling causes segmentation fault
...n for ARM and I'm trying to build a simple > application on ARM using LLVM. When I compiled the code, it has the > following message and the binary code has a segmentation fault when > it is executed. > > /tmp/ccJPjMe4.s: Assembler messages: > /tmp/ccJPjMe4.s:4250: rdhi, rdlo and rm must all be different > /tmp/ccJPjMe4.s:4589: rdhi, rdlo and rm must all be different > /tmp/ccJPjMe4.s:4694: rdhi, rdlo and rm must all be different > /tmp/ccJPjMe4.s:4899: rdhi, rdlo and rm must all be different > /tmp/ccJPjMe4.s:4915: rdhi, rdlo and rm must all be different M...
2015 May 28
1
[LLVMdev] [ARM backend] adding pattern for SMLALBB
Hi James/Tim, I am trying to add a patterns for SMLALBB I think these two assembly patterns can be reduced to SMLALBB using tablegen. 1) smulbb r2, r3, r2 adds r0, r2, r0 (RdLo) asr r3, r2, #31 adc r1, r3, r1 (RdHi) ==> smlalbb r0, r1, r3, r2 I have added pattern in def SMLALBB : AMulxyI64< ..... as below :- [] modified to ---> [((set GPR:$RdLo, (ARMaddc (set GPR:$Rd, mul GPR:$Rn, GPR:$Rm), GPR:$RdLo)), (set GPR:$RdHi, (ARMadde (sra G...
2009 Jul 08
0
[LLVMdev] ARM cross compiling causes segmentation fault
...ying to build a simple > > application on ARM using LLVM. When I compiled the code, it has the > > following message and the binary code has a segmentation fault when > > it is executed. > > > > /tmp/ccJPjMe4.s: Assembler messages: > > /tmp/ccJPjMe4.s:4250: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4589: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4694: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4899: rdhi, rdlo and rm must all be different > > /tmp/ccJPjMe4.s:4915: rdhi, rdlo and rm must...
2009 Jul 08
1
[LLVMdev] ARM cross compiling causes segmentation fault
...gt;> > application on ARM using LLVM. When I compiled the code, it has the >> > following message and the binary code has a segmentation fault when >> > it is executed. >> > >> > /tmp/ccJPjMe4.s: Assembler messages: >> > /tmp/ccJPjMe4.s:4250: rdhi, rdlo and rm must all be different >> > /tmp/ccJPjMe4.s:4589: rdhi, rdlo and rm must all be different >> > /tmp/ccJPjMe4.s:4694: rdhi, rdlo and rm must all be different >> > /tmp/ccJPjMe4.s:4899: rdhi, rdlo and rm must all be different >> > /tmp/ccJPjMe4.s:4915: rdhi,...
2010 Jun 07
2
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
...AVE_CONFIG_H -I. -I../.././libmudflap -I. -Wall -ffunction-sections -fdata-sections -O2 -g -O2 --sysroot=/home//arm_v7_vfp_le/target/ -MT mf-runtime.lo -MD -MP -MF .deps/mf-runtime.Tpo -c ../.././libmudflap/mf-runtime.c -o mf-runtime.o /tmp/cczBL31y.s: Assembler messages: /tmp/cczBL31y.s:409: rdhi, rdlo and rm must all be different /tmp/cczBL31y.s:2742: Error: offset too big /tmp/cczBL31y.s:2743: Error: offset too big /tmp/cczBL31y.s:2752: Error: offset too big /tmp/cczBL31y.s:2753: Error: offset too big /tmp/cczBL31y.s:2762: Error: offset too big /tmp/cczBL31y.s:2763: Error: offset too big /tmp/c...
2010 Jun 07
0
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
Hello > /tmp/cczBL31y.s:409: rdhi, rdlo and rm must all be different This is binutils bug fixed ~2 years ago: http://sourceware.org/ml/binutils/2007-11/msg00046.html Make sure you're using the latest binutils for ARM (from binutils CVS) -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg...
2010 Jun 17
2
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
...m-ld -link-as-library *.bc target.bc // Consolidate all .bcs into one llc target.bc -o target.s cross-as target.s -o target.o ar q target.a target.o On Mon, Jun 7, 2010 at 10:18 PM, Anton Korobeynikov <anton at korobeynikov.info > wrote: > Hello > > > /tmp/cczBL31y.s:409: rdhi, rdlo and rm must all be different > This is binutils bug fixed ~2 years ago: > http://sourceware.org/ml/binutils/2007-11/msg00046.html > > Make sure you're using the latest binutils for ARM (from binutils CVS) > > -- > With best regards, Anton Korobeynikov > Faculty of Mathem...
2011 Jul 31
1
[LLVMdev] Selfhost LLVM and Clang on ARM
...clang (selfhost build). --- llvm[1]: Compiling DeltaAlgorithm.cpp for Debug build /tmp/cc-DqWGS1.s: Assembler messages: /tmp/cc-DqWGS1.s:8963: Rd and Rm should be different in mul llvm[1]: Compiling PluginLoader.cpp for Debug build /tmp/cc-wpJpuX.s: Assembler messages: /tmp/cc-wpJpuX.s:724: rdhi, rdlo and rm must all be different /tmp/cc-wpJpuX.s:728: Rd and Rm should be different in mla --- What does those message mean? Thanks! Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia Sinica, Taiwan (R.O.C.) Tel:886-2-2788-3799 #1667
2010 Jun 25
0
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
...all .bcs into one > llc target.bc -o target.s > cross-as target.s -o target.o > ar q target.a target.o > > > On Mon, Jun 7, 2010 at 10:18 PM, Anton Korobeynikov < > anton at korobeynikov.info> wrote: > >> Hello >> >> > /tmp/cczBL31y.s:409: rdhi, rdlo and rm must all be different >> This is binutils bug fixed ~2 years ago: >> http://sourceware.org/ml/binutils/2007-11/msg00046.html >> >> Make sure you're using the latest binutils for ARM (from binutils CVS) >> >> -- >> With best regards, Anton Korobey...
2010 Jun 06
0
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
On 2010-06-04 13:41, Sanjeev C wrote: > I get following errors: > > /home/llvm-gcc-4.2-2.7.source/host-i686-pc-linux-gnu/gcc/xgcc > -B/home/llvm-gcc-4.2-2.7.source/host-i686-pc-linux-gnu/gcc/ > -B/usr/local/armv7fl-montavista-linux-gnueabi/bin/ > -B/usr/local/armv7fl-montavista-linux-gnueabi/lib/ -isystem > /usr/local/armv7fl-montavista-linux-gnueabi/include -isystem >
2010 Jun 04
2
[LLVMdev] build errors while cross compiling llvm-gcc for ARM
I'm getting following errors while cross compiling llvm for ARM. Please help since it is urgent and critical My gcc version is 4.2.0, 32bit Linux and target is ARM Configure options are: ./configure --host=i686-pc-linux-gnu --build=i686-pc-linux-gnu --target=armv7fl-montavista-linux-gnueabi --enable-cross --with-sysroot=/home//arm_v7_vfp_le/target/