Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _rt0_amd64 (0.22 sec)

  1. src/runtime/rt0_windows_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    TEXT _rt0_amd64_windows(SB),NOSPLIT|NOFRAME,$-8
    	JMP	_rt0_amd64(SB)
    
    // When building with -buildmode=(c-shared or c-archive), this
    // symbol is called. For dynamic libraries it is called when the
    // library is loaded. For static libraries it is called when the
    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/asm_amd64.s

    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    #include "cgo/abi_amd64.h"
    
    // _rt0_amd64 is common startup code for most amd64 systems when using
    // internal linking. This is the entry point for the program from the
    // kernel for an ordinary -buildmode=exe program. The stack holds the
    // number of arguments and the C-style argv.
    TEXT _rt0_amd64(SB),NOSPLIT,$-8
    	MOVQ	0(SP), DI	// argc
    	LEAQ	8(SP), SI	// argv
    	JMP	runtime·rt0_go(SB)
    
    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