Lines Matching full:section
85 ".section .fixup,\"ax\"\n"
89 ".section __ex_table,\"a\"\n"
99 ".section .fixup,\"ax\"\n"
103 ".section __ex_table,\"a\"\n"
113 ".section .fixup,\"ax\"\n"
117 ".section __ex_table,\"a\"\n"
146 > .section .fixup,"ax"
150 > .section __ex_table,"a"
161 memory. But what does the .section stuff do?????
165 > objdump --section-headers vmlinux
192 > objdump --disassemble --section=.text vmlinux
206 The instructions bracketed in the .section directives are no longer
207 in the normal execution path. They are located in a different section
210 > objdump --disassemble --section=.fixup vmlinux
218 > objdump --full-contents --section=__ex_table vmlinux
234 .section .fixup,"ax"
235 .section __ex_table,"a"
244 ended up in the .fixup section of the object file and the addresses::
248 ended up in the __ex_table section of the object file. 1b and 3b
265 > .section __ex_table,"a"
290 exception table (i.e. the contents of the ELF section __ex_table)
311 only use exceptions for code in the .text section. Any other section
348 CONFIG_BUILDTIME_TABLE_SORT allows the __ex_table section to be sorted post
350 symbol main_extable_sort_needed to 0, avoiding sorting the __ex_table section