Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 125 for traceback (0.26 sec)

  1. src/cmd/internal/obj/s390x/objz.go

    			}
    
    			if autosize != 0 {
    				// Make sure to save link register for non-empty frame, even if
    				// it is a leaf function, so that traceback works.
    				// Store link register before decrementing SP, so if a signal comes
    				// during the execution of the function prologue, the traceback
    				// code will not see a half-updated stack frame.
    				// This sequence is not async preemptible, as if we open a frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. src/runtime/HACKING.md

    For runtime error debugging, it may be useful to run with `GOTRACEBACK=system`
    or `GOTRACEBACK=crash`. The output of `panic` and `fatal` is as described by
    `GOTRACEBACK`. The output of `throw` always includes runtime frames, metadata
    and all goroutines regardless of `GOTRACEBACK` (i.e., equivalent to
    `GOTRACEBACK=system`). Whether `throw` crashes or not is still controlled by
    `GOTRACEBACK`.
    
    Synchronization
    ===============
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    	}
    
    	level, all, docrash := gotraceback()
    	if level > 0 {
    		if gp != gp.m.curg {
    			all = true
    		}
    		if gp != gp.m.g0 {
    			print("\n")
    			goroutineheader(gp)
    			traceback(pc, sp, 0, gp)
    		} else if level >= 2 || gp.m.throwing >= throwTypeRuntime {
    			print("\nruntime stack:\n")
    			traceback(pc, sp, 0, gp)
    		}
    		if !didothers && all {
    			didothers = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/runtime/asm_386.s

    	CALL	AX
    
    	// should never return
    	CALL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/runtime/extern.go

    or the failure is internal to the run-time.
    GOTRACEBACK=none omits the goroutine stack traces entirely.
    GOTRACEBACK=single (the default) behaves as described above.
    GOTRACEBACK=all adds stack traces for all user-created goroutines.
    GOTRACEBACK=system is like “all” but adds stack frames for run-time functions
    and shows goroutines created internally by the run-time.
    GOTRACEBACK=crash is like “system” but crashes in an operating system-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    	dwarfDebugLinesSym *LSym
    
    	GCArgs             *LSym
    	GCLocals           *LSym
    	StackObjects       *LSym
    	OpenCodedDeferInfo *LSym
    	ArgInfo            *LSym // argument info for traceback
    	ArgLiveInfo        *LSym // argument liveness info for traceback
    	WrapInfo           *LSym // for wrapper, info of wrapped function
    	JumpTables         []JumpTable
    
    	FuncInfoSym   *LSym
    	WasmImportSym *LSym
    	WasmImport    *WasmImport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // R3: framesize, R4: argsize, R5: LR
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/obj0.go

    			q = p
    
    			if autosize != 0 {
    				// Make sure to save link register for non-empty frame, even if
    				// it is a leaf function, so that traceback works.
    				// Store link register before decrement SP, so if a signal comes
    				// during the execution of the function prologue, the traceback
    				// code will not see a half-updated stack frame.
    				// This sequence is not async preemptible, as if we open a frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_arm.s

    	// so switch to g0.
    
    	// Save old SP. Use R13 instead of SP to avoid linker rewriting the offsets.
    	MOVW	R13, R5
    
    	MOVW	g_m(g), R6
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    	// Save the old values on stack and restore them on exit,
    	// so this function is reentrant.
    	MOVW	m_vdsoPC(R6), R7
    	MOVW	m_vdsoSP(R6), R8
    	MOVW	R7, 4(R13)
    	MOVW	R8, 8(R13)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/runtime/debuglog.go

    //go:nosplit
    func (l *dlogger) pc(x uintptr) *dlogger {
    	if !dlogEnabled {
    		return l
    	}
    	l.w.byte(debugLogPC)
    	l.w.uvarint(uint64(x))
    	return l
    }
    
    //go:nosplit
    func (l *dlogger) traceback(x []uintptr) *dlogger {
    	if !dlogEnabled {
    		return l
    	}
    	l.w.byte(debugLogTraceback)
    	l.w.uvarint(uint64(len(x)))
    	for _, pc := range x {
    		l.w.uvarint(uint64(pc))
    	}
    	return l
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top