2009-03-31 16:45:12 -06:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
//
|
|
|
|
// System calls and other sys.stuff for 386, Linux
|
|
|
|
//
|
|
|
|
|
2009-06-17 16:15:55 -06:00
|
|
|
#include "386/asm.h"
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·exit(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $252, AX // syscall number
|
|
|
|
MOVL 4(SP), BX
|
|
|
|
INT $0x80
|
|
|
|
INT $3 // not reached
|
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·exit1(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $1, AX // exit - exit the current os thread
|
|
|
|
MOVL 4(SP), BX
|
|
|
|
INT $0x80
|
|
|
|
INT $3 // not reached
|
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·write(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $4, AX // syscall - write
|
|
|
|
MOVL 4(SP), BX
|
|
|
|
MOVL 8(SP), CX
|
|
|
|
MOVL 12(SP), DX
|
|
|
|
INT $0x80
|
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·gettime(SB), 7, $32
|
2010-02-08 15:32:22 -07:00
|
|
|
MOVL $78, AX // syscall - gettimeofday
|
|
|
|
LEAL 8(SP), BX
|
|
|
|
MOVL $0, CX
|
|
|
|
MOVL $0, DX
|
|
|
|
INT $0x80
|
|
|
|
|
|
|
|
MOVL 8(SP), BX // sec
|
|
|
|
MOVL sec+0(FP), DI
|
|
|
|
MOVL BX, (DI)
|
|
|
|
MOVL $0, 4(DI) // zero extend 32 -> 64 bits
|
|
|
|
|
|
|
|
MOVL 12(SP), BX // usec
|
|
|
|
MOVL usec+4(FP), DI
|
|
|
|
MOVL BX, (DI)
|
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·rt_sigaction(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $174, AX // syscall - rt_sigaction
|
|
|
|
MOVL 4(SP), BX
|
|
|
|
MOVL 8(SP), CX
|
|
|
|
MOVL 12(SP), DX
|
|
|
|
MOVL 16(SP), SI
|
|
|
|
INT $0x80
|
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·sigtramp(SB),7,$40
|
2010-01-06 18:58:55 -07:00
|
|
|
get_tls(CX)
|
2010-06-12 11:48:04 -06:00
|
|
|
|
|
|
|
// save g
|
|
|
|
MOVL g(CX), BX
|
|
|
|
MOVL BX, 20(SP)
|
|
|
|
|
|
|
|
// g = m->gsignal
|
|
|
|
MOVL m(CX), BX
|
|
|
|
MOVL m_gsignal(BX), BX
|
|
|
|
MOVL BX, g(CX)
|
|
|
|
|
|
|
|
// copy arguments for call to sighandler
|
|
|
|
MOVL sig+0(FP), BX
|
|
|
|
MOVL BX, 0(SP)
|
|
|
|
MOVL info+4(FP), BX
|
|
|
|
MOVL BX, 4(SP)
|
|
|
|
MOVL context+8(FP), BX
|
|
|
|
MOVL BX, 8(SP)
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
CALL runtime·sighandler(SB)
|
2010-06-12 11:48:04 -06:00
|
|
|
|
|
|
|
// restore g
|
|
|
|
get_tls(CX)
|
|
|
|
MOVL 20(SP), BX
|
|
|
|
MOVL BX, g(CX)
|
|
|
|
|
|
|
|
RET
|
2009-03-31 16:45:12 -06:00
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·sigignore(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·sigreturn(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $173, AX // rt_sigreturn
|
|
|
|
INT $0x80
|
|
|
|
INT $3 // not reached
|
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·mmap(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $192, AX // mmap2
|
|
|
|
MOVL 4(SP), BX
|
|
|
|
MOVL 8(SP), CX
|
|
|
|
MOVL 12(SP), DX
|
|
|
|
MOVL 16(SP), SI
|
|
|
|
MOVL 20(SP), DI
|
|
|
|
MOVL 24(SP), BP
|
|
|
|
SHRL $12, BP
|
|
|
|
INT $0x80
|
|
|
|
CMPL AX, $0xfffff001
|
2009-11-13 11:08:51 -07:00
|
|
|
JLS 3(PC)
|
|
|
|
NOTL AX
|
|
|
|
INCL AX
|
2009-03-31 16:45:12 -06:00
|
|
|
RET
|
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·munmap(SB),7,$0
|
2010-09-07 07:57:22 -06:00
|
|
|
MOVL $91, AX // munmap
|
|
|
|
MOVL 4(SP), BX
|
|
|
|
MOVL 8(SP), CX
|
|
|
|
INT $0x80
|
|
|
|
CMPL AX, $0xfffff001
|
|
|
|
JLS 2(PC)
|
|
|
|
INT $3
|
|
|
|
RET
|
|
|
|
|
2009-06-17 16:15:55 -06:00
|
|
|
// int32 futex(int32 *uaddr, int32 op, int32 val,
|
2009-03-31 16:45:12 -06:00
|
|
|
// struct timespec *timeout, int32 *uaddr2, int32 val2);
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·futex(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $240, AX // futex
|
|
|
|
MOVL 4(SP), BX
|
|
|
|
MOVL 8(SP), CX
|
|
|
|
MOVL 12(SP), DX
|
|
|
|
MOVL 16(SP), SI
|
|
|
|
MOVL 20(SP), DI
|
|
|
|
MOVL 24(SP), BP
|
|
|
|
INT $0x80
|
|
|
|
RET
|
|
|
|
|
2009-06-17 16:15:55 -06:00
|
|
|
// int32 clone(int32 flags, void *stack, M *m, G *g, void (*fn)(void));
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·clone(SB),7,$0
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $120, AX // clone
|
|
|
|
MOVL flags+4(SP), BX
|
|
|
|
MOVL stack+8(SP), CX
|
2009-06-17 16:15:55 -06:00
|
|
|
MOVL $0, DX // parent tid ptr
|
|
|
|
MOVL $0, DI // child tid ptr
|
2009-03-31 16:45:12 -06:00
|
|
|
|
|
|
|
// Copy m, g, fn off parent stack for use by child.
|
2009-06-17 16:15:55 -06:00
|
|
|
SUBL $16, CX
|
|
|
|
MOVL mm+12(SP), SI
|
|
|
|
MOVL SI, 0(CX)
|
|
|
|
MOVL gg+16(SP), SI
|
|
|
|
MOVL SI, 4(CX)
|
|
|
|
MOVL fn+20(SP), SI
|
|
|
|
MOVL SI, 8(CX)
|
|
|
|
MOVL $1234, 12(CX)
|
|
|
|
|
2009-03-31 16:45:12 -06:00
|
|
|
INT $0x80
|
|
|
|
|
|
|
|
// In parent, return.
|
|
|
|
CMPL AX, $0
|
|
|
|
JEQ 2(PC)
|
|
|
|
RET
|
|
|
|
|
2009-06-17 16:15:55 -06:00
|
|
|
// Paranoia: check that SP is as we expect.
|
|
|
|
MOVL 12(SP), BP
|
|
|
|
CMPL BP, $1234
|
|
|
|
JEQ 2(PC)
|
|
|
|
INT $3
|
2009-03-31 16:45:12 -06:00
|
|
|
|
2009-06-17 16:15:55 -06:00
|
|
|
// Initialize AX to Linux tid
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $224, AX
|
|
|
|
INT $0x80
|
|
|
|
|
2009-06-17 16:15:55 -06:00
|
|
|
// In child on new stack. Reload registers (paranoia).
|
|
|
|
MOVL 0(SP), BX // m
|
|
|
|
MOVL 4(SP), DX // g
|
2010-07-17 17:54:03 -06:00
|
|
|
MOVL 8(SP), SI // fn
|
2009-06-17 16:15:55 -06:00
|
|
|
|
|
|
|
MOVL AX, m_procid(BX) // save tid as m->procid
|
|
|
|
|
|
|
|
// set up ldt 7+id to point at m->tls.
|
2010-07-17 17:54:03 -06:00
|
|
|
// newosproc left the id in tls[0].
|
2009-06-17 16:15:55 -06:00
|
|
|
LEAL m_tls(BX), BP
|
|
|
|
MOVL 0(BP), DI
|
|
|
|
ADDL $7, DI // m0 is LDT#7. count up.
|
|
|
|
// setldt(tls#, &tls, sizeof tls)
|
|
|
|
PUSHAL // save registers
|
|
|
|
PUSHL $32 // sizeof tls
|
|
|
|
PUSHL BP // &tls
|
|
|
|
PUSHL DI // tls #
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
CALL runtime·setldt(SB)
|
2009-06-17 16:15:55 -06:00
|
|
|
POPL AX
|
|
|
|
POPL AX
|
|
|
|
POPL AX
|
|
|
|
POPAL
|
|
|
|
|
|
|
|
// Now segment is established. Initialize m, g.
|
2010-01-06 18:58:55 -07:00
|
|
|
get_tls(AX)
|
|
|
|
MOVL DX, g(AX)
|
|
|
|
MOVL BX, m(AX)
|
2009-06-17 16:15:55 -06:00
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
CALL runtime·stackcheck(SB) // smashes AX, CX
|
2009-06-17 16:15:55 -06:00
|
|
|
MOVL 0(DX), DX // paranoia; check they are not nil
|
|
|
|
MOVL 0(BX), BX
|
|
|
|
|
|
|
|
// more paranoia; check that stack splitting code works
|
|
|
|
PUSHAL
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
CALL runtime·emptyfunc(SB)
|
2009-06-17 16:15:55 -06:00
|
|
|
POPAL
|
|
|
|
|
2010-07-17 17:54:03 -06:00
|
|
|
CALL SI // fn()
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
CALL runtime·exit1(SB)
|
2009-06-17 16:15:55 -06:00
|
|
|
MOVL $0x1234, 0x1005
|
|
|
|
RET
|
2009-03-31 16:45:12 -06:00
|
|
|
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·sigaltstack(SB),7,$-8
|
2009-03-31 16:45:12 -06:00
|
|
|
MOVL $186, AX // sigaltstack
|
|
|
|
MOVL new+4(SP), BX
|
|
|
|
MOVL old+8(SP), CX
|
|
|
|
INT $0x80
|
|
|
|
CMPL AX, $0xfffff001
|
|
|
|
JLS 2(PC)
|
|
|
|
INT $3
|
|
|
|
RET
|
|
|
|
|
|
|
|
// <asm-i386/ldt.h>
|
|
|
|
// struct user_desc {
|
2009-09-21 16:46:50 -06:00
|
|
|
// unsigned int entry_number;
|
|
|
|
// unsigned long base_addr;
|
|
|
|
// unsigned int limit;
|
|
|
|
// unsigned int seg_32bit:1;
|
|
|
|
// unsigned int contents:2;
|
|
|
|
// unsigned int read_exec_only:1;
|
|
|
|
// unsigned int limit_in_pages:1;
|
|
|
|
// unsigned int seg_not_present:1;
|
|
|
|
// unsigned int useable:1;
|
2009-03-31 16:45:12 -06:00
|
|
|
// };
|
|
|
|
#define SEG_32BIT 0x01
|
|
|
|
// contents are the 2 bits 0x02 and 0x04.
|
|
|
|
#define CONTENTS_DATA 0x00
|
|
|
|
#define CONTENTS_STACK 0x02
|
|
|
|
#define CONTENTS_CODE 0x04
|
|
|
|
#define READ_EXEC_ONLY 0x08
|
|
|
|
#define LIMIT_IN_PAGES 0x10
|
|
|
|
#define SEG_NOT_PRESENT 0x20
|
|
|
|
#define USEABLE 0x40
|
|
|
|
|
|
|
|
// setldt(int entry, int address, int limit)
|
runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost
Prefix all external symbols in runtime by runtime·,
to avoid conflicts with possible symbols of the same
name in linked-in C libraries. The obvious conflicts
are printf, malloc, and free, but hide everything to
avoid future pain.
The symbols left alone are:
** known to cgo **
_cgo_free
_cgo_malloc
libcgo_thread_start
initcgo
ncgocall
** known to linker **
_rt0_$GOARCH
_rt0_$GOARCH_$GOOS
text
etext
data
end
pclntab
epclntab
symtab
esymtab
** known to C compiler **
_divv
_modv
_div64by32
etc (arch specific)
Tested on darwin/386, darwin/amd64, linux/386, linux/amd64.
Built (but not tested) for freebsd/386, freebsd/amd64, linux/arm, windows/386.
R=r, PeterGo
CC=golang-dev
https://golang.org/cl/2899041
2010-11-04 12:00:19 -06:00
|
|
|
TEXT runtime·setldt(SB),7,$32
|
2009-10-03 11:37:12 -06:00
|
|
|
MOVL entry+0(FP), BX // entry
|
|
|
|
MOVL address+4(FP), CX // base address
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When linking against the system libraries,
|
|
|
|
* we use its pthread_create and let it set up %gs
|
|
|
|
* for us. When we do that, the private storage
|
|
|
|
* we get is not at 0(GS), 4(GS), but -8(GS), -4(GS).
|
|
|
|
* To insulate the rest of the tool chain from this
|
|
|
|
* ugliness, 8l rewrites 0(GS) into -8(GS) for us.
|
|
|
|
* To accommodate that rewrite, we translate
|
|
|
|
* the address here and bump the limit to 0xffffffff (no limit)
|
|
|
|
* so that -8(GS) maps to 0(address).
|
2010-07-17 17:54:03 -06:00
|
|
|
* Also, the final 0(GS) (current 8(CX)) has to point
|
|
|
|
* to itself, to mimic ELF.
|
2009-10-03 11:37:12 -06:00
|
|
|
*/
|
|
|
|
ADDL $0x8, CX // address
|
2010-07-17 17:54:03 -06:00
|
|
|
MOVL CX, 0(CX)
|
2009-10-03 11:37:12 -06:00
|
|
|
|
2009-03-31 16:45:12 -06:00
|
|
|
// set up user_desc
|
|
|
|
LEAL 16(SP), AX // struct user_desc
|
|
|
|
MOVL BX, 0(AX)
|
2009-10-03 11:37:12 -06:00
|
|
|
MOVL CX, 4(AX)
|
|
|
|
MOVL $0xfffff, 8(AX)
|
|
|
|
MOVL $(SEG_32BIT|LIMIT_IN_PAGES|USEABLE|CONTENTS_DATA), 12(AX) // flag bits
|
2009-03-31 16:45:12 -06:00
|
|
|
|
|
|
|
// call modify_ldt
|
2009-09-21 16:46:50 -06:00
|
|
|
MOVL $1, BX // func = 1 (write)
|
|
|
|
MOVL AX, CX // user_desc
|
|
|
|
MOVL $16, DX // sizeof(user_desc)
|
|
|
|
MOVL $123, AX // syscall - modify_ldt
|
|
|
|
INT $0x80
|
|
|
|
|
|
|
|
// breakpoint on error
|
|
|
|
CMPL AX, $0xfffff001
|
|
|
|
JLS 2(PC)
|
|
|
|
INT $3
|
2009-09-22 17:28:32 -06:00
|
|
|
|
|
|
|
// compute segment selector - (entry*8+7)
|
|
|
|
MOVL entry+0(FP), AX
|
|
|
|
SHLL $3, AX
|
|
|
|
ADDL $7, AX
|
|
|
|
MOVW AX, GS
|
|
|
|
|
2009-03-31 16:45:12 -06:00
|
|
|
RET
|