Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for _rt0_amd64_darwin_lib (0.24 sec)

  1. src/runtime/rt0_ios_amd64.s

    // ios/amd64 only supports external linking.
    TEXT _rt0_amd64_ios(SB),NOSPLIT|NOFRAME,$0
    	UNDEF
    
    // library entry point.
    TEXT _rt0_amd64_ios_lib(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:13:24 UTC 2020
    - 425 bytes
    - Viewed (0)
  2. src/runtime/rt0_darwin_amd64.s

    #include "textflag.h"
    
    TEXT _rt0_amd64_darwin(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    // When linking with -shared, this symbol is called when the shared library
    // is loaded.
    TEXT _rt0_amd64_darwin_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 399 bytes
    - Viewed (0)
  3. src/runtime/rt0_ios_arm64.s

    // ios/arm64 only supports external linking.
    TEXT _rt0_arm64_ios(SB),NOSPLIT|NOFRAME,$0
    	UNDEF
    
    // library entry point.
    TEXT _rt0_arm64_ios_lib(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:31:05 UTC 2020
    - 425 bytes
    - Viewed (0)
  4. src/runtime/rt0_darwin_arm64.s

    // this symbol is called from a global initialization function.
    //
    // Note that all currently shipping darwin/arm64 platforms require
    // cgo and do not support c-shared.
    TEXT _rt0_arm64_darwin_lib(SB),NOSPLIT,$152
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(8)
    	SAVE_F8_TO_F15(88)
    
    	MOVD  R0, _rt0_arm64_darwin_lib_argc<>(SB)
    	MOVD  R1, _rt0_arm64_darwin_lib_argv<>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top