Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CMOVQPS (0.08 sec)

  1. test/codegen/condmove.go

    	// 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
    func frexp(f float64) (frac float64, exp int) {
    	return 1.0, 4
    }
    
    //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. src/cmd/internal/obj/x86/anames.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	CMOVLPS R11, R11                        // 450f4adb
    	CMOVQPS (BX), DX                        // 480f4a13
    	CMOVQPS (R11), DX                       // 490f4a13
    	CMOVQPS DX, DX                          // 480f4ad2
    	CMOVQPS R11, DX                         // 490f4ad3
    	CMOVQPS (BX), R11                       // 4c0f4a1b
    	CMOVQPS (R11), R11                      // 4d0f4a1b
    	CMOVQPS DX, R11                         // 4c0f4ada
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
Back to top