search for: aghi

Displaying 12 results from an estimated 12 matches for "aghi".

Did you mean: abhi
2007 Apr 18
0
[patch 2/9] Guest page hinting: unused / free pages on s390.
...s64.S 2006-09-01 12:49:25.000000000 +0200 +++ linux-2.6-patched/arch/s390/lib/uaccess64.S 2006-09-01 12:49:36.000000000 +0200 @@ -20,14 +20,14 @@ __copy_from_user_asm: slgr %r0,%r0 0: mvcp 0(%r3,%r2),0(%r4),%r0 - jnz 1f +7: jnz 1f slgr %r2,%r2 br %r14 1: la %r2,256(%r2) la %r4,256(%r4) aghi %r3,-256 2: mvcp 0(%r3,%r2),0(%r4),%r0 - jnz 1b +8: jnz 1b 3: slgr %r2,%r2 br %r14 4: lghi %r0,-4096 @@ -39,13 +39,16 @@ __copy_from_user_asm: jnh 6f # no, the current page faulted # move with the reduced length which is < 256 5: mvcp 0(%r5,%r2),0(%r4),%r0 - slgr %r3,%r5 +9: slgr %r3,...
2007 Apr 18
0
[patch 2/9] Guest page hinting: unused / free pages on s390.
...s64.S 2006-09-01 12:49:25.000000000 +0200 +++ linux-2.6-patched/arch/s390/lib/uaccess64.S 2006-09-01 12:49:36.000000000 +0200 @@ -20,14 +20,14 @@ __copy_from_user_asm: slgr %r0,%r0 0: mvcp 0(%r3,%r2),0(%r4),%r0 - jnz 1f +7: jnz 1f slgr %r2,%r2 br %r14 1: la %r2,256(%r2) la %r4,256(%r4) aghi %r3,-256 2: mvcp 0(%r3,%r2),0(%r4),%r0 - jnz 1b +8: jnz 1b 3: slgr %r2,%r2 br %r14 4: lghi %r0,-4096 @@ -39,13 +39,16 @@ __copy_from_user_asm: jnh 6f # no, the current page faulted # move with the reduced length which is < 256 5: mvcp 0(%r5,%r2),0(%r4),%r0 - slgr %r3,%r5 +9: slgr %r3,...
2010 May 13
1
[LLVMdev] Attention: About to Break SystemZ and possibly other Back Ends
...c/test/CodeGen/SystemZ/2009-07-10-BadIncomingArgOffset.ll" .text .globl mp_mul_radix_test_bb3 .align 2 .type mp_mul_radix_test_bb3, at function mp_mul_radix_test_bb3: # @mp_mul_radix_test_bb3 # BB#0: # %newFuncRoot stmg %r6, %r15, 48(%r15) aghi %r15, -160 # kill: R3W<def> R3D<kill> lr %r12, %r2 lg %r11, 328(%r15) lg %r1, 320(%r15) lgr %r10, %r4 lgfr %r9, %r3 lghi %r3, -1 lgr %r2, %r9 lgr %r4, %r1 brasl %r14, rdft lgfr %r2, %r12 lgr %r3, %r9 lgr %r4, %r10 brasl %r14, mp_mul_d...
2019 Feb 08
2
Unfolded additions of constants after promotion of @llvm.ctlz.i16 on SystemZ
Hi, SystemZ supports @llvm.ctlz.i64() natively with a single instruction (FLOGR), and lesser bitwidth versions of the intrinsic are promoted to i64. For some reason, this leads to unfolded additions of constants as shown below: This function: define i16 @fun(i16 %arg) {   %1 = tail call i16 @llvm.ctlz.i16(i16 %arg, i1 false)   ret i16 %1 } ,gives this optimized DAG as input to instruction
2009 Feb 26
2
BUG: Mount/Unmount Loop
...000003e000701000 000003e00075be40 000003e000715ec6 0000000016e33798 [ 121.451044] Krnl Code: 00000000002af5a8: e31020000004 lg %r1,0(%r2) [ 121.451068] 00000000002af5ae: b9040031 lgr %r3,%r1 [ 121.451093] 00000000002af5b2: a73b0001 aghi %r3,1 [ 121.451124] >00000000002af5b6: eb1320000030 csg %r1,%r3,0(%r2) [ 121.451150] 00000000002af5bc: a744fff9 brc 4,2af5ae [ 121.451175] 00000000002af5c0: b9020011 ltgr %r1,%r1 [ 121.451199] 00000000002af...
2006 May 11
0
[patch] klibc: merge s390 and s390x
...sr/klibc/arch/s390/crt0.S 2006-05-11 08:10:07.000000000 +0200 @@ -11,6 +11,9 @@ .align 4 .type _start,@function .globl _start + +#ifndef __s390x__ + _start: lr %r2,%r15 lhi %r3,0 @@ -21,5 +24,12 @@ _start: br %r1 .L1: .long __libc_init +#else +_start: + lgr %r2,%r15 + lghi %r3,0 + aghi %r15,-160 + jg __libc_init +#endif .size _start,.-_start diff -purN a/usr/klibc/arch/s390/mmap.c b/usr/klibc/arch/s390/mmap.c --- a/usr/klibc/arch/s390/mmap.c 2006-05-11 08:09:08.000000000 +0200 +++ b/usr/klibc/arch/s390/mmap.c 2006-05-11 08:10:07.000000000 +0200 @@ -10,6 +10,8 @@ struct mmap_arg...
2006 May 24
1
[patch] klibc: merge s390/s390x 2nd try
...sr/klibc/arch/s390/crt0.S 2006-05-24 13:02:18.000000000 +0200 @@ -11,6 +11,9 @@ .align 4 .type _start,@function .globl _start + +#ifndef __s390x__ + _start: lr %r2,%r15 lhi %r3,0 @@ -21,5 +24,12 @@ _start: br %r1 .L1: .long __libc_init +#else +_start: + lgr %r2,%r15 + lghi %r3,0 + aghi %r15,-160 + jg __libc_init +#endif .size _start,.-_start diff -purN a/usr/klibc/arch/s390/mmap.c b/usr/klibc/arch/s390/mmap.c --- a/usr/klibc/arch/s390/mmap.c 2006-05-24 15:19:12.000000000 +0200 +++ b/usr/klibc/arch/s390/mmap.c 2006-05-24 13:08:52.000000000 +0200 @@ -10,6 +10,8 @@ struct mmap_arg...
2006 Jun 26
0
[klibc 33/43] s390 support for klibc
...it.c for the expected +# arguments. +# + .text + .align 4 + .type _start, at function + .globl _start + +#ifndef __s390x__ + +_start: + lr %r2,%r15 + lhi %r3,0 + ahi %r15,-96 + bras %r1,.L0 +.L0: + l %r1,.L1-.L0(%r1) + br %r1 +.L1: + .long __libc_init +#else + +_start: + lgr %r2,%r15 + lghi %r3,0 + aghi %r15,-160 + jg __libc_init +#endif + .size _start,.-_start diff --git a/usr/klibc/arch/s390/mmap.c b/usr/klibc/arch/s390/mmap.c new file mode 100644 index 0000000..4c43779 --- /dev/null +++ b/usr/klibc/arch/s390/mmap.c @@ -0,0 +1,75 @@ +#include <errno.h> +#include <sys/types.h> +#inclu...
2004 Nov 25
4
kernel configuration and tc commands for traffic shaping
Hi, I wished to shape the traffic that cross my ppp0 interface so I asked around and google''d a bit and I headed in the LARTC HOWTO. As stated in the early in the text, as the title implies, that is an "Advanced" HOWTO and while by no means rocket science, some prior knowledge is assumed. Unfortunately I found myself lost very soon and I''m writing here in hope
2016 Oct 06
2
LoopVectorizer -- generating bad and unhandled shufflevector sequence
...hg %v1, %v3, %v1 vmrlg %v3, %v1, %v4 vst %v3, 32(%r9) vmrhg %v0, %v0, %v2 vst %v0, 16(%r9) vmrhg %v0, %v1, %v4 vst %v0, 0(%r9) la %r9, 64(%r9) la %r8, 64(%r8) la %r7, 64(%r7) aghi %r13, -2 jne .LBB0_141 Final scalar loop : .LBB0_152: # %while.body320 # =>This Inner Loop Header: Depth=1 lg %r13, 0(%r14) ng %r13, 0(%r5) stg %r13, 0(%r4) lg...
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at:
2010 Aug 30
1
compiling speex for symbian
Hi, I want to compile speex for use with my symbian mobile application. I am unable to find a step by step guide to complete this compile. I have found 2-3 posts on the mailing lists that talk about problems related to compiling for the symbian platform. I tried the fixes suggested but I am still confused. Do I need to modify/add any source files? Please provide a step by step guide.