Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for _rt0_amd64 (0.11 sec)

  1. src/runtime/rt0_illumos_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_illumos(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_illumos_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 16:59:13 UTC 2019
    - 311 bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/rt0_solaris_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_solaris(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_solaris_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 311 bytes
    - Viewed (0)
  4. src/runtime/rt0_dragonfly_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"
    
    // On Dragonfly argc/argv are passed in DI, not SP, so we can't use _rt0_amd64.
    TEXT _rt0_amd64_dragonfly(SB),NOSPLIT,$-8
    	LEAQ	8(DI), SI // argv
    	MOVQ	0(DI), DI // argc
    	JMP	runtime·rt0_go(SB)
    
    TEXT _rt0_amd64_dragonfly_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 04:03:50 UTC 2017
    - 448 bytes
    - Viewed (0)
  5. src/runtime/rt0_linux_amd64.s

    // Copyright 2009 The Go Authors. All rights reserved.
    // 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_linux(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_linux_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 307 bytes
    - Viewed (0)
  6. src/runtime/rt0_openbsd_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_openbsd(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_openbsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 311 bytes
    - Viewed (0)
  7. src/runtime/rt0_android_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_android(SB),NOSPLIT,$-8
    	JMP	_rt0_amd64(SB)
    
    TEXT _rt0_amd64_android_lib(SB),NOSPLIT,$0
    	MOVQ	$1, DI // argc
    	MOVQ	$_rt0_amd64_android_argv(SB), SI  // argv
    	JMP	_rt0_amd64_lib(SB)
    
    DATA _rt0_amd64_android_argv+0x00(SB)/8,$_rt0_amd64_android_argv0(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 754 bytes
    - Viewed (0)
  8. src/runtime/rt0_darwin_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_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)
  9. src/runtime/rt0_freebsd_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"
    
    // On FreeBSD argc/argv are passed in DI, not SP, so we can't use _rt0_amd64.
    TEXT _rt0_amd64_freebsd(SB),NOSPLIT,$-8
    	LEAQ	8(DI), SI // argv
    	MOVQ	0(DI), DI // argc
    	JMP	runtime·rt0_go(SB)
    
    TEXT _rt0_amd64_freebsd_lib(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 21:12:51 UTC 2017
    - 442 bytes
    - Viewed (0)
  10. 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)
Back to top