Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for sthux (0.04 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    			cmpstr += "," + args[0]
    		}
    		return cmpstr
    
    	case LIS:
    		return "ADDIS $0," + args[1] + "," + args[0]
    	// store instructions with index registers
    	case STBX, STBUX, STHX, STHUX, STWX, STWUX, STDX, STDUX,
    		STHBRX, STWBRX, STDBRX, STSWX, STFIWX:
    		return "MOV" + op[2:len(op)-1] + " " + args[0] + ",(" + args[2] + ")(" + args[1] + ")"
    
    	case STDCXCC, STWCXCC, STHCXCC, STBCXCC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    	case LWA, LWAX, LWAUX:
    		return true
    	case LD, LDU, LDX, LDUX:
    		return true
    	case LQ:
    		return true
    	case STB, STBU, STBX, STBUX:
    		return true
    	case STH, STHU, STHX, STHUX:
    		return true
    	case STW, STWU, STWX, STWUX:
    		return true
    	case STD, STDU, STDX, STDUX:
    		return true
    	case STQ:
    		return true
    	case LHBRX, LWBRX, STHBRX, STWBRX:
    		return true
    	case LBARX, LWARX, LHARX, LDARX:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	{STHU, 0xfc00000000000000, 0xb400000000000000, 0x0, // Store Halfword with Update D-form (sthu RS,D(RA))
    		[6]*argField{ap_Reg_6_10, ap_Offset_16_31, ap_Reg_11_15}},
    	{STHUX, 0xfc0007fe00000000, 0x7c00036e00000000, 0x100000000, // Store Halfword with Update Indexed X-form (sthux RS,RA,RB)
    		[6]*argField{ap_Reg_6_10, ap_Reg_11_15, ap_Reg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	case AMOVHZ, AMOVH:
    		return OPVCC(31, 407, 0, 0) /* sthx */
    	case AMOVHBR:
    		return OPVCC(31, 918, 0, 0) /* sthbrx */
    
    	case AMOVHZU, AMOVHU:
    		return OPVCC(31, 439, 0, 0) /* sthux */
    
    	case AMOVWZ, AMOVW:
    		return OPVCC(31, 151, 0, 0) /* stwx */
    
    	case AMOVWZU, AMOVWU:
    		return OPVCC(31, 183, 0, 0) /* stwux */
    	case ASTSW:
    		return OPVCC(31, 661, 0, 0) /* stswx */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/doc.go

    	MOVD R4,(R3)		<=>	std r4,0(r3)
    	MOVW R4,(R3)		<=>	stw r4,0(r3)
    	MOVW R4,(R3+R5)		<=>	stwx r4,r3,r5
    	MOVWU R4,4(R3)		<=>	stwu r4,4(r3)
    	MOVH R4,2(R3)		<=>	sth r4,2(r3)
    	MOVBU R4,(R3)(R5)		<=>	stbux r4,r3,r5
    
    4. Compares
    
    When an instruction does a compare or other operation that might
    result in a condition code, then the resulting condition is set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top