rtld_start.S revision 204687
1/*	$NetBSD: rtld_start.S,v 1.10 2009/12/14 00:41:19 matt Exp $	*/
2
3/*
4 * Copyright 1997 Michael L. Hitch <mhitch@montana.edu>
5 * Portions copyright 2002 Charles M. Hannum <root@ihack.net>
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. The name of the author may not be used to endorse or promote products
17 *    derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * $FreeBSD: head/libexec/rtld-elf/mips/rtld_start.S 204687 2010-03-04 04:53:05Z imp $
31 */
32
33#include <machine/asm.h>
34
35.globl _C_LABEL(_rtld_relocate_nonplt_self)
36.globl _C_LABEL(_rtld)
37
38#define	PTR_SIZE	(1<<PTR_SCALESHIFT)
39
40/*
41 *      a0      stack pointer
42 *      a1      rtld cleanup (filled in by dynamic loader)
43 *      a2      rtld object (filled in by dynamic loader)
44 *      a3      ps_strings
45 */
46LEAF(rtld_start)
47	.frame	sp, 4*PTR_SIZE, ra
48	.mask	0x10090000,-PTR_SIZE
49	.set	noreorder
50	SETUP_GP
51	PTR_SUBU sp, 4*PTR_SIZE		/* adjust stack pointer */
52	SETUP_GP64(s4, rtld_start)
53	SAVE_GP(0)
54					/* -> 1*PTR_SIZE(sp) for atexit */
55					/* -> 2*PTR_SIZE(sp) for obj_main */
56	move	s0, a0			/* save stack pointer from a0 */
57	move	s3, a3			/* save ps_strings pointer */
58
59	PTR_LA	a1, 1f
60	bal	1f
61	 PTR_LA	t0, _C_LABEL(_rtld_relocate_nonplt_self)
621:	PTR_SUBU a1, ra, a1		/* relocbase */
63	PTR_LA	a0, _DYNAMIC
64	PTR_ADDU t9, a1, t0
65	jalr	t9			/* _rtld_relocate_nonplt_self(dynp, relocabase) */
66	 PTR_ADDU a0, a1, a0		/* &_DYNAMIC */
67
68	move	a0, s0			/* sp */
69	PTR_ADDU a1, sp, 2*PTR_SIZE	/* &our atexit function */
70	PTR_ADDU a2, sp, 3*PTR_SIZE	/* obj_main entry */
71	jal	_C_LABEL(_rtld)		/* v0 = _rtld(sp, cleanup, objp) */
72	 nop
73
74	PTR_L	a1, 2*PTR_SIZE(sp)	/* our atexit function */
75	PTR_L	a2, 3*PTR_SIZE(sp)	/* obj_main entry */
76	PTR_ADDU sp, 4*PTR_SIZE		/* readjust stack */
77	move	a0, s0			/* stack pointer */
78	move	t9, v0
79	jr	t9			/* _start(sp, cleanup, obj); */
80	 move	a3, s3			/* restore ps_strings */
81
82END(rtld_start)
83
84#define	XCALLFRAME_SIZ		(12*SZREG)
85#define	XCALLFRAME_RA		(10*SZREG)
86#define	XCALLFRAME_GP		(9*SZREG)
87#define	XCALLFRAME_S0		(8*SZREG)
88#define	XCALLFRAME_A3		(7*SZREG)
89#define	XCALLFRAME_A2		(6*SZREG)
90#define	XCALLFRAME_A1		(5*SZREG)
91#define	XCALLFRAME_A0		(4*SZREG)
92#if defined(__mips_n32) || defined(__mips_n64)
93#define	XCALLFRAME_A7		(3*SZREG)
94#define	XCALLFRAME_A6		(2*SZREG)
95#define	XCALLFRAME_A5		(1*SZREG)
96#define	XCALLFRAME_A4		(0*SZREG)
97#endif
98
99	.globl	_rtld_bind_start
100	.ent	_rtld_bind_start
101_rtld_bind_start:
102	.frame	sp, XCALLFRAME_SIZ, $15
103	move	v1, gp			/* save old GP */
104#if defined(__mips_o32) || defined(__mips_o64)
105	PTR_ADDU t9, 8			/* modify T9 to point at .cpload */
106#endif
107	SETUP_GP
108	PTR_SUBU sp, XCALLFRAME_SIZ	/* save arguments and sp value in stack */
109	SETUP_GP64(XCALLFRAME_GP, _rtld_bind_start)
110	SAVE_GP(XCALLFRAME_GP)
111#if defined(__mips_n32) || defined(__mips_n64)
112	REG_S	a4,  XCALLFRAME_A4(sp)
113	REG_S	a5,  XCALLFRAME_A5(sp)
114	REG_S	a6,  XCALLFRAME_A6(sp)
115	REG_S	a7,  XCALLFRAME_A7(sp)
116#endif
117	REG_S	a0,  XCALLFRAME_A0(sp)
118	REG_S	a1,  XCALLFRAME_A1(sp)
119	REG_S	a2,  XCALLFRAME_A2(sp)
120	REG_S	a3,  XCALLFRAME_A3(sp)
121	REG_S	$15,  XCALLFRAME_RA(sp)	/* ra is in t7/t3 */
122	REG_S	s0,  XCALLFRAME_S0(sp)
123	move	s0, sp
124
125	move	a0, v1			/* old GP */
126	subu	a0, a0, 0x7ff0		/* The offset of $gp from the	*/
127       					/* beginning of the .got section: */
128					/* $gp = .got + 0x7ff0, so	*/
129					/* .got = $gp - 0x7ff0		*/
130					/* Simple math as you can see.	*/
131#if defined(__mips_n64)
132	ld	a0, 8(a0)		/* object = pltgot[1] & 0x7fffffff */
133#else
134	lw	a0, 4(a0)		/* object = pltgot[1] & 0x7fffffff */
135#endif
136	and	a0, a0, 0x7fffffff
137	move	a1, t8			/* symbol index */
138
139	jal	_C_LABEL(_mips_rtld_bind)
140	 nop
141
142	move	sp, s0
143	REG_L	ra, XCALLFRAME_RA(sp)
144	REG_L	s0, XCALLFRAME_S0(sp)
145	REG_L	a0, XCALLFRAME_A0(sp)
146	REG_L	a1, XCALLFRAME_A1(sp)
147	REG_L	a2, XCALLFRAME_A2(sp)
148	REG_L	a3, XCALLFRAME_A3(sp)
149#if defined(__mips_n32) || defined(__mips_n64)
150	REG_L	a4, XCALLFRAME_A4(sp)
151	REG_L	a5, XCALLFRAME_A5(sp)
152	REG_L	a6, XCALLFRAME_A6(sp)
153	REG_L	a7, XCALLFRAME_A7(sp)
154#endif
155	RESTORE_GP64
156	PTR_ADDU sp, XCALLFRAME_SIZ
157	move	t9, v0
158	jr	t9
159	 nop
160END(_rtld_bind_start)
161