summaryrefslogtreecommitdiff
path: root/sysdeps/sparc/sparc64/elf/crtend.S
blob: 7a5c067b0732ff8f6a11b88985fae5aa7cf4fec5 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/* Constructor startup code for elf64-sparc
   Copyright (C) 1997 Free Software Foundation, Inc.
   Contributed by Richard Henderson <richard@gnu.ai.mit.edu>, 1997.
 
   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public License as
   published by the Free Software Foundation; either version 2 of the
   License, or (at your option) any later version.
 
   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.
 
   You should have received a copy of the GNU Library General Public
   License along with the GNU C Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.  */
 
 
.section ".ctors",#alloc,#write

	.align 8
__CTOR_END__:
	.xword	0

.section ".dtors",#alloc,#write

	.align 8
__DTOR_END__:
	.xword	0

.section ".init",#alloc,#execinstr

	call	__do_global_ctors_aux
	 nop

.text

	.align 4
	.type __do_global_ctors_aux,#function
__do_global_ctors_aux:
	save	%sp,-160,%sp

#ifdef PIC
1:	call	11f
	sethi	%hi(_GLOBAL_OFFSET_TABLE_-(1b-.)), %l7
11:	or	%l7, %lo(_GLOBAL_OFFSET_TABLE_-(1b-.)), %l7
	add	%l7, %o7, %l7
	sethi	%hi(__CTOR_END__), %l0
	or	%l0, %lo(__CTOR_END__), %l0
	ldx	[%l7+%l0], %l0
#else
	sethi	%hi(__CTOR_END__), %l0
	or	%l0, %lo(__CTOR_END__), %l0
	add	%l0, %g4, %l0
#endif

	ba	3f
	 ldx	[%l0+8], %l1
2:	jmpl	%l1, %o7
	 ldx	[%l0+8], %l1
3:	addcc	%l1, 1, %g0
	bnz,pt	%xcc, 2b
	 add	%l0, 8, %l0

	ret
	 restore

	.size __do_global_ctors_aux,.-__do_global_ctors_aux