Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getcallersp (0.24 sec)

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

    		},
    		all...)
    
    	add("runtime", "getcallerpc",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue0(ssa.OpGetCallerPC, s.f.Config.Types.Uintptr)
    		},
    		all...)
    
    	add("runtime", "getcallersp",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpGetCallerSP, s.f.Config.Types.Uintptr, s.mem())
    		},
    		all...)
    
    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

    	case OpFMA:
    		v.Op = OpPPC64FMADD
    		return true
    	case OpFloor:
    		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:
    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