Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for displacement (0.03 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VADDPD (CX)(AX*2), X1, X28  // 6261f508582441
    	VADDPD (CX)(AX*2), X29, X28 // 62619500582441
    	VADDPD (CX)(AX*2), X29, X10 // 62719500581441
    	VADDPD (CX)(AX*2), X10, X28 // 6261ad08582441
    	// EVEX: displacement without Disp8.
    	VADDPD 15(AX), X29, X0        // 62f1950058800f000000
    	VADDPD 15(AX), X1, X28        // 6261f50858a00f000000
    	VADDPD 15(AX), X29, X28       // 6261950058a00f000000
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Feb 20 11:20:03 UTC 2025
    - 57.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVB	$-1, n-8(SP)          // 92fff010
    	MOVB	$255, 4096(R4)        // ebff40000152
    	MOVB	$-128, -524288(R5)    // eb8050008052
    	MOVB	$1, -524289(R6)       // c0a1fff7ffff41aa60009201a000
    
    	// RX (12-bit displacement) and RXY (20-bit displacement) instruction encoding (e.g: ST vs STY)
    	MOVW	R1, 4095(R2)(R3)       // 50132fff
    	MOVW	R1, 4096(R2)(R3)       // e31320000150
    	MOVWZ	R1, 4095(R2)(R3)       // 50132fff
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jul 30 19:29:15 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    // their valid instruction encodings.
    
    #include "../../../../../runtime/textflag.h"
    
    // In case of index mode instructions, usage of
    // (Rx)(R0) is equivalent to (Rx+R0)
    // In case of base+displacement mode instructions if
    // the offset is 0, usage of (Rx) is equivalent to 0(Rx)
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// move constants
    	MOVD $1, R3                     // 38600001
    	MOVD $-1, R4                    // 3880ffff
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Nov 21 18:27:17 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top