search for: ppc32

Displaying 20 results from an estimated 206 matches for "ppc32".

2017 Oct 04
2
Relocations used for PPC32 in non-PIC mode
Hello, I am currently facing an issue at linking stage when compiling basic C code for an embedded PPC32 platform and linking with LLD. For external symbol linkage LLVM appears to use PLT which results in generating a R_PPC_PLTREL24 relocation, that is not support by LDD. Therefore even such a basic example cannot be built: /* s.c */ int f() { return 0; } /* t.c */ int f(); int _start() { return f()...
2017 Oct 04
2
Relocations used for PPC32 in non-PIC mode
Hal, I very well understand that LDD may not be in a good state for PPC32, and it would definitely need some improvements sooner or later. In fact I even submitted a patch adding a relocation to ldd just a few hours ago. However, this particular case is not related to LDD, it is a design issue and furthermore a regression in LLVM itself. I checked gcc, and neither does...
2006 Jun 06
0
ppc32: "Relocation truncated to fit"
Hello ppc32 users, I think I finally got the "official" answer on the ppc32 problem. Apparently some distributions build binutils so that it defaults to elf32ppc emulation rather than elf32ppclinux. This doesn't matter when using gcc, since gcc overrides the emulation explicitly, but it doe...
2008 Feb 01
4
[Bug 10547] nouveau: __ucmpdi2 unresolved on ppc32
http://bugs.freedesktop.org/show_bug.cgi?id=10547 --- Comment #6 from Maarten Maathuis <madman2003 at gmail.com> 2008-02-01 11:16:02 PST --- I've not heard people complain about this recently, is it still an issue? -- Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.
2011 Jan 05
3
[LLVMdev] Building LLVM-GCC on Linux/PowerPC failed
On Jan 5, 2011, at 1:47 PM, Erik de Castro Lopo wrote: > Kalle Raiskila wrote: > >> And I probably should file a bug. Is ppc32 still maintained? > > I have no concrete knowledge of this, but llvm compiles > and passes all tests on ppc32, so it seems to be maintained. > About once a week I grab the latest SVN head and check this. It is run by one of the automatic testers, and introduced bugs that break the tes...
2006 Nov 16
2
[LLVMdev] 1.9 Prerelease Available for Testing
...er tests that > should be run. I just need to fix that bug so we only run tests for the > specific target we are on. The issue is that we have many tests that work in cross compile mode. For example, test/Regression/CodeGen/PowerPC/vec_spat.ll contains: ; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep vspltw | wc -l | grep 2 && ; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g3 | grep stfs | wc -l | grep 4 && ; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep vsplti | wc -l | grep 3 && ; RUN: llvm-as < %s | llc -march=ppc32 -mcpu=g5 | grep vsplth...
2006 Feb 22
1
CentOS 4.3 for ppc32
A while back, there was mention that the release of CentOS 4.3 would bring a ppc32 version. Is this still in the works? If so, is it scheduled to be released at the same time as the more popular releases, or at a later time? Thanks, Barry
2006 May 01
0
CentOS 4 for PPC32
Does anyone have any news about the PPC32 release of CentOS 4? Thanks, Barry
2006 Apr 01
0
CentOS-4 for ppc32
Can anyone tell me how the ppc32 version of CentOS-4 is coming along? Thanks, Barry
2008 Jul 23
2
[LLVMdev] customized output of double load/store on ppc32
Hi For .LL like: define void @Func() { %var1 = alloca double store double 0x40bb580000000000, double* %var1 ret void } ppc32 output is: ... lis 3, 16571 ori 3, 3, 22528 li 4, 0 stw 3, 8(1) stw 4, 12(1) ... I'm using the PPC backend's output as the "bytecode" for an interpreter that I would like to be able to run on both little- and big-endian platforms. The split stw's...
2011 Dec 02
2
[LLVMdev] R: Re: LLVM-3.0 fails to build on linux ppc32
>Da: hfinkel at anl.gov >Data: 02/12/2011 16.27 >A: "acrux_it at libero.it"<acrux_it at libero.it> >Cc: <llvmdev at cs.uiuc.edu> >Ogg: Re: [LLVMdev] LLVM-3.0 fails to build on linux ppc32 > >On Fri, 2011-12-02 at 09:15 -0600, Hal Finkel wrote: >> On Fri, 2011-12-02 at 06:58 -0600, Hal Finkel wrote: >> > Nico, >> > >> > There is a third place that '#undef PPC' is needed (at the top of >> > PPCFixupKinds.h). Alternatively, you c...
2011 Dec 02
0
[LLVMdev] R: Re: LLVM-3.0 fails to build on linux ppc32
...2011-12-02 at 20:18 +0100, acrux_it at libero.it wrote: > >Da: hfinkel at anl.gov > >Data: 02/12/2011 16.27 > >A: "acrux_it at libero.it"<acrux_it at libero.it> > >Cc: <llvmdev at cs.uiuc.edu> > >Ogg: Re: [LLVMdev] LLVM-3.0 fails to build on linux ppc32 > > > >On Fri, 2011-12-02 at 09:15 -0600, Hal Finkel wrote: > >> On Fri, 2011-12-02 at 06:58 -0600, Hal Finkel wrote: > >> > Nico, > >> > > >> > There is a third place that '#undef PPC' is needed (at the top of > >> > PPC...
2011 Jun 13
1
[LLVMdev] Modifying DAG in TargetLowering::ReplaceNodeResults()
Hi! I am trying to implement va_arg() on ppc32. Everything went smooth, except implementing va_arg() of 64bit int. Since i64 is not a legal type on ppc32 DAGTypeLegalizer::ExpandRes_VAARG() splits the va_arg(i64) into two i32 va_args. The problem with ppc32 va_arg is that it needs special "alignment" of its gpr pointer when the argu...
2016 Apr 26
3
PPC little endian?
Hi, I am wondering why we dont support PPC32 LE? Here is the output of llvm-mc --version, in which only PPC32, PPC64 & PPC64LE are supported. $ llvm-mc --version LLVM (http://llvm.org/): LLVM version 3.6.2 Optimized build with assertions. Built Aug 2 2015 (11:39:46). Default target: x86_64-apple-darwin15.4.0 Host CPU: core-a...
2011 Jan 05
2
[LLVMdev] Building LLVM-GCC on Linux/PowerPC failed
...omewhere - clang defaults to 64bit assembly (if I understood the output correctly), and the assembly made from running 'clang --ccc-host-triple=powerpc-linux-gnu' is not accepted by the default system assembler. It might work better on a 64bit system. And I probably should file a bug. Is ppc32 still maintained? kalle -- "Modern computing machines are very complex objects" -von Neumann introducing the NORC, 1954
2011 Dec 02
0
[LLVMdev] LLVM-3.0 fails to build on linux ppc32
On Fri, Dec 02, 2011 at 12:30:29PM +0100, acrux_it at libero.it wrote: > +// Generated files will use "namespace PPC". To avoid symbol clash, > +// undefine PPC here. PPC may be predefined on some hosts. > +#undef PPC > + I wonder if it shouldn't just be renamed to PowerPC everywhere. It's not that much longer. Joerg
2011 Dec 02
0
[LLVMdev] LLVM-3.0 fails to build on linux ppc32
On Fri, Dec 02, 2011 at 06:59:47AM -0600, Hal Finkel wrote: > On Fri, 2011-12-02 at 13:28 +0100, Joerg Sonnenberger wrote: > > On Fri, Dec 02, 2011 at 12:30:29PM +0100, acrux_it at libero.it wrote: > > > +// Generated files will use "namespace PPC". To avoid symbol clash, > > > +// undefine PPC here. PPC may be predefined on some hosts. > > > +#undef
2008 Apr 19
0
[Bug 10547] nouveau: __ucmpdi2 unresolved on ppc32
http://bugs.freedesktop.org/show_bug.cgi?id=10547 Stephane Marchesin <marchesin at icps.u-strasbg.fr> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #12 from Stephane
2005 Dec 23
0
CentOS 4 on ppc32 iMac
Does anyone have CentOS 4 running on an iMac? Any caveats or useful tips? Where are the ISOs located these days? TIA, Barry
2003 Nov 28
2
[PATCH] update crt0.S on ppc32
The _start stuff was changed some time ago, but ppc was not updated. This fixes klibc for me. I'm not sure what to do with the second arg to __libc_init, so I set it to 0.. However, looking at other static binaries, there is more stuff todo. diff -p -purNx linux -x '.*.d' -x syscalls -x socketcalls y/klibc-0.87/klibc/arch/ppc/crt0.S klibc-0.87/klibc/arch/ppc/crt0.S ---