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
|
.file "crti.S"
.text
.section .init
.hidden _init
.align 1
.global _init
.type _init, @function
_init:
mov.l r12,@-r15
mov.l r14,@-r15
sts.l pr,@-r15
#ifndef __HAVE_SHARED__
mova .L6,r0
mov.l .L6,r12
add r0,r12
#endif
mov r15,r14
bra 1f
nop
.align 2
#ifndef __HAVE_SHARED__
.L6:
.long _GLOBAL_OFFSET_TABLE_
#endif
1:
.section .fini
.hidden _fini
.align 1
.global _fini
.type _fini, @function
_fini:
mov.l r12,@-r15
mov.l r14,@-r15
sts.l pr,@-r15
mov r15,r14
#ifndef __HAVE_SHARED__
mov.l .L11,r12
mova .L11,r0
add r0,r12
#endif
bra 1f
nop
.align 2
#ifndef __HAVE_SHARED__
.L11:
.long _GLOBAL_OFFSET_TABLE_
#endif
1:
.ident "GCC: (GNU) 3.3.2"
|