Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for tracebackPCs (0.29 sec)

  1. src/runtime/asm_386.s

    	MOVL	AX, g(CX)
    	MOVL	(g_sched+gobuf_sp)(AX), SP
    	MOVL	$0, (g_sched+gobuf_sp)(AX)
    	RET
    
    noswitch:
    	// already on system stack; tail call the function
    	// Using a tail call here cleans up tracebacks since we won't stop
    	// at an intermediate systemstack.
    	MOVL	DI, DX
    	MOVL	0(DI), DI
    	JMP	DI
    
    bad:
    	// Bad: g is not gsignal, not g0, not curg. What is it?
    	// Hide call from linker nosplit analysis.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/runtime/asm_arm64.s

    	MOVD	(g_sched+gobuf_bp)(g), R29
    	MOVD	$0, (g_sched+gobuf_sp)(g)
    	MOVD	$0, (g_sched+gobuf_bp)(g)
    	RET
    
    noswitch:
    	// already on m stack, just call directly
    	// Using a tail call here cleans up tracebacks since we won't stop
    	// at an intermediate systemstack.
    	MOVD	0(R26), R3	// code pointer
    	MOVD.P	16(RSP), R30	// restore LR
    	SUB	$8, RSP, R29	// restore FP
    	B	(R3)
    
    // func switchToCrashStack0(fn func())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	MOVQ	(g_sched+gobuf_bp)(AX), BP
    	MOVQ	$0, (g_sched+gobuf_sp)(AX)
    	MOVQ	$0, (g_sched+gobuf_bp)(AX)
    	RET
    
    noswitch:
    	// already on m stack; tail call the function
    	// Using a tail call here cleans up tracebacks since we won't stop
    	// at an intermediate systemstack.
    	MOVQ	DI, DX
    	MOVQ	0(DI), DI
    	// The function epilogue is not called on a tail call.
    	// Pop BP from the stack to simulate it.
    	POPQ	BP
    	JMP	DI
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. fastapi/applications.py

        ```
        """
    
        def __init__(
            self: AppType,
            *,
            debug: Annotated[
                bool,
                Doc(
                    """
                    Boolean indicating if debug tracebacks should be returned on server
                    errors.
    
                    Read more in the
                    [Starlette docs for Applications](https://www.starlette.io/applications/#instantiating-the-application).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top