summaryrefslogtreecommitdiff
path: root/lib/ctors.S
blob: cdd46291aa279f73f6720e20ee75eb4cc603c4f5 (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
/*
 * Try to define the minimal empty init/ctor/dtor/fini_arrays so building with
 * older or out-of-tree linker scripts will still work.
 */
/*
 * Note that these aren't the using the GNU "CONSTRUCTOR" output section
 * command, so they don't start with a size.  Because of p2align and the
 * end/END definitions, and the fact that they're mergeable, they can also
 * have NULLs which aren't guaranteed to be at the end.
 */
	.section .init_array, "aw", @init_array
	.p2align 3, 0
	.globl __init_array_start
__init_array_start:
	.p2align 3, 0
	.globl __init_array_end
__init_array_end:
	.long 0
	.section .ctors, "aw", @progbits
	.p2align 3, 0
	.globl __CTOR_LIST__
__CTOR_LIST__:
	.p2align 3, 0
	.globl __CTOR_END__
__CTOR_END__:
	.long 0
	.section .dtors, "aw", @progbits
	.p2align 3, 0
	.globl __DTOR_LIST__
__DTOR_LIST__:
	.p2align 3, 0
	.globl __DTOR_END__
__DTOR_END__:
	.long 0
	.section .fini_array, "aw", @fini_array
	.p2align 3, 0
	.globl __fini_array_start
__fini_array_start:
	.p2align 3, 0
	.globl __fini_array_end
__fini_array_end:
	.long 0

#if defined(__ELF__) && defined(__linux__)
	.section .note.GNU-stack,"",%progbits
#endif