Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getcallersp (0.22 sec)

  1. src/runtime/proc.go

    //go:nosplit
    //go:linkname entersyscall
    func entersyscall() {
    	// N.B. getcallerfp cannot be written directly as argument in the call
    	// to reentersyscall because it forces spilling the other arguments to
    	// the stack. This results in exceeding the nosplit stack requirements
    	// on some platforms.
    	fp := getcallerfp()
    	reentersyscall(getcallerpc(), getcallersp(), fp)
    }
    
    func entersyscall_sysmon() {
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (IsInBounds      idx len) => (LessThanU  (CMP idx len))
    (IsSliceInBounds idx len) => (LessEqualU (CMP idx len))
    
    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP   ...) => (LoweredGetCallerSP   ...)
    (GetCallerPC   ...) => (LoweredGetCallerPC   ...)
    
    // Absorb pseudo-ops into blocks.
    (If (Equal         cc) yes no) => (EQ cc yes no)
    (If (NotEqual      cc) yes no) => (NE cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Note: Usage of the return value of this function may not be interleaved
      // with insertions to the callers map. This could occur if GetCallers is
      // called with two separate functions, the 2nd one incurs a resize and then
      // both first and 2nd stored callers are used.
      ArrayRef<Operation*> GetCallers(func::FuncOp fn);
    
      // Mapping between ValuePort (which corresponds to an OpResult or smaller,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. 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)
Back to top