Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for optsFunc (0.14 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	addF("math", "Trunc",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpTrunc, types.Types[types.TFLOAT64], args[0])
    		},
    		sys.ARM64, sys.PPC64, sys.S390X, sys.Wasm)
    	addF("math", "Ceil",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritePPC64.go

    		return true
    	case OpSub8:
    		v.Op = OpPPC64SUB
    		return true
    	case OpSubPtr:
    		v.Op = OpPPC64SUB
    		return true
    	case OpTailCall:
    		v.Op = OpPPC64CALLtail
    		return true
    	case OpTrunc:
    		v.Op = OpPPC64FTRUNC
    		return true
    	case OpTrunc16to8:
    		return rewriteValuePPC64_OpTrunc16to8(v)
    	case OpTrunc32to16:
    		return rewriteValuePPC64_OpTrunc32to16(v)
    	case OpTrunc32to8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM64.go

    		return true
    	case OpSub8:
    		v.Op = OpARM64SUB
    		return true
    	case OpSubPtr:
    		v.Op = OpARM64SUB
    		return true
    	case OpTailCall:
    		v.Op = OpARM64CALLtail
    		return true
    	case OpTrunc:
    		v.Op = OpARM64FRINTZD
    		return true
    	case OpTrunc16to8:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to16:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to8:
    		v.Op = OpCopy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    	OpBitRev64
    	OpPopCount8
    	OpPopCount16
    	OpPopCount32
    	OpPopCount64
    	OpRotateLeft64
    	OpRotateLeft32
    	OpRotateLeft16
    	OpRotateLeft8
    	OpSqrt
    	OpSqrt32
    	OpFloor
    	OpCeil
    	OpTrunc
    	OpRound
    	OpRoundToEven
    	OpAbs
    	OpCopysign
    	OpMin64F
    	OpMin32F
    	OpMax64F
    	OpMax32F
    	OpFMA
    	OpPhi
    	OpCopy
    	OpConvert
    	OpConstBool
    	OpConstString
    	OpConstNil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top