Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _rt0_amd64_netbsd_lib (0.57 sec)

  1. src/runtime/rt0_netbsd_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_amd64_netbsd(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_netbsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 309 bytes
    - Viewed (0)
  2. src/runtime/rt0_netbsd_arm64.s

    	MOVD	0(RSP), R0	// argc
    	ADD	$8, RSP, R1	// argv
    	BL	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm64_netbsd_lib(SB),NOSPLIT,$184
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(24)
    	SAVE_F8_TO_F15(104)
    
    	// Initialize g as null in case of using g later e.g. sigaction in cgo_sigaction.go
    	MOVD	ZR, g
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top