Displaying 3 results from an estimated 3 matches for "f0038ac".
Did you mean:
  00038c
  
2013 Dec 03
0
[PATCH 2/2] ppc64: build with -mcmodel=small
...ailable, use -mcmodel=small. klibc is small enough that we
should never hit the limits of the small memory model.
This produces better code, for example:
000000000f003890 <.strcasecmp>:
f003890:       3c a2 ff fe     addis   r5,r2,-2
...
f003898:       38 c5 23 58     addi    r6,r5,9048
...
f0038ac:       7d 46 50 ae     lbzx    r10,r6,r10
vs:
000000000f0037c4 <.strcasecmp>:
f0037c4:       e8 c2 81 48     ld      r6,-32440(r2)
f0037dc:       7d 46 50 ae     lbzx    r10,r6,r10
Signed-off-by: Anton Blanchard <anton at samba.org>
---
 usr/klibc/arch/ppc64/MCONFIG | 1 +
 1 file cha...
2013 Dec 03
0
[klibc:master] ppc64: build with -mcmodel=small
...ailable, use -mcmodel=small. klibc is small enough that we
should never hit the limits of the small memory model.
This produces better code, for example:
000000000f003890 <.strcasecmp>:
f003890:       3c a2 ff fe     addis   r5,r2,-2
...
f003898:       38 c5 23 58     addi    r6,r5,9048
...
f0038ac:       7d 46 50 ae     lbzx    r10,r6,r10
vs:
000000000f0037c4 <.strcasecmp>:
f0037c4:       e8 c2 81 48     ld      r6,-32440(r2)
f0037dc:       7d 46 50 ae     lbzx    r10,r6,r10
Signed-off-by: Anton Blanchard <anton at samba.org>
Signed-off-by: H. Peter Anvin <hpa at zytor.com&...
2013 Dec 03
2
[PATCH 1/2] ppc64: Add ppc64le support
Add PowerPC 64bit little endian support.
Signed-off-by: Anton Blanchard <anton at samba.org>
---
 Makefile                        |  7 +++++--
 usr/klibc/arch/ppc64/MCONFIG    |  4 ++--
 usr/klibc/arch/ppc64/crt0.S     | 34 ++++++++++++++++++++-----------
 usr/klibc/arch/ppc64/setjmp.S   | 40 ++++++++++++++++++++++++++----------
 usr/klibc/arch/ppc64/sysstub.ph | 45