Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 263 for Atack (0.04 sec)

  1. test/live.go

    	if m33[byteptr()] == 0 || // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
    		m33[byteptr()] == 0 { // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
    		printnl()
    		return
    	}
    	printnl()
    }
    
    func f37() {
    	if (m33[byteptr()] == 0 || // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
    		m33[byteptr()] == 0) && // ERROR "stack object .autotmp_[0-9]+ interface \{\}"
    		m33[byteptr()] == 0 {
    		printnl()
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. src/reflect/abi_test.go

    	return s
    }
    
    // When called as a method value, i is passed on the stack.
    // When called as a method, i is passed in a register.
    func (m *StructWithMethods) ValueRegMethodSpillInt(s StructFillRegs, i int, _ MagicLastTypeNameForTestingRegisterABI) (StructFillRegs, int) {
    	m.Value = 4
    	return s, i
    }
    
    // When called as a method value, i is passed on the stack.
    // When called as a method, i is passed in a register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 26.4K bytes
    - Viewed (0)
  3. src/runtime/signal_windows.go

    		exit(2)
    	}
    	panicking.Store(1)
    
    	// In case we're handling a g0 stack overflow, blow away the
    	// g0 stack bounds so we have room to print the traceback. If
    	// this somehow overflows the stack, the OS will trap it.
    	g0.stack.lo = 0
    	g0.stackguard0 = g0.stack.lo + stackGuard
    	g0.stackguard1 = g0.stackguard0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/a.out.go

    	REGRT1  = REG_R3  // used during zeroing of the stack - not reserved
    	REGRT2  = REG_R4  // used during zeroing of the stack - not reserved
    	REGTMP  = REG_R10 // scratch register used in the assembler and linker
    	REGTMP2 = REG_R11 // scratch register used in the assembler and linker
    	REGCTXT = REG_R12 // context for closures
    	REGG    = REG_R13 // G
    	REG_LR  = REG_R14 // link register
    	REGSP   = REG_R15 // stack pointer
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/reflect/abi.go

    	// stackPtrs is a bitmap that indicates whether
    	// each word in the ABI stack space (stack-assigned
    	// args + return values) is a pointer. Used
    	// as the heap pointer bitmap for stack space
    	// passed to reflectcall.
    	stackPtrs *bitVector
    
    	// inRegPtrs is a bitmap whose i'th bit indicates
    	// whether the i'th integer argument register contains
    	// a pointer. Used by makeFuncStub and methodValueCall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof.go

    //
    //	goroutine    - stack traces of all current goroutines
    //	heap         - a sampling of memory allocations of live objects
    //	allocs       - a sampling of all past memory allocations
    //	threadcreate - stack traces that led to the creation of new OS threads
    //	block        - stack traces that led to blocking on synchronization primitives
    //	mutex        - stack traces of holders of contended mutexes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. src/internal/trace/generation.go

    	return nil
    }
    
    // validateStackStrings makes sure all the string references in
    // the stack table are present in the string table.
    func validateStackStrings(
    	stacks *dataTable[stackID, stack],
    	strings *dataTable[stringID, string],
    	frames map[uint64]frame,
    ) error {
    	var err error
    	stacks.forEach(func(id stackID, stk stack) bool {
    		for _, pc := range stk.pcs {
    			frame, ok := frames[pc]
    			if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top