summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/sparc/start.S
blob: c6408ee8f02694adc98c7c650da4b90ec7ba6b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
	.section ".text"
	.align 4
	.global _start
	.type _start,@function
_start:

/* Terminate the stack frame, and reserve space for functions to
   drop their arguments.  */
	mov	%g0, %fp
	sub	%sp, 6*4, %sp

/* Extract the arguments and environment as encoded on the stack.  The
   argument info starts after one register window (16 words) past the SP.  */
	ld	[%sp+22*4], %o0
	add	%sp, 23*4, %o1
	add	%o1, %o0, %o2
	add	%o2, %o0, %o2
	add	%o2, %o0, %o2
	add	%o2, %o0, %o2
	add	%o2, 4, %o2

	sethi	%hi(environ), %o3
	or	%o3, %lo(environ), %o3
	st	%o2, [%o3]

/* When starting a binary via the dynamic linker, %g1 contains the
   address of the shared library termination function, which will be
   registered with atexit(). If we are statically linked, this will
   be NULL.  */

/* Let libc do the rest of the initialization, and call main.  */
#ifdef WANT_DYNAMIC
	call	dyn_start
#else
	call	main
#endif
	mov	%g1, %o3

	b	exit
	mov %o0, %i0

/* Die very horribly if exit returns.  */

/* here we go and "reuse" the return for weak-void functions */
#include "dietuglyweaks.h"
	ret
	nop

	.size _start, .-_start