mirror of
https://github.com/golang/go
synced 2024-11-19 13:04:45 -07:00
30cb30e596
This adds the _lib entry point to various GOOS_amd64.s files. A future CL will enable c-archive/c-shared mode for those targets. As far as I can tell, the newosproc0 function in os_darwin.go was passing the wrong arguments to bsdthread_create. The newosproc0 function is never called in the current testsuite. Change-Id: Ie7c1c2e326cec87013e0fea84f751091b0ea7f51 Reviewed-on: https://go-review.googlesource.com/69711 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Austin Clements <austin@google.com>
23 lines
754 B
ArmAsm
23 lines
754 B
ArmAsm
// Copyright 2015 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_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)
|
|
DATA _rt0_amd64_android_argv+0x08(SB)/8,$0 // end argv
|
|
DATA _rt0_amd64_android_argv+0x10(SB)/8,$0 // end envv
|
|
DATA _rt0_amd64_android_argv+0x18(SB)/8,$0 // end auxv
|
|
GLOBL _rt0_amd64_android_argv(SB),NOPTR,$0x20
|
|
|
|
DATA _rt0_amd64_android_argv0(SB)/8, $"gojni"
|
|
GLOBL _rt0_amd64_android_argv0(SB),RODATA,$8
|