2015-09-10 09:25:58 -06:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
// +build linux
|
|
|
|
// +build mips64 mips64le
|
|
|
|
|
|
|
|
//
|
|
|
|
// System calls and other sys.stuff for mips64, Linux
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "go_asm.h"
|
|
|
|
#include "go_tls.h"
|
|
|
|
#include "textflag.h"
|
|
|
|
|
2018-02-13 09:07:54 -07:00
|
|
|
#define AT_FDCWD -100
|
|
|
|
|
2015-09-10 09:25:58 -06:00
|
|
|
#define SYS_exit 5058
|
|
|
|
#define SYS_read 5000
|
|
|
|
#define SYS_write 5001
|
|
|
|
#define SYS_close 5003
|
|
|
|
#define SYS_getpid 5038
|
|
|
|
#define SYS_kill 5060
|
|
|
|
#define SYS_fcntl 5080
|
|
|
|
#define SYS_mmap 5009
|
|
|
|
#define SYS_munmap 5011
|
|
|
|
#define SYS_setitimer 5036
|
|
|
|
#define SYS_clone 5055
|
2018-04-20 16:30:52 -06:00
|
|
|
#define SYS_nanosleep 5034
|
2015-09-10 09:25:58 -06:00
|
|
|
#define SYS_sched_yield 5023
|
|
|
|
#define SYS_rt_sigreturn 5211
|
|
|
|
#define SYS_rt_sigaction 5013
|
|
|
|
#define SYS_rt_sigprocmask 5014
|
|
|
|
#define SYS_sigaltstack 5129
|
|
|
|
#define SYS_madvise 5027
|
|
|
|
#define SYS_mincore 5026
|
|
|
|
#define SYS_gettid 5178
|
|
|
|
#define SYS_tkill 5192
|
|
|
|
#define SYS_futex 5194
|
|
|
|
#define SYS_sched_getaffinity 5196
|
|
|
|
#define SYS_exit_group 5205
|
|
|
|
#define SYS_epoll_create 5207
|
|
|
|
#define SYS_epoll_ctl 5208
|
2018-02-13 09:07:54 -07:00
|
|
|
#define SYS_openat 5247
|
2018-02-08 08:59:17 -07:00
|
|
|
#define SYS_epoll_pwait 5272
|
2015-09-10 09:25:58 -06:00
|
|
|
#define SYS_clock_gettime 5222
|
|
|
|
#define SYS_epoll_create1 5285
|
2017-04-06 12:32:37 -06:00
|
|
|
#define SYS_brk 5012
|
2015-09-10 09:25:58 -06:00
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·exit(SB),NOSPLIT|NOFRAME,$0-4
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW code+0(FP), R4
|
|
|
|
MOVV $SYS_exit_group, R2
|
|
|
|
SYSCALL
|
|
|
|
RET
|
|
|
|
|
runtime: make it possible to exit Go-created threads
Currently, threads created by the runtime exist until the whole
program exits. For #14592 and #20395, we want to be able to exit and
clean up threads created by the runtime. This commit implements that
mechanism.
The main difficulty is how to clean up the g0 stack. In cgo mode and
on Solaris and Windows where the OS manages thread stacks, we simply
arrange to return from mstart and let the system clean up the thread.
If the runtime allocated the g0 stack, then we use a new exitThread
syscall wrapper that arranges to clear a flag in the M once the stack
can safely be reaped and call the thread termination syscall.
exitThread is based on the existing exit1 wrapper, which was always
meant to terminate the calling thread. However, exit1 has never been
used since it was introduced 9 years ago, so it was broken on several
platforms. exitThread also has the additional complication of having
to flag that the stack is unused, which requires some tricks on
platforms that use the stack for syscalls.
This still leaves the problem of how to reap the unused g0 stacks. For
this, we move the M from allm to a new freem list as part of the M
exiting. Later, allocm scans the freem list, finds Ms that are marked
as done with their stack, removes these from the list and frees their
g0 stacks. This also allows these Ms to be garbage collected.
This CL does not yet use any of this functionality. Follow-up CLs
will. Likewise, there are no new tests in this CL because we'll need
follow-up functionality to test it.
Change-Id: Ic851ee74227b6d39c6fc1219fc71b45d3004bc63
Reviewed-on: https://go-review.googlesource.com/46037
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
2017-06-16 13:54:21 -06:00
|
|
|
// func exitThread(wait *uint32)
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-8
|
runtime: make it possible to exit Go-created threads
Currently, threads created by the runtime exist until the whole
program exits. For #14592 and #20395, we want to be able to exit and
clean up threads created by the runtime. This commit implements that
mechanism.
The main difficulty is how to clean up the g0 stack. In cgo mode and
on Solaris and Windows where the OS manages thread stacks, we simply
arrange to return from mstart and let the system clean up the thread.
If the runtime allocated the g0 stack, then we use a new exitThread
syscall wrapper that arranges to clear a flag in the M once the stack
can safely be reaped and call the thread termination syscall.
exitThread is based on the existing exit1 wrapper, which was always
meant to terminate the calling thread. However, exit1 has never been
used since it was introduced 9 years ago, so it was broken on several
platforms. exitThread also has the additional complication of having
to flag that the stack is unused, which requires some tricks on
platforms that use the stack for syscalls.
This still leaves the problem of how to reap the unused g0 stacks. For
this, we move the M from allm to a new freem list as part of the M
exiting. Later, allocm scans the freem list, finds Ms that are marked
as done with their stack, removes these from the list and frees their
g0 stacks. This also allows these Ms to be garbage collected.
This CL does not yet use any of this functionality. Follow-up CLs
will. Likewise, there are no new tests in this CL because we'll need
follow-up functionality to test it.
Change-Id: Ic851ee74227b6d39c6fc1219fc71b45d3004bc63
Reviewed-on: https://go-review.googlesource.com/46037
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
2017-06-16 13:54:21 -06:00
|
|
|
MOVV wait+0(FP), R1
|
|
|
|
// We're done using the stack.
|
|
|
|
MOVW $0, R2
|
|
|
|
SYNC
|
|
|
|
MOVW R2, (R1)
|
|
|
|
SYNC
|
|
|
|
MOVW $0, R4 // exit code
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV $SYS_exit, R2
|
|
|
|
SYSCALL
|
runtime: make it possible to exit Go-created threads
Currently, threads created by the runtime exist until the whole
program exits. For #14592 and #20395, we want to be able to exit and
clean up threads created by the runtime. This commit implements that
mechanism.
The main difficulty is how to clean up the g0 stack. In cgo mode and
on Solaris and Windows where the OS manages thread stacks, we simply
arrange to return from mstart and let the system clean up the thread.
If the runtime allocated the g0 stack, then we use a new exitThread
syscall wrapper that arranges to clear a flag in the M once the stack
can safely be reaped and call the thread termination syscall.
exitThread is based on the existing exit1 wrapper, which was always
meant to terminate the calling thread. However, exit1 has never been
used since it was introduced 9 years ago, so it was broken on several
platforms. exitThread also has the additional complication of having
to flag that the stack is unused, which requires some tricks on
platforms that use the stack for syscalls.
This still leaves the problem of how to reap the unused g0 stacks. For
this, we move the M from allm to a new freem list as part of the M
exiting. Later, allocm scans the freem list, finds Ms that are marked
as done with their stack, removes these from the list and frees their
g0 stacks. This also allows these Ms to be garbage collected.
This CL does not yet use any of this functionality. Follow-up CLs
will. Likewise, there are no new tests in this CL because we'll need
follow-up functionality to test it.
Change-Id: Ic851ee74227b6d39c6fc1219fc71b45d3004bc63
Reviewed-on: https://go-review.googlesource.com/46037
Run-TryBot: Austin Clements <austin@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@golang.org>
2017-06-16 13:54:21 -06:00
|
|
|
JMP 0(PC)
|
2015-09-10 09:25:58 -06:00
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·open(SB),NOSPLIT|NOFRAME,$0-20
|
2018-02-08 08:59:17 -07:00
|
|
|
// This uses openat instead of open, because Android O blocks open.
|
2018-02-13 09:07:54 -07:00
|
|
|
MOVW $AT_FDCWD, R4 // AT_FDCWD, so this acts like open
|
2018-02-08 08:59:17 -07:00
|
|
|
MOVV name+0(FP), R5
|
|
|
|
MOVW mode+8(FP), R6
|
|
|
|
MOVW perm+12(FP), R7
|
|
|
|
MOVV $SYS_openat, R2
|
2015-09-10 09:25:58 -06:00
|
|
|
SYSCALL
|
|
|
|
BEQ R7, 2(PC)
|
|
|
|
MOVW $-1, R2
|
|
|
|
MOVW R2, ret+16(FP)
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·closefd(SB),NOSPLIT|NOFRAME,$0-12
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW fd+0(FP), R4
|
|
|
|
MOVV $SYS_close, R2
|
|
|
|
SYSCALL
|
|
|
|
BEQ R7, 2(PC)
|
|
|
|
MOVW $-1, R2
|
|
|
|
MOVW R2, ret+8(FP)
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·write(SB),NOSPLIT|NOFRAME,$0-28
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV fd+0(FP), R4
|
|
|
|
MOVV p+8(FP), R5
|
|
|
|
MOVW n+16(FP), R6
|
|
|
|
MOVV $SYS_write, R2
|
|
|
|
SYSCALL
|
|
|
|
BEQ R7, 2(PC)
|
|
|
|
MOVW $-1, R2
|
|
|
|
MOVW R2, ret+24(FP)
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·read(SB),NOSPLIT|NOFRAME,$0-28
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW fd+0(FP), R4
|
|
|
|
MOVV p+8(FP), R5
|
|
|
|
MOVW n+16(FP), R6
|
|
|
|
MOVV $SYS_read, R2
|
|
|
|
SYSCALL
|
|
|
|
BEQ R7, 2(PC)
|
|
|
|
MOVW $-1, R2
|
|
|
|
MOVW R2, ret+24(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
TEXT runtime·usleep(SB),NOSPLIT,$16-4
|
|
|
|
MOVWU usec+0(FP), R3
|
|
|
|
MOVV R3, R5
|
|
|
|
MOVW $1000000, R4
|
|
|
|
DIVVU R4, R3
|
|
|
|
MOVV LO, R3
|
|
|
|
MOVV R3, 8(R29)
|
2018-04-20 16:30:52 -06:00
|
|
|
MOVW $1000, R4
|
2015-09-10 09:25:58 -06:00
|
|
|
MULVU R3, R4
|
|
|
|
MOVV LO, R4
|
|
|
|
SUBVU R4, R5
|
|
|
|
MOVV R5, 16(R29)
|
|
|
|
|
2018-04-20 16:30:52 -06:00
|
|
|
// nanosleep(&ts, 0)
|
|
|
|
ADDV $8, R29, R4
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW $0, R5
|
2018-04-20 16:30:52 -06:00
|
|
|
MOVV $SYS_nanosleep, R2
|
2015-09-10 09:25:58 -06:00
|
|
|
SYSCALL
|
|
|
|
RET
|
|
|
|
|
|
|
|
TEXT runtime·gettid(SB),NOSPLIT,$0-4
|
|
|
|
MOVV $SYS_gettid, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, ret+0(FP)
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·raise(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV $SYS_gettid, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, R4 // arg 1 tid
|
|
|
|
MOVW sig+0(FP), R5 // arg 2
|
|
|
|
MOVV $SYS_tkill, R2
|
|
|
|
SYSCALL
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·raiseproc(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV $SYS_getpid, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, R4 // arg 1 pid
|
|
|
|
MOVW sig+0(FP), R5 // arg 2
|
|
|
|
MOVV $SYS_kill, R2
|
|
|
|
SYSCALL
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·setitimer(SB),NOSPLIT|NOFRAME,$0-24
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW mode+0(FP), R4
|
|
|
|
MOVV new+8(FP), R5
|
|
|
|
MOVV old+16(FP), R6
|
|
|
|
MOVV $SYS_setitimer, R2
|
|
|
|
SYSCALL
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·mincore(SB),NOSPLIT|NOFRAME,$0-28
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV addr+0(FP), R4
|
|
|
|
MOVV n+8(FP), R5
|
|
|
|
MOVV dst+16(FP), R6
|
|
|
|
MOVV $SYS_mincore, R2
|
|
|
|
SYSCALL
|
2016-02-10 22:46:51 -07:00
|
|
|
SUBVU R2, R0, R2 // caller expects negative errno
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW R2, ret+24(FP)
|
|
|
|
RET
|
|
|
|
|
2017-02-02 14:20:58 -07:00
|
|
|
// func walltime() (sec int64, nsec int32)
|
|
|
|
TEXT runtime·walltime(SB),NOSPLIT,$16
|
2016-10-27 07:22:43 -06:00
|
|
|
MOVW $0, R4 // CLOCK_REALTIME
|
|
|
|
MOVV $0(R29), R5
|
|
|
|
MOVV $SYS_clock_gettime, R2
|
2015-09-10 09:25:58 -06:00
|
|
|
SYSCALL
|
|
|
|
MOVV 0(R29), R3 // sec
|
2016-10-27 07:22:43 -06:00
|
|
|
MOVV 8(R29), R5 // nsec
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV R3, sec+0(FP)
|
|
|
|
MOVW R5, nsec+8(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
TEXT runtime·nanotime(SB),NOSPLIT,$16
|
|
|
|
MOVW $1, R4 // CLOCK_MONOTONIC
|
|
|
|
MOVV $0(R29), R5
|
|
|
|
MOVV $SYS_clock_gettime, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVV 0(R29), R3 // sec
|
|
|
|
MOVV 8(R29), R5 // nsec
|
|
|
|
// sec is in R3, nsec in R5
|
|
|
|
// return nsec in R3
|
|
|
|
MOVV $1000000000, R4
|
|
|
|
MULVU R4, R3
|
|
|
|
MOVV LO, R3
|
|
|
|
ADDVU R5, R3
|
|
|
|
MOVV R3, ret+0(FP)
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·rtsigprocmask(SB),NOSPLIT|NOFRAME,$0-28
|
2016-09-23 18:54:51 -06:00
|
|
|
MOVW how+0(FP), R4
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV new+8(FP), R5
|
|
|
|
MOVV old+16(FP), R6
|
|
|
|
MOVW size+24(FP), R7
|
|
|
|
MOVV $SYS_rt_sigprocmask, R2
|
|
|
|
SYSCALL
|
|
|
|
BEQ R7, 2(PC)
|
|
|
|
MOVV R0, 0xf1(R0) // crash
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·rt_sigaction(SB),NOSPLIT|NOFRAME,$0-36
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV sig+0(FP), R4
|
|
|
|
MOVV new+8(FP), R5
|
|
|
|
MOVV old+16(FP), R6
|
|
|
|
MOVV size+24(FP), R7
|
|
|
|
MOVV $SYS_rt_sigaction, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, ret+32(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
|
|
|
|
MOVW sig+8(FP), R4
|
|
|
|
MOVV info+16(FP), R5
|
|
|
|
MOVV ctx+24(FP), R6
|
2016-04-27 20:18:24 -06:00
|
|
|
MOVV fn+0(FP), R25
|
|
|
|
JAL (R25)
|
2015-09-10 09:25:58 -06:00
|
|
|
RET
|
|
|
|
|
|
|
|
TEXT runtime·sigtramp(SB),NOSPLIT,$64
|
2016-04-27 20:18:02 -06:00
|
|
|
// initialize REGSB = PC&0xffffffff00000000
|
|
|
|
BGEZAL R0, 1(PC)
|
|
|
|
SRLV $32, R31, RSB
|
|
|
|
SLLV $32, RSB
|
|
|
|
|
2015-09-10 09:25:58 -06:00
|
|
|
// this might be called in external code context,
|
|
|
|
// where g is not set.
|
|
|
|
MOVB runtime·iscgo(SB), R1
|
|
|
|
BEQ R1, 2(PC)
|
|
|
|
JAL runtime·load_g(SB)
|
|
|
|
|
|
|
|
MOVW R4, 8(R29)
|
|
|
|
MOVV R5, 16(R29)
|
|
|
|
MOVV R6, 24(R29)
|
|
|
|
MOVV $runtime·sigtrampgo(SB), R1
|
|
|
|
JAL (R1)
|
|
|
|
RET
|
|
|
|
|
2015-12-11 18:16:48 -07:00
|
|
|
TEXT runtime·cgoSigtramp(SB),NOSPLIT,$0
|
2016-04-27 20:18:02 -06:00
|
|
|
JMP runtime·sigtramp(SB)
|
2015-12-11 18:16:48 -07:00
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·mmap(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV addr+0(FP), R4
|
|
|
|
MOVV n+8(FP), R5
|
|
|
|
MOVW prot+16(FP), R6
|
|
|
|
MOVW flags+20(FP), R7
|
|
|
|
MOVW fd+24(FP), R8
|
|
|
|
MOVW off+28(FP), R9
|
|
|
|
|
|
|
|
MOVV $SYS_mmap, R2
|
|
|
|
SYSCALL
|
2017-10-16 18:28:29 -06:00
|
|
|
BEQ R7, ok
|
|
|
|
MOVV $0, p+32(FP)
|
|
|
|
MOVV R2, err+40(FP)
|
|
|
|
RET
|
|
|
|
ok:
|
|
|
|
MOVV R2, p+32(FP)
|
|
|
|
MOVV $0, err+40(FP)
|
2015-09-10 09:25:58 -06:00
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·munmap(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV addr+0(FP), R4
|
|
|
|
MOVV n+8(FP), R5
|
|
|
|
MOVV $SYS_munmap, R2
|
|
|
|
SYSCALL
|
|
|
|
BEQ R7, 2(PC)
|
|
|
|
MOVV R0, 0xf3(R0) // crash
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·madvise(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV addr+0(FP), R4
|
|
|
|
MOVV n+8(FP), R5
|
|
|
|
MOVW flags+16(FP), R6
|
|
|
|
MOVV $SYS_madvise, R2
|
|
|
|
SYSCALL
|
|
|
|
// ignore failure - maybe pages are locked
|
|
|
|
RET
|
|
|
|
|
|
|
|
// int64 futex(int32 *uaddr, int32 op, int32 val,
|
|
|
|
// struct timespec *timeout, int32 *uaddr2, int32 val2);
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·futex(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV addr+0(FP), R4
|
|
|
|
MOVW op+8(FP), R5
|
|
|
|
MOVW val+12(FP), R6
|
|
|
|
MOVV ts+16(FP), R7
|
|
|
|
MOVV addr2+24(FP), R8
|
|
|
|
MOVW val3+32(FP), R9
|
|
|
|
MOVV $SYS_futex, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, ret+40(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// int64 clone(int32 flags, void *stk, M *mp, G *gp, void (*fn)(void));
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW flags+0(FP), R4
|
|
|
|
MOVV stk+8(FP), R5
|
|
|
|
|
|
|
|
// Copy mp, gp, fn off parent stack for use by child.
|
|
|
|
// Careful: Linux system call clobbers ???.
|
2016-07-11 17:05:57 -06:00
|
|
|
MOVV mp+16(FP), R16
|
|
|
|
MOVV gp+24(FP), R17
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV fn+32(FP), R18
|
|
|
|
|
|
|
|
MOVV R16, -8(R5)
|
|
|
|
MOVV R17, -16(R5)
|
|
|
|
MOVV R18, -24(R5)
|
|
|
|
MOVV $1234, R16
|
|
|
|
MOVV R16, -32(R5)
|
|
|
|
|
|
|
|
MOVV $SYS_clone, R2
|
|
|
|
SYSCALL
|
|
|
|
|
|
|
|
// In parent, return.
|
|
|
|
BEQ R2, 3(PC)
|
|
|
|
MOVW R2, ret+40(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// In child, on new stack.
|
|
|
|
MOVV -32(R29), R16
|
|
|
|
MOVV $1234, R1
|
|
|
|
BEQ R16, R1, 2(PC)
|
|
|
|
MOVV R0, 0(R0)
|
|
|
|
|
|
|
|
// Initialize m->procid to Linux tid
|
|
|
|
MOVV $SYS_gettid, R2
|
|
|
|
SYSCALL
|
|
|
|
|
|
|
|
MOVV -24(R29), R18 // fn
|
|
|
|
MOVV -16(R29), R17 // g
|
|
|
|
MOVV -8(R29), R16 // m
|
|
|
|
|
|
|
|
BEQ R16, nog
|
|
|
|
BEQ R17, nog
|
|
|
|
|
|
|
|
MOVV R2, m_procid(R16)
|
|
|
|
|
|
|
|
// TODO: setup TLS.
|
|
|
|
|
|
|
|
// In child, set up new stack
|
|
|
|
MOVV R16, g_m(R17)
|
|
|
|
MOVV R17, g
|
|
|
|
//CALL runtime·stackcheck(SB)
|
|
|
|
|
|
|
|
nog:
|
|
|
|
// Call fn
|
|
|
|
JAL (R18)
|
|
|
|
|
|
|
|
// It shouldn't return. If it does, exit that thread.
|
|
|
|
MOVW $111, R4
|
|
|
|
MOVV $SYS_exit, R2
|
|
|
|
SYSCALL
|
|
|
|
JMP -3(PC) // keep exiting
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·sigaltstack(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV new+0(FP), R4
|
|
|
|
MOVV old+8(FP), R5
|
|
|
|
MOVV $SYS_sigaltstack, R2
|
|
|
|
SYSCALL
|
|
|
|
BEQ R7, 2(PC)
|
|
|
|
MOVV R0, 0xf1(R0) // crash
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·osyield(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV $SYS_sched_yield, R2
|
|
|
|
SYSCALL
|
|
|
|
RET
|
|
|
|
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·sched_getaffinity(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVV pid+0(FP), R4
|
|
|
|
MOVV len+8(FP), R5
|
|
|
|
MOVV buf+16(FP), R6
|
|
|
|
MOVV $SYS_sched_getaffinity, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, ret+24(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// int32 runtime·epollcreate(int32 size);
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·epollcreate(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW size+0(FP), R4
|
|
|
|
MOVV $SYS_epoll_create, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, ret+8(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// int32 runtime·epollcreate1(int32 flags);
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·epollcreate1(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW flags+0(FP), R4
|
|
|
|
MOVV $SYS_epoll_create1, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVW R2, ret+8(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// func epollctl(epfd, op, fd int32, ev *epollEvent) int
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·epollctl(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW epfd+0(FP), R4
|
|
|
|
MOVW op+4(FP), R5
|
|
|
|
MOVW fd+8(FP), R6
|
|
|
|
MOVV ev+16(FP), R7
|
|
|
|
MOVV $SYS_epoll_ctl, R2
|
|
|
|
SYSCALL
|
2018-01-23 00:56:24 -07:00
|
|
|
SUBVU R2, R0, R2 // caller expects negative errno
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW R2, ret+24(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// int32 runtime·epollwait(int32 epfd, EpollEvent *ev, int32 nev, int32 timeout);
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·epollwait(SB),NOSPLIT|NOFRAME,$0
|
2018-02-08 08:59:17 -07:00
|
|
|
// This uses pwait instead of wait, because Android O blocks wait.
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW epfd+0(FP), R4
|
|
|
|
MOVV ev+8(FP), R5
|
|
|
|
MOVW nev+16(FP), R6
|
|
|
|
MOVW timeout+20(FP), R7
|
2018-02-08 08:59:17 -07:00
|
|
|
MOVV $0, R8
|
|
|
|
MOVV $SYS_epoll_pwait, R2
|
2015-09-10 09:25:58 -06:00
|
|
|
SYSCALL
|
|
|
|
MOVW R2, ret+24(FP)
|
|
|
|
RET
|
|
|
|
|
|
|
|
// void runtime·closeonexec(int32 fd);
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·closeonexec(SB),NOSPLIT|NOFRAME,$0
|
2015-09-10 09:25:58 -06:00
|
|
|
MOVW fd+0(FP), R4 // fd
|
|
|
|
MOVV $2, R5 // F_SETFD
|
|
|
|
MOVV $1, R6 // FD_CLOEXEC
|
|
|
|
MOVV $SYS_fcntl, R2
|
|
|
|
SYSCALL
|
|
|
|
RET
|
2017-04-06 12:32:37 -06:00
|
|
|
|
|
|
|
// func sbrk0() uintptr
|
2018-01-25 10:15:23 -07:00
|
|
|
TEXT runtime·sbrk0(SB),NOSPLIT|NOFRAME,$0-8
|
2017-04-06 12:32:37 -06:00
|
|
|
// Implemented as brk(NULL).
|
|
|
|
MOVV $0, R4
|
|
|
|
MOVV $SYS_brk, R2
|
|
|
|
SYSCALL
|
|
|
|
MOVV R2, ret+0(FP)
|
|
|
|
RET
|