Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for topofstack (0.1 sec)

  1. src/runtime/asm_loong64.s

    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	UNDEF
    	JAL	(R1)	// make sure this function is not leaf
    	RET
    
    // func systemstack(fn func())
    TEXT runtime·systemstack(SB), NOSPLIT, $0-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. src/runtime/asm_mipsx.s

    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    TEXT runtime·systemstack_switch(SB),NOSPLIT,$0-0
    	UNDEF
    	JAL	(R31)	// make sure this function is not leaf
    	RET
    
    // func systemstack(fn func())
    TEXT runtime·systemstack(SB),NOSPLIT,$0-4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	// We have several undefs here so that 16 bytes past
    	// $runtime·systemstack_switch lies within them whether or not the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/runtime/asm_arm64.s

    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	UNDEF
    	BL	(LR)	// make sure this function is not leaf
    	RET
    
    // func systemstack(fn func())
    TEXT runtime·systemstack(SB), NOSPLIT, $0-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    // The frame layout needs to match systemstack
    // so that it can pretend to be systemstack_switch.
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	UNDEF
    	// Make sure this function is not leaf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top