Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for secondselect (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (FCMPD x (FMOVDconst [0])) => (FCMPD0 x)
    (FCMPD (FMOVDconst [0]) x) => (InvertFlags (FCMPD0 x))
    
    // CSEL needs a flag-generating argument. Synthesize a TSTW if necessary.
    (CondSelect x y boolval) && flagArg(boolval) != nil => (CSEL [boolval.Op] x y flagArg(boolval))
    (CondSelect x y boolval) && flagArg(boolval) == nil => (CSEL [OpARM64NotEqual] x y (TSTWconst [1] boolval))
    
    (OffPtr [off] ptr:(SP)) && is32Bit(off) => (MOVDaddr [int32(off)] ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		return rewriteValueLOONG64_OpCom16(v)
    	case OpCom32:
    		return rewriteValueLOONG64_OpCom32(v)
    	case OpCom64:
    		return rewriteValueLOONG64_OpCom64(v)
    	case OpCom8:
    		return rewriteValueLOONG64_OpCom8(v)
    	case OpCondSelect:
    		return rewriteValueLOONG64_OpCondSelect(v)
    	case OpConst16:
    		return rewriteValueLOONG64_OpConst16(v)
    	case OpConst32:
    		return rewriteValueLOONG64_OpConst32(v)
    	case OpConst32F:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteWasm.go

    	case OpCom16:
    		return rewriteValueWasm_OpCom16(v)
    	case OpCom32:
    		return rewriteValueWasm_OpCom32(v)
    	case OpCom64:
    		return rewriteValueWasm_OpCom64(v)
    	case OpCom8:
    		return rewriteValueWasm_OpCom8(v)
    	case OpCondSelect:
    		v.Op = OpWasmSelect
    		return true
    	case OpConst16:
    		return rewriteValueWasm_OpConst16(v)
    	case OpConst32:
    		return rewriteValueWasm_OpConst32(v)
    	case OpConst32F:
    		v.Op = OpWasmF32Const
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
Back to top