Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/codegen/condmove.go

    }
    
    func cmovuintptr(x, y uintptr) uintptr {
    	if x < y {
    		x = -y
    	}
    	// amd64:"CMOVQ(HI|CS)"
    	// arm64:"CSNEG\tLS"
    	// ppc64x:"ISEL\t[$]1"
    	// wasm:"Select"
    	return x
    }
    
    func cmov32bit(x, y uint32) uint32 {
    	if x < y {
    		x = -y
    	}
    	// amd64:"CMOVL(HI|CS)"
    	// arm64:"CSNEG\t(LS|HS)"
    	// ppc64x:"ISEL\t[$]1"
    	// wasm:"Select"
    	return x
    }
    
    func cmov16bit(x, y uint16) uint16 {
    	if x < y {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:57:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/anames.go

    	"CRC32CW",
    	"CRC32CX",
    	"CRC32H",
    	"CRC32W",
    	"CRC32X",
    	"CSEL",
    	"CSELW",
    	"CSET",
    	"CSETM",
    	"CSETMW",
    	"CSETW",
    	"CSINC",
    	"CSINCW",
    	"CSINV",
    	"CSINVW",
    	"CSNEG",
    	"CSNEGW",
    	"DC",
    	"DCPS1",
    	"DCPS2",
    	"DCPS3",
    	"DMB",
    	"DRPS",
    	"DSB",
    	"DWORD",
    	"EON",
    	"EONW",
    	"EOR",
    	"EORW",
    	"ERET",
    	"EXTR",
    	"EXTRW",
    	"FABSD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/doc.go

    	CCMPW HS, R19, R14, $11    <=>    ccmp w19, w14, #0xb, cs
    
    (9) CSEL, CSELW, CSNEG, CSNEGW, CSINC, CSINCW <cond>, <Rn>, <Rm>, <Rd> ;
    FCSELD, FCSELS <cond>, <Fn>, <Fm>, <Fd>
    
    Examples:
    
    	CSEL GT, R0, R19, R1        <=>    csel x1, x0, x19, gt
    	CSNEGW GT, R7, R17, R8      <=>    csneg w8, w7, w17, gt
    	FCSELD EQ, F15, F18, F16    <=>    fcsel d16, d15, d18, eq
    
    (10) TBNZ, TBZ $<imm>, <Rt>, <label>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top