Files
kernel/scripts/module.lds.S
T

68 lines
1.5 KiB
ArmAsm
Raw Normal View History

2009-06-24 15:13:38 +09:00
/*
* Common module linker script, always used when linking a module.
* Archs are free to supply their own linker scripts. ld will
* combine them automatically.
*/
2021-04-08 11:28:29 -07:00
#ifdef CONFIG_CFI_CLANG
# include <asm/page.h>
# define ALIGN_CFI ALIGN(PAGE_SIZE)
# define SANITIZER_DISCARDS *(.eh_frame)
#else
# define ALIGN_CFI
# define SANITIZER_DISCARDS
#endif
2009-06-24 15:13:38 +09:00
SECTIONS {
/DISCARD/ : {
*(.discard)
*(.discard.*)
2021-04-08 11:28:29 -07:00
SANITIZER_DISCARDS
}
2011-04-14 14:59:39 +02:00
__ksymtab 0 : { *(SORT(___ksymtab+*)) }
__ksymtab_gpl 0 : { *(SORT(___ksymtab_gpl+*)) }
__kcrctab 0 : { *(SORT(___kcrctab+*)) }
__kcrctab_gpl 0 : { *(SORT(___kcrctab_gpl+*)) }
.ctors 0 : ALIGN(8) { *(SORT(.ctors.*)) *(.ctors) }
2017-03-07 17:31:08 -08:00
.init_array 0 : ALIGN(8) { *(SORT(.init_array.*)) *(.init_array) }
2017-03-01 14:04:53 -08:00
__jump_table 0 : ALIGN(8) { KEEP(*(__jump_table)) }
2020-12-11 10:46:22 -08:00
__patchable_function_entries : { *(__patchable_function_entries) }
#ifdef CONFIG_LTO_CLANG
2020-12-11 10:46:22 -08:00
/*
* With CONFIG_LTO_CLANG, LLD always enables -fdata-sections and
* -ffunction-sections, which increases the size of the final module.
* Merge the split sections in the final binary.
*/
.bss : {
*(.bss .bss.[0-9a-zA-Z_]*)
*(.bss..L*)
}
.data : {
*(.data .data.[0-9a-zA-Z_]*)
*(.data..L*)
}
.rodata : {
*(.rodata .rodata.[0-9a-zA-Z_]*)
*(.rodata..L*)
}
2021-04-08 11:28:29 -07:00
/*
* With CONFIG_CFI_CLANG, we assume __cfi_check is at the beginning
* of the .text section, and is aligned to PAGE_SIZE.
*/
.text : ALIGN_CFI {
*(.text.__cfi_check)
*(.text .text.[0-9a-zA-Z_]* .text..L.cfi*)
}
#endif
2009-06-24 15:13:38 +09:00
}
2020-09-08 13:27:08 +09:00
/* bring in arch-specific sections */
#include <asm/module.lds.h>