Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CSETM (0.02 sec)

  1. test/codegen/condmove.go

    	r1 = x1
    }
    
    func cmovsetm(cond bool, x int) {
    	var x0, x1 int
    
    	if cond {
    		x0 = -1
    	} else {
    		x0 = 0
    	}
    	// arm64:"CSETM\tNE", -"CSEL"
    	r0 = x0
    
    	if cond {
    		x1 = 0
    	} else {
    		x1 = -1
    	}
    	// arm64:"CSETM\tEQ", -"CSEL"
    	r1 = x1
    }
    
    func cmovFcmp0(s, t float64, a, b int) {
    	var x0, x1, x2, x3, x4, x5 int
    
    	if s < t {
    		x0 = a
    	} else {
    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

    	"CMNW",
    	"CMP",
    	"CMPW",
    	"CNEG",
    	"CNEGW",
    	"CRC32B",
    	"CRC32CB",
    	"CRC32CH",
    	"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",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top