Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 269 for Atack (0.04 sec)

  1. src/runtime/stkframe.go

    	sp   uintptr // stack pointer at pc
    	fp   uintptr // stack pointer at caller aka frame pointer
    	varp uintptr // top of local variables
    	argp uintptr // pointer to function arguments
    }
    
    // reflectMethodValue is a partial duplicate of reflect.makeFuncImpl
    // and reflect.methodValue.
    type reflectMethodValue struct {
    	fn     uintptr
    	stack  *bitvector // ptrmap for both args and results
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/wasm/wasmobj.go

    				// we'll write the result to the Go stack relative to the current stack pointer.
    				// We cache the current stack pointer value on the wasm stack here and then use
    				// it after the Call instruction to store the result.
    				p = appendp(p, AGet, regAddr(REG_SP))
    			}
    			for _, f := range wi.Params {
    				// Each load instructions will consume the value of sp on the stack, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. src/cmd/trace/regions.go

    		Type:  r.Name,
    	}
    }
    
    func regionTopStackFrame(r *trace.UserRegionSummary) trace.StackFrame {
    	var frame trace.StackFrame
    	if r.Start != nil && r.Start.Stack() != trace.NoStack {
    		r.Start.Stack().Frames(func(f trace.StackFrame) bool {
    			frame = f
    			return false
    		})
    	}
    	return frame
    }
    
    type regionStats struct {
    	regionFingerprint
    	Histogram traceviewer.TimeHistogram
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/runtime/os_freebsd.go

    func newosproc(mp *m) {
    	stk := unsafe.Pointer(mp.g0.stack.hi)
    	if false {
    		print("newosproc stk=", stk, " m=", mp, " g=", mp.g0, " thr_start=", abi.FuncPCABI0(thr_start), " id=", mp.id, " ostk=", &mp, "\n")
    	}
    
    	param := thrparam{
    		start_func: abi.FuncPCABI0(thr_start),
    		arg:        unsafe.Pointer(mp),
    		stack_base: mp.g0.stack.lo,
    		stack_size: uintptr(stk) - mp.g0.stack.lo,
    		child_tid:  nil, // minit will record tid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/testx.go

    				}
    				if strings.Contains(trace[1+2*i], wantFunc) {
    					return
    				}
    			}
    			t.Errorf("bad stack: didn't find %s in the stack:\n%s", wantFunc, goroutine)
    			return
    		}
    	}
    	t.Errorf("bad stack: goroutine not found. Full stack dump:\n%s", trace)
    }
    
    func issue7978wait(store uint32, wait uint32) {
    	if store != 0 {
    		atomic.StoreUint32(&issue7978sync, store)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/internal/trace/testtrace/validation.go

    					ctx.G = id
    					state.binding = ctx
    				}
    			} else if old.Executing() && !new.Executing() {
    				if tr.Stack != ev.Stack() {
    					// This is a case where the transition is happening to a goroutine that is also executing, so
    					// these two stacks should always match.
    					e.Errorf("StateTransition.Stack doesn't match Event.Stack")
    				}
    				ctx := state.binding
    				if ctx != nil {
    					if ctx.G != id {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/os_windows.go

    }
    
    func gFromSP(mp *m, sp uintptr) *g {
    	if gp := mp.g0; gp != nil && gp.stack.lo < sp && sp < gp.stack.hi {
    		return gp
    	}
    	if gp := mp.gsignal; gp != nil && gp.stack.lo < sp && sp < gp.stack.hi {
    		return gp
    	}
    	if gp := mp.curg; gp != nil && gp.stack.lo < sp && sp < gp.stack.hi {
    		return gp
    	}
    	return nil
    }
    
    func profileLoop() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. src/runtime/select.go

    	// There are unlocked sudogs that point into gp's stack. Stack
    	// copying must lock the channels of those sudogs.
    	// Set activeStackChans here instead of before we try parking
    	// because we could self-deadlock in stack growth on a
    	// channel lock.
    	gp.activeStackChans = true
    	// Mark that it's safe for stack shrinking to occur now,
    	// because any thread acquiring this G's stack for shrinking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	mark := make([]markKind, f.NumBlocks())
    	stack := []backedgesState{}
    
    	mark[f.Entry.ID] = notExplored
    	stack = append(stack, backedgesState{f.Entry, 0})
    
    	for len(stack) > 0 {
    		l := len(stack)
    		x := stack[l-1]
    		if x.i < len(x.b.Succs) {
    			e := x.b.Succs[x.i]
    			stack[l-1].i++
    			s := e.b
    			if mark[s.ID] == notFound {
    				mark[s.ID] = notExplored
    				stack = append(stack, backedgesState{s, 0})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. src/runtime/pprof/proto.go

    	//	data[2] = count
    	//	data[3:3+n] = stack
    	// If the count is 0 and the stack has length 1,
    	// that's an overflow record inserted by the runtime
    	// to indicate that stack[0] samples were lost.
    	// Otherwise the count is usually 1,
    	// but in a few special cases like lost non-Go samples
    	// there can be larger counts.
    	// Because many samples with the same stack arrive,
    	// we want to deduplicate immediately, which we do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top