Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _rt0_amd64_windows_lib (0.45 sec)

  1. src/runtime/rt0_windows_amd64.s

    // final executable starts, during the C runtime initialization
    // phase.
    // Leave space for four pointers on the stack as required
    // by the Windows amd64 calling convention.
    TEXT _rt0_amd64_windows_lib(SB),NOSPLIT|NOFRAME,$40
    	// Create a new thread to do the runtime initialization and return.
    	MOVQ	BX, 32(SP) // callee-saved, preserved across the CALL
    	MOVQ	SP, BX
    	ANDQ	$~15, SP // alignment as per Windows requirement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 19 11:55:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/runtime/rt0_windows_arm64.s

    #include "go_tls.h"
    #include "textflag.h"
    
    // This is the entry point for the program from the
    // kernel for an ordinary -buildmode=exe program.
    TEXT _rt0_arm64_windows(SB),NOSPLIT|NOFRAME,$0
    	B	·rt0_go(SB)
    
    TEXT _rt0_arm64_windows_lib(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$_rt0_arm64_windows_lib_go(SB), R0
    	MOVD	$0, R1
    	MOVD	_cgo_sys_thread_create(SB), R2
    	B	(R2)
    
    TEXT _rt0_arm64_windows_lib_go(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$0, R0
    	MOVD	$0, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 14:25:13 UTC 2023
    - 733 bytes
    - Viewed (0)
Back to top