Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getclosureptr (0.23 sec)

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

    			s.vars[memVar] = s.newValue2(ssa.OpKeepAlive, types.TypeMem, data, s.mem())
    			return nil
    		},
    		all...)
    	add("runtime", "getclosureptr",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue0(ssa.OpGetClosurePtr, s.f.Config.Types.Uintptr)
    		},
    		all...)
    
    	add("runtime", "getcallerpc",
    		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

    		v.Op = OpPPC64FFLOOR
    		return true
    	case OpGetCallerPC:
    		v.Op = OpPPC64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpPPC64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpPPC64LoweredGetClosurePtr
    		return true
    	case OpHmul32:
    		v.Op = OpPPC64MULHW
    		return true
    	case OpHmul32u:
    		v.Op = OpPPC64MULHWU
    		return true
    	case OpHmul64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top