Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MOVSX (0.04 sec)

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

    	needSuffix := true
    SuffixLoop:
    	for i, a := range inst.Args {
    		if a == nil {
    			break
    		}
    		switch a := a.(type) {
    		case Reg:
    			switch inst.Op {
    			case MOVSX, MOVZX:
    				continue
    
    			case SHL, SHR, RCL, RCR, ROL, ROR, SAR:
    				if i == 1 {
    					// shift count does not tell us operand size
    					continue
    				}
    
    			case CRC32:
    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

    	/*6799*/ uint16(xCondIs64), 6802, 6818,
    	/*6802*/ uint16(xCondDataSize), 6806, 6812, 0,
    	/*6806*/ uint16(xSetOp), uint16(MOVSX),
    	/*6808*/ uint16(xReadSlashR),
    	/*6809*/ uint16(xArgR16),
    	/*6810*/ uint16(xArgRM8),
    	/*6811*/ uint16(xMatch),
    	/*6812*/ uint16(xSetOp), uint16(MOVSX),
    	/*6814*/ uint16(xReadSlashR),
    	/*6815*/ uint16(xArgR32),
    	/*6816*/ uint16(xArgRM8),
    	/*6817*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
Back to top