Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Qinv (0.04 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	BLR:       "BLR",
    	BR:        "BR",
    	BRK:       "BRK",
    	BSL:       "BSL",
    	CBNZ:      "CBNZ",
    	CBZ:       "CBZ",
    	CCMN:      "CCMN",
    	CCMP:      "CCMP",
    	CINC:      "CINC",
    	CINV:      "CINV",
    	CLREX:     "CLREX",
    	CLS:       "CLS",
    	CLZ:       "CLZ",
    	CMEQ:      "CMEQ",
    	CMGE:      "CMGE",
    	CMGT:      "CMGT",
    	CMHI:      "CMHI",
    	CMHS:      "CMHS",
    	CMLE:      "CMLE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"CINV","Bits":"0|1|0|1|1|0|1|0|1|0|0|Rm:5|cond:4|0|0|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"CINV <Wd>, <Wn>, <cond>","Code":"","Alias":"This instruction is an alias of the CSINV instruction."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    			rt = REGZERO
    		}
    		if r == obj.REG_NONE {
    			r = REGZERO
    		}
    		o1 |= (uint32(rf&31) << 16) | (uint32(r&31) << 5) | uint32(rt&31)
    
    	case 18: /* csel cond,Rn,Rm,Rd; cinc/cinv/cneg cond,Rn,Rd; cset cond,Rd */
    		o1 = c.oprrr(p, p.As)
    
    		cond := SpecialOperand(p.From.Offset)
    		if cond < SPOP_EQ || cond > SPOP_NV || (cond == SPOP_AL || cond == SPOP_NV) && p.From3Type() == obj.TYPE_NONE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top