Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	case MOVDQU:
    		if countPrefix(&inst, 0xF3) > 1 {
    			unmarkImplicit(&inst, 0xF3)
    			markLastImplicit(&inst, 0xF3)
    		}
    
    	case MOVQ2DQ:
    		markLastImplicit(&inst, PrefixDataSize)
    
    	case SLDT, SMSW, STR, FXRSTOR, XRSTOR, XSAVE, XSAVEOPT, CMPXCHG8B:
    		if isMem(inst.Args[0]) {
    			unmarkImplicit(&inst, PrefixDataSize)
    		}
    
    	case SYSEXIT:
    		unmarkImplicit(&inst, PrefixDataSize)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*1295*/ uint16(xMatch),
    	/*1296*/ uint16(xCondDataSize), 1300, 1304, 1308,
    	/*1300*/ uint16(xSetOp), uint16(SMSW),
    	/*1302*/ uint16(xArgRM16),
    	/*1303*/ uint16(xMatch),
    	/*1304*/ uint16(xSetOp), uint16(SMSW),
    	/*1306*/ uint16(xArgR32M16),
    	/*1307*/ uint16(xMatch),
    	/*1308*/ uint16(xSetOp), uint16(SMSW),
    	/*1310*/ uint16(xArgR64M16),
    	/*1311*/ uint16(xMatch),
    	/*1312*/ uint16(xSetOp), uint16(LMSW),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	// lldt, sldt
    	{AMOVW, Yml, Ynone, Yldtr, movMemReg2op, [4]uint8{0x0f, 0x00, 2, 0}},
    	{AMOVW, Yldtr, Ynone, Yml, movRegMem2op, [4]uint8{0x0f, 0x00, 0, 0}},
    
    	// lmsw, smsw
    	{AMOVW, Yml, Ynone, Ymsw, movMemReg2op, [4]uint8{0x0f, 0x01, 6, 0}},
    	{AMOVW, Ymsw, Ynone, Yml, movRegMem2op, [4]uint8{0x0f, 0x01, 4, 0}},
    
    	// ltr, str
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top