Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for optsFunc (0.77 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/rewriteS390X.go

    	case OpSub8:
    		v.Op = OpS390XSUBW
    		return true
    	case OpSubPtr:
    		v.Op = OpS390XSUB
    		return true
    	case OpTailCall:
    		v.Op = OpS390XCALLtail
    		return true
    	case OpTrunc:
    		return rewriteValueS390X_OpTrunc(v)
    	case OpTrunc16to8:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to16:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to8:
    		v.Op = OpCopy
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
Back to top