Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SMSW (0.02 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/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