1 1.1 matt /* Default linker script, for normal executables */ 2 1.1 matt OUTPUT_FORMAT("elf64-littleaarch64", "elf64-bigaarch64", 3 1.1 matt "elf64-littleaarch64") 4 1.1 matt OUTPUT_ARCH(aarch64) 5 1.1 matt ENTRY(_start) 6 1.1 matt SECTIONS 7 1.1 matt { 8 1.1 matt /* Read-only sections, merged into text segment: */ 9 1.1 matt .text : 10 1.1 matt { 11 1.5 ryo PROVIDE (__kernel_text = .); 12 1.1 matt PROVIDE_HIDDEN (__eprol = .); 13 1.1 matt *(.text) 14 1.1 matt *(.text.unlikely .text.*_unlikely) 15 1.1 matt *(.text.exit .text.exit.*) 16 1.1 matt *(.text.startup .text.startup.*) 17 1.1 matt *(.text.hot .text.hot.*) 18 1.1 matt *(.stub .text.* .gnu.linkonce.t.*) 19 1.1 matt /* .gnu.warning sections are handled specially by elf32.em. */ 20 1.1 matt } =0 21 1.1 matt .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) } 22 1.1 matt .rodata1 : { *(.rodata1) } 23 1.1 matt .eh_frame_hdr : { *(.eh_frame_hdr) } 24 1.1 matt .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } 25 1.1 matt .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table 26 1.1 matt .gcc_except_table.*) } 27 1.1 matt /* These sections are generated by the Sun/Oracle C++ compiler. */ 28 1.1 matt .exception_ranges : ONLY_IF_RO { *(.exception_ranges 29 1.1 matt .exception_ranges*) } 30 1.1 matt PROVIDE (__etext = .); 31 1.1 matt PROVIDE (_etext = .); 32 1.1 matt PROVIDE (etext = .); 33 1.1 matt /* Adjust the address for the data segment. We want to adjust up to 34 1.1 matt the same address within the page on the next page up. */ 35 1.1 matt . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE)); 36 1.1 matt /* Exception handling */ 37 1.1 matt .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) } 38 1.1 matt .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) } 39 1.1 matt .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) } 40 1.1 matt .got : { *(.got) *(.igot) } 41 1.1 matt . = DATA_SEGMENT_RELRO_END (24, .); 42 1.1 matt .got.plt : { *(.got.plt) *(.igot.plt) } 43 1.1 matt .data : 44 1.1 matt { 45 1.1 matt PROVIDE (__data_start = .); 46 1.5 ryo *(.data .gnu.linkonce.d.*) 47 1.1 matt SORT(CONSTRUCTORS) 48 1.1 matt } 49 1.1 matt .data1 : { *(.data1) } 50 1.5 ryo 51 1.5 ryo . = ALIGN(64); /* COHERENCY_UNIT */ 52 1.5 ryo .data.cacheline_aligned : 53 1.5 ryo { 54 1.5 ryo *(.data.cacheline_aligned) 55 1.5 ryo } 56 1.5 ryo . = ALIGN(64); /* COHERENCY_UNIT */ 57 1.5 ryo .data.read_mostly : 58 1.5 ryo { 59 1.5 ryo *(.data.read_mostly) 60 1.5 ryo } 61 1.5 ryo . = ALIGN(64); /* COHERENCY_UNIT */ 62 1.5 ryo 63 1.1 matt _edata = .; PROVIDE (edata = .); 64 1.1 matt . = .; 65 1.1 matt __bss_start = .; 66 1.1 matt __bss_start__ = .; 67 1.1 matt .bss : 68 1.1 matt { 69 1.2 uebayasi *(.dynbss) 70 1.2 uebayasi *(.bss .bss.* .gnu.linkonce.b.*) 71 1.2 uebayasi *(COMMON) 72 1.2 uebayasi /* Align here to ensure that the .bss section occupies space up to 73 1.2 uebayasi _end. Align after .bss to ensure correct alignment even if the 74 1.2 uebayasi .bss section disappears because there are no input sections. 75 1.2 uebayasi FIXME: Why do we need it? When there is no .bss section, we don't 76 1.2 uebayasi pad the .data section. */ 77 1.2 uebayasi . = ALIGN(. != 0 ? 32 / 8 : 1); 78 1.1 matt } 79 1.1 matt _bss_end__ = . ; __bss_end__ = . ; 80 1.1 matt . = ALIGN(32 / 8); 81 1.1 matt . = ALIGN(32 / 8); 82 1.1 matt __end__ = . ; 83 1.1 matt _end = .; PROVIDE (end = .); 84 1.1 matt . = DATA_SEGMENT_END (.); 85 1.1 matt .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) } 86 1.1 matt .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) } 87 1.1 matt } 88