+2012-07-10 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/14156
+ * NEWS: Mention SORT_NONE.
+
+ * ld.h (sort_type): Add by_none.
+
+ * ld.texinfo: Document SORT_NONE.
+
+ * ldgram.y: Handle SORT_NONE.
+
+ * ldlang.c (update_wild_statements): Handle by_none. Don't
+ sort .init/.fini sections.
+
+ * ldlex.l: Add SORT_NONE.
+
2012-07-02 H.J. Lu <hongjiu.lu@intel.com>
* ld.texinfo: Replace __end_SECNAME with __stop_SECNAME.
-*- text -*-
+* Added SORT_NONE to the linker script language to disable section sorting.
+
* Add a linker-provided symbol when producing ELF output, '__ehdr_start'
to point to the ELF file header (and nearby program headers) in the
program's memory image.
typedef enum {
none, by_name, by_alignment, by_name_alignment, by_alignment_name,
- by_init_priority
+ by_none, by_init_priority
} sort_type;
extern sort_type sort_section;
If the section sorting command in linker script is nested, the
command line option will be ignored.
+@cindex SORT_NONE
+@code{SORT_NONE} disables section sorting by ignoring the command line
+section sorting option.
+
If you ever get confused about where input sections are going, use the
@samp{-M} linker option to generate a map file. The map file shows
precisely how input sections are mapped to output sections.
%token <token> ALIGN_K BLOCK BIND QUAD SQUAD LONG SHORT BYTE
%token SECTIONS PHDRS INSERT_K AFTER BEFORE
%token DATA_SEGMENT_ALIGN DATA_SEGMENT_RELRO_END DATA_SEGMENT_END
-%token SORT_BY_NAME SORT_BY_ALIGNMENT
+%token SORT_BY_NAME SORT_BY_ALIGNMENT SORT_NONE
%token SORT_BY_INIT_PRIORITY
%token '{' '}'
%token SIZEOF_HEADERS OUTPUT_FORMAT FORCE_COMMON_ALLOCATION OUTPUT_ARCH
$$.exclude_name_list = NULL;
$$.section_flag_list = NULL;
}
+ | SORT_NONE '(' wildcard_name ')'
+ {
+ $$.name = $3;
+ $$.sorted = by_none;
+ $$.exclude_name_list = NULL;
+ $$.section_flag_list = NULL;
+ }
| SORT_BY_NAME '(' SORT_BY_ALIGNMENT '(' wildcard_name ')' ')'
{
$$.name = $5;
if (sort_section == by_name)
sec->spec.sorted = by_alignment_name;
break;
+ case by_none:
+ sec->spec.sorted = none;
default:
break;
}
break;
case lang_output_section_statement_enum:
- update_wild_statements
- (s->output_section_statement.children.head);
+ /* Don't sort .init/.fini sections. */
+ if (strcmp (s->output_section_statement.name, ".init") != 0
+ && strcmp (s->output_section_statement.name, ".fini") != 0)
+ update_wild_statements
+ (s->output_section_statement.children.head);
break;
case lang_group_statement_enum:
<BOTH,SCRIPT>"SORT_BY_ALIGNMENT" { RTOKEN(SORT_BY_ALIGNMENT); }
<BOTH,SCRIPT>"SORT" { RTOKEN(SORT_BY_NAME); }
<BOTH,SCRIPT>"SORT_BY_INIT_PRIORITY" { RTOKEN(SORT_BY_INIT_PRIORITY); }
+<BOTH,SCRIPT>"SORT_NONE" { RTOKEN(SORT_NONE); }
<EXPRESSION,BOTH,SCRIPT>"NOLOAD" { RTOKEN(NOLOAD);}
<EXPRESSION,BOTH,SCRIPT>"DSECT" { RTOKEN(DSECT);}
<EXPRESSION,BOTH,SCRIPT>"COPY" { RTOKEN(COPY);}
+2012-07-10 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/14156
+ * ld-elf/fini0.s: New file.
+ * ld-elf/fini1.s: Likewise.
+ * ld-elf/fini2.s: Likewise.
+ * ld-elf/fini3.s: Likewise.
+ * ld-elf/finin.s: Likewise.
+ * ld-elf/foo0.s: Likewise.
+ * ld-elf/foo1.s: Likewise.
+ * ld-elf/foo2.s: Likewise.
+ * ld-elf/foo3.s: Likewise.
+ * ld-elf/foon.s: Likewise.
+ * ld-elf/init0.s: Likewise.
+ * ld-elf/init1.s: Likewise.
+ * ld-elf/init2.s: Likewise.
+ * ld-elf/init3.s: Likewise.
+ * ld-elf/initn.s: Likewise.
+ * ld-elf/pr14156a.d: Likewise.
+ * ld-elf/pr14156b.d: Likewise.
+ * ld-elf/pr14156c.d: Likewise.
+ * ld-elf/pr14156c.t: Likewise.
+
2012-07-09 H.J. Lu <hongjiu.lu@intel.com>
PR ld/14323
--- /dev/null
+ .text
+ .global start /* Used by SH targets. */
+start:
+ .global _start
+_start:
+ .global __start
+__start:
+ .global main /* Used by HPPA targets. */
+main:
+ .dc.a 0
+
+ .section .fini
+ .p2align 2
+.globl foo
+ .type foo,%function
+foo:
--- /dev/null
+ .section .fini
+ .p2align 2
+ .type foo1,%function
+foo1:
+ .dc.a 0x0
+ .size foo1,.-foo1
--- /dev/null
+ .section .fini
+ .p2align 6
+ .type foo2,%function
+foo2:
+ .dc.a 0x0
+ .size foo2,.-foo2
--- /dev/null
+ .section .fini
+ .p2align 4
+ .type foo3,%function
+foo3:
+ .dc.a 0x0
+ .size foo3,.-foo3
--- /dev/null
+ .section .fini
+ .p2align 8
+ .type last,%function
+last:
+ .dc.a 0x0
+ .size last,.-last
--- /dev/null
+ .text
+ .global start /* Used by SH targets. */
+start:
+ .global _start
+_start:
+ .global __start
+__start:
+ .global main /* Used by HPPA targets. */
+main:
+ .dc.a 0
+
+ .section .foo,"ax",@progbits
+ .p2align 2
+.globl foo
+ .type foo,%function
+foo:
--- /dev/null
+ .section .foo,"ax",@progbits
+ .p2align 2
+ .type foo1,%function
+foo1:
+ .dc.a 0x0
+ .size foo1,.-foo1
--- /dev/null
+ .section .foo,"ax",@progbits
+ .p2align 6
+ .type foo2,%function
+foo2:
+ .dc.a 0x0
+ .size foo2,.-foo2
--- /dev/null
+ .section .foo,"ax",@progbits
+ .p2align 4
+ .type foo3,%function
+foo3:
+ .dc.a 0x0
+ .size foo3,.-foo3
--- /dev/null
+ .section .foo,"ax",@progbits
+ .p2align 8
+ .type last,%function
+last:
+ .dc.a 0x0
+ .size last,.-last
--- /dev/null
+ .text
+ .global start /* Used by SH targets. */
+start:
+ .global _start
+_start:
+ .global __start
+__start:
+ .global main /* Used by HPPA targets. */
+main:
+ .dc.a 0
+
+ .section .init
+ .p2align 2
+.globl foo
+ .type foo,%function
+foo:
--- /dev/null
+ .section .init
+ .p2align 2
+ .type foo1,%function
+foo1:
+ .dc.a 0x0
+ .size foo1,.-foo1
--- /dev/null
+ .section .init
+ .p2align 6
+ .type foo2,%function
+foo2:
+ .dc.a 0x0
+ .size foo2,.-foo2
--- /dev/null
+ .section .init
+ .p2align 4
+ .type foo3,%function
+foo3:
+ .dc.a 0x0
+ .size foo3,.-foo3
--- /dev/null
+ .section .init
+ .p2align 8
+ .type last,%function
+last:
+ .dc.a 0x0
+ .size last,.-last
--- /dev/null
+#source: init0.s
+#source: init1.s
+#source: init2.s
+#source: init3.s
+#source: initn.s
+#ld: --sort-section=alignment
+#nm: -n
+
+#...
+[0-9a-f]+ T foo
+[0-9a-f]+ t foo1
+[0-9a-f]+ t foo2
+[0-9a-f]+ t foo3
+[0-9a-f]+ t last
+#pass
--- /dev/null
+#source: fini0.s
+#source: fini1.s
+#source: fini2.s
+#source: fini3.s
+#source: finin.s
+#ld: --sort-section=alignment
+#nm: -n
+
+#...
+[0-9a-f]+ T foo
+[0-9a-f]+ t foo1
+[0-9a-f]+ t foo2
+[0-9a-f]+ t foo3
+[0-9a-f]+ t last
+#pass
--- /dev/null
+#source: foo0.s
+#source: foo1.s
+#source: foo2.s
+#source: foo3.s
+#source: foon.s
+#ld: --sort-section=alignment -T pr14156c.t
+#nm: -n
+
+#...
+[0-9a-f]+ T foo
+[0-9a-f]+ t foo1
+[0-9a-f]+ t foo2
+[0-9a-f]+ t foo3
+[0-9a-f]+ t last
+#pass
--- /dev/null
+SECTIONS {
+ .foo : { *(SORT_NONE(.foo)) }
+ /DISCARD/ : { *(.*) }
+}