Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for _rt0_arm_lib (0.18 sec)

  1. src/runtime/rt0_netbsd_arm.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_arm_netbsd(SB),NOSPLIT,$0
    	B	_rt0_arm(SB)
    
    TEXT _rt0_arm_netbsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 00:40:40 UTC 2017
    - 296 bytes
    - Viewed (0)
  2. src/runtime/rt0_openbsd_arm.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_arm_openbsd(SB),NOSPLIT,$0
    	B	_rt0_arm(SB)
    
    TEXT _rt0_arm_openbsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 00:40:40 UTC 2017
    - 298 bytes
    - Viewed (0)
  3. src/runtime/rt0_freebsd_arm.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_arm_freebsd(SB),NOSPLIT,$0
    	B	_rt0_arm(SB)
    
    TEXT _rt0_arm_freebsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 00:40:40 UTC 2017
    - 298 bytes
    - Viewed (0)
  4. src/runtime/rt0_android_arm.s

    	MOVW		$4(R13), R1    // argv
    	MOVW		$_rt0_arm_linux1(SB), R4
    	B		(R4)
    
    TEXT _rt0_arm_android_lib(SB),NOSPLIT,$0
    	MOVW	$1, R0                          // argc
    	MOVW	$_rt0_arm_android_argv(SB), R1  // **argv
    	B	_rt0_arm_lib(SB)
    
    DATA _rt0_arm_android_argv+0x00(SB)/4,$_rt0_arm_android_argv0(SB)
    DATA _rt0_arm_android_argv+0x04(SB)/4,$0 // end argv
    DATA _rt0_arm_android_argv+0x08(SB)/4,$0 // end envv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 843 bytes
    - Viewed (0)
  5. src/runtime/rt0_linux_arm.s

    	MOVW	$4(R13), R1		// argv
    	MOVW	$_rt0_arm_linux1(SB), R4
    	B		(R4)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_arm_linux_lib(SB),NOSPLIT,$0
    	B	_rt0_arm_lib(SB)
    
    TEXT _rt0_arm_linux1(SB),NOSPLIT|NOFRAME,$0
    	// We first need to detect the kernel ABI, and warn the user
    	// if the system only supports OABI.
    	// The strategy here is to call some EABI syscall to see if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 1007 bytes
    - Viewed (0)
  6. src/runtime/asm_arm.s

    	B	runtime·rt0_go(SB)
    
    // _rt0_arm_lib is common startup code for most ARM systems when
    // using -buildmode=c-archive or -buildmode=c-shared. The linker will
    // arrange to invoke this function as a global constructor (for
    // c-archive) or when the shared library is loaded (for c-shared).
    // We expect argc and argv to be passed in the usual C ABI registers
    // R0 and R1.
    TEXT _rt0_arm_lib(SB),NOSPLIT,$104
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top