Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for traceback (0.81 sec)

  1. src/runtime/runtime2.go

    	needextram    bool
    	traceback     uint8
    	ncgocall      uint64        // number of cgo calls in total
    	ncgo          int32         // number of cgo calls currently in progress
    	cgoCallersUse atomic.Uint32 // if non-zero, cgoCallers in use temporarily
    	cgoCallers    *cgoCallers   // cgo traceback if crashing in cgo call
    	park          note
    	alllink       *m // on allm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. src/runtime/asm_loong64.s

    	// To save m->curg->sched.pc, we push it onto the stack.
    	// This has the added benefit that it looks to the traceback
    	// routine like cgocallbackg is going to return to that
    	// PC (because the frame we allocate below has the same
    	// size as cgocallback_gofunc's frame declared above)
    	// so that the traceback will seamlessly trace back into
    	// the earlier calls.
    	MOVV	m_curg(R12), g
    	JAL	runtime·save_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_mips64x.s

    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$16-12
    	MOVV	R29, R16	// R16 is unchanged by C code
    	MOVV	R29, R1
    
    	MOVV	g_m(g), R17	// R17 = m
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    	// Save the old values on stack and restore them on exit,
    	// so this function is reentrant.
    	MOVV	m_vdsoPC(R17), R2
    	MOVV	m_vdsoSP(R17), R3
    	MOVV	R2, 8(R29)
    	MOVV	R3, 16(R29)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_loong64.s

    // func walltime() (sec int64, nsec int32)
    TEXT runtime·walltime(SB),NOSPLIT,$24-12
    	MOVV	R3, R23	// R23 is unchanged by C code
    	MOVV	R3, R25
    
    	MOVV	g_m(g), R24	// R24 = m
    
    	// Set vdsoPC and vdsoSP for SIGPROF traceback.
    	// Save the old values on stack and restore them on exit,
    	// so this function is reentrant.
    	MOVV	m_vdsoPC(R24), R11
    	MOVV	m_vdsoSP(R24), R7
    	MOVV	R11, 8(R3)
    	MOVV	R7, 16(R3)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. src/runtime/asm_mips64x.s

    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // R1: framesize, R2: argsize, R3: 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: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  6. src/runtime/symtab_test.go

    // functions (int 3 on amd64) without crashing.
    //
    // Go will never generate a stack trace containing such an address, as it is
    // not a valid call site. However, the cgo traceback function passed to
    // runtime.SetCgoTraceback may not be completely accurate and may incorrect
    // provide PCs in Go code or the alignment region between functions.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. src/runtime/asm_riscv64.s

     */
    
    // Called during function prolog when more stack is needed.
    // Called with return address (i.e. caller's PC) in X5 (aka T0),
    // and the LR register contains the caller's 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: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.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: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/runtime/cpuprof.go

    	// non-Go-created threads. Those stacks are written
    	// to log the next time a normal Go thread gets the
    	// signal handler.
    	// Assuming the stacks are 2 words each (we don't get
    	// a full traceback from those threads), plus one word
    	// size for framing, 100 Hz profiling would generate
    	// 300 words per second.
    	// Hopefully a normal Go thread will get the profiling
    	// signal at least once every few seconds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/runtime/asm_mipsx.s

    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // R1: framesize, R2: argsize, R3: 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: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top