Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ASUBW (0.05 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    func isADDop(op obj.As) bool {
    	switch op {
    	case AADD, AADDS, ASUB, ASUBS, ACMN, ACMP:
    		return true
    	}
    	return false
    }
    
    func isADDWop(op obj.As) bool {
    	switch op {
    	case AADDW, AADDSW, ASUBW, ASUBSW, ACMNW, ACMPW:
    		return true
    	}
    	return false
    }
    
    func isADDSop(op obj.As) bool {
    	switch op {
    	case AADDS, AADDSW, ASUBS, ASUBSW:
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    			opset(ARISBHG, r)
    			opset(ARISBLG, r)
    			opset(ARISBHGZ, r)
    			opset(ARISBLGZ, r)
    		case ACSG:
    			opset(ACS, r)
    		case ASUB:
    			opset(ASUBC, r)
    			opset(ASUBE, r)
    			opset(ASUBW, r)
    		case ANEG:
    			opset(ANEGW, r)
    		case AFMOVD:
    			opset(AFMOVS, r)
    		case AMOVDBR:
    			opset(AMOVWBR, r)
    		case ACMP:
    			opset(ACMPW, r)
    		case ACMPU:
    			opset(ACMPWU, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	{ASUBPD, yxm, Pe, opBytes{0x5c}},
    	{ASUBPS, yxm, Pm, opBytes{0x5c}},
    	{ASUBQ, yaddl, Pw, opBytes{0x83, 05, 0x2d, 0x81, 05, 0x29, 0x2b}},
    	{ASUBSD, yxm, Pf2, opBytes{0x5c}},
    	{ASUBSS, yxm, Pf3, opBytes{0x5c}},
    	{ASUBW, yaddl, Pe, opBytes{0x83, 05, 0x2d, 0x81, 05, 0x29, 0x2b}},
    	{ASWAPGS, ynone, Pm, opBytes{0x01, 0xf8}},
    	{ASYSCALL, ynone, Px, opBytes{0x0f, 0x05}}, // fast syscall
    	{ATESTB, yxorb, Pb, opBytes{0xa8, 0xf6, 00, 0x84, 0x84}},
    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