Displaying 6 results from an estimated 6 matches for "57688".
Did you mean:
7688
2012 May 02
4
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
...to basically save/restore the entire set
of non-volatile integer and fp registers. Looking at how
llvm does that shows:
...
lis 3, 56
ori 3, 3, 57680
stwx 16, 31, 3
lis 3, 56
ori 3, 3, 57684
stwx 17, 31, 3
lis 3, 56
ori 3, 3, 57688
stwx 18, 31, 3
lis 3, 56
ori 3, 3, 57692
stwx 19, 31, 3
lis 3, 56
ori 3, 3, 57696
stwx 20, 31, 3
lis 3, 56
ori 3, 3, 57700
stwx 21, 31, 3
[repeated over and over and ...]
Kind of ugly! :) GCC on the other hand...
2009 Apr 29
3
Re: Wine memory problem
...sqld
31033 root 29 9 953m 101m 8292 S 0.3 4.9 1:11.42 java
3061 traditus 29 9 95860 1376 836 S 0.0 0.1 0:00.00 crond
3272 traditus 29 9 8672 1120 948 S 0.0 0.1 0:00.00 bash
3273 traditus 29 9 8668 1056 904 S 0.0 0.1 0:00.00 IQServer.sh
3276 traditus 29 9 57688 3492 2300 S 0.0 0.2 0:00.00 sendmail
3277 traditus 29 9 3615m 8528 5672 S 0.0 0.4 0:00.08 IQServer.exe
3342 traditus 29 9 5160 2664 624 S 0.0 0.1 0:26.58 wineserver
3517 traditus 29 9 3607m 2484 1980 S 0.0 0.1 0:00.00 services.exe
3572 traditus 29 9 3607m 2848 2264...
2007 Feb 08
0
CESA-2007:0044 Moderate CentOS 3 s390(x) bind - security update
CentOS Errata and Security Advisory 2007:0044
https://rhn.redhat.com/errata/RHSA-2007-0044.html
The following updated files have been uploaded and are currently
syncing to the mirrors:
s390:
updates/s390/RPMS/bind-9.2.4-20.EL3.s390.rpm
updates/s390/RPMS/bind-chroot-9.2.4-20.EL3.s390.rpm
updates/s390/RPMS/bind-devel-9.2.4-20.EL3.s390.rpm
updates/s390/RPMS/bind-libs-9.2.4-20.EL3.s390.rpm
2012 May 02
0
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
On Tue, 2012-05-01 at 17:47 -0500, Hal Finkel wrote:
> By default it should build for
> whatever the current host is (no special flags required). To
> specifically build for something else, use:
> -ccc-host-triple powerpc64-unknown-linux-gnu
> or
> -ccc-host-triple powerpc-unknown-linux-gnu
So LLVM isn't biarch capable? Meaning one LLVM compiler cannot
generate both
2012 May 12
0
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
...e integer and fp registers. Looking at how
> llvm does that shows:
>
> ...
> lis 3, 56
> ori 3, 3, 57680
> stwx 16, 31, 3
> lis 3, 56
> ori 3, 3, 57684
> stwx 17, 31, 3
> lis 3, 56
> ori 3, 3, 57688
> stwx 18, 31, 3
> lis 3, 56
> ori 3, 3, 57692
> stwx 19, 31, 3
> lis 3, 56
> ori 3, 3, 57696
> stwx 20, 31, 3
> lis 3, 56
> ori 3, 3, 57700
> stwx 21, 31, 3
> [repeated over and...
2012 May 01
4
[LLVMdev] [cfe-dev] Odd PPC inline asm constraint
On Tue, 01 May 2012 17:23:07 -0500
Peter Bergner <bergner at vnet.ibm.com> wrote:
> On Tue, 2012-05-01 at 16:06 -0500, Hal Finkel wrote:
> > LLVM/clang now will build in the normal way (./configure; make
> > install) on PPC (you'll need at least the 3.1 release candidate (or
> > trunk)). I generally build on my PPC64 hosts with:
> > make ENABLE_OPTIMIZED=1