Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for getcallersp (0.31 sec)

  1. src/cmd/compile/internal/typecheck/typecheck.go

    		n := n.(*ir.UnaryExpr)
    		return tcSPtr(n)
    
    	case ir.OCFUNC:
    		n := n.(*ir.UnaryExpr)
    		n.X = Expr(n.X)
    		n.SetType(types.Types[types.TUINTPTR])
    		return n
    
    	case ir.OGETCALLERPC, ir.OGETCALLERSP:
    		n := n.(*ir.CallExpr)
    		if len(n.Args) != 0 {
    			base.FatalfAt(n.Pos(), "unexpected arguments: %v", n)
    		}
    		n.SetType(types.Types[types.TUINTPTR])
    		return n
    
    	case ir.OCONVNOP:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set.go

    	}
    	rsKey, err := controller.KeyFunc(rs)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %#v: %v", rs, err))
    		return
    	}
    	logger.V(4).Info("Pod deleted", "delete_by", utilruntime.GetCaller(), "deletion_timestamp", pod.DeletionTimestamp, "pod", klog.KObj(pod))
    	rsc.expectations.DeletionObserved(logger, rsKey, controller.PodKey(pod))
    	rsc.queue.Add(rsKey)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},
    
    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    		// See runtime/stubs.go for a more detailed discussion.
    		{name: "LoweredGetCallerPC", reg: gp01, rematerializeable: true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},
    
    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    		// See runtime/stubs.go for a more detailed discussion.
    		{name: "LoweredGetCallerPC", reg: gp01, rematerializeable: true},
    
    		// Constant flag value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    		zeroWidth: true,
    		generic:   true,
    	},
    	{
    		name:    "GetClosurePtr",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "GetCallerPC",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "GetCallerSP",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "PtrIndex",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "OffPtr",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    	case OpEqPtr:
    		return rewriteValueRISCV64_OpEqPtr(v)
    	case OpFMA:
    		v.Op = OpRISCV64FMADDD
    		return true
    	case OpGetCallerPC:
    		v.Op = OpRISCV64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpRISCV64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpRISCV64LoweredGetClosurePtr
    		return true
    	case OpHmul32:
    		return rewriteValueRISCV64_OpHmul32(v)
    	case OpHmul32u:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/compile/internal/ssa/rewriteARM64.go

    	case OpFMA:
    		return rewriteValueARM64_OpFMA(v)
    	case OpFloor:
    		v.Op = OpARM64FRINTMD
    		return true
    	case OpGetCallerPC:
    		v.Op = OpARM64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpARM64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpARM64LoweredGetClosurePtr
    		return true
    	case OpHmul32:
    		return rewriteValueARM64_OpHmul32(v)
    	case OpHmul32u:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	case OpFMA:
    		return rewriteValueAMD64_OpFMA(v)
    	case OpFloor:
    		return rewriteValueAMD64_OpFloor(v)
    	case OpGetCallerPC:
    		v.Op = OpAMD64LoweredGetCallerPC
    		return true
    	case OpGetCallerSP:
    		v.Op = OpAMD64LoweredGetCallerSP
    		return true
    	case OpGetClosurePtr:
    		v.Op = OpAMD64LoweredGetClosurePtr
    		return true
    	case OpGetG:
    		return rewriteValueAMD64_OpGetG(v)
    	case OpHasCPUFeature:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top