Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CMOVQNE (0.11 sec)

  1. test/codegen/condmove.go

    func cmovfloateq(x, y float64) int {
    	a := 128
    	if x == y {
    		a = 256
    	}
    	// amd64:"CMOVQNE","CMOVQPC"
    	// arm64:"CSEL\tEQ"
    	// ppc64x:"ISEL\t[$]2"
    	// wasm:"Select"
    	return a
    }
    
    func cmovfloatne(x, y float64) int {
    	a := 128
    	if x != y {
    		a = 256
    	}
    	// amd64:"CMOVQNE","CMOVQPS"
    	// arm64:"CSEL\tNE"
    	// ppc64x:"ISEL\t[$]2"
    	// wasm:"Select"
    	return a
    }
    
    //go:noinline
    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. test/codegen/bmi.go

    }
    
    func isNotPowerOfTwoSelect64(x, a, b int64) int64 {
    	var r int64
    	// amd64/v3:"BLSRQ",-"TESTQ",-"CALL"
    	if isNotPowerOfTwo64(x) {
    		r = a
    	} else {
    		r = b
    	}
    	// amd64/v3:"CMOVQNE",-"TESTQ",-"CALL"
    	return r * 2 // force return blocks joining
    }
    
    func isNotPowerOfTwoSelect32(x, a, b int32) int32 {
    	var r int32
    	// amd64/v3:"BLSRL",-"TESTL",-"CALL"
    	if isNotPowerOfTwo32(x) {
    		r = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top