libctf, ld: prohibit getting the size or alignment of forwards
C allows you to do only a very few things with entities of incomplete
type (as opposed to pointers to them): make pointers to them and give
them cv-quals, roughly. In particular you can't sizeof them and you
can't get their alignment.
We cannot impose all the requirements the standard imposes on CTF users,
because the deduplicator can transform any structure type into a forward
for the purposes of breaking cycles: so CTF type graphs can easily
contain things like arrays of forward type (if you want to figure out
their size or alignment, you need to chase down the types this forward
might be a forward to in child TU dicts: we will soon add API functions
to make doing this much easier).
Nonetheless, it is still meaningless to ask for the size or alignment of
forwards: but libctf didn't prohibit this and returned nonsense from
internal implementation details when you asked (it returned the kind of
the pointed-to type as both the size and alignment, because forwards
reuse ctt_type as a type kind, and ctt_type and ctt_size overlap). So
introduce a new error, ECTF_INCOMPLETE, which is returned when you try
to get the size or alignment of forwards: we also return it when you try
to do things that require libctf itself to get the size or alignment of
a forward, notably using a forward as an array index type (which C
should never do in any case) or adding forwards to structures without
specifying their offset explicitly.
The dumper will not emit size or alignment info for forwards any more.
(This should not be an API break since ctf_type_size and ctf_type_align
could both return errors before now: any code that isn't expecting error
returns is already potentially broken.)
include/ChangeLog
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
* ctf-api.h (ECTF_INCOMPLETE): New.
(ECTF_NERR): Adjust.
ld/ChangeLog
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
* testsuite/ld-ctf/conflicting-cycle-1.parent.d: Adjust for dumper
changes.
* testsuite/ld-ctf/cross-tu-cyclic-conflicting.d: Likewise.
* testsuite/ld-ctf/forward.c: New test...
* testsuite/ld-ctf/forward.d: ... and results.
libctf/ChangeLog
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
* ctf-types.c (ctf_type_resolve): Improve comment.
(ctf_type_size): Yield ECTF_INCOMPLETE when applied to forwards.
Emit errors into the right dict.
(ctf_type_align): Likewise.
* ctf-create.c (ctf_add_member_offset): Yield ECTF_INCOMPLETE
when adding a member without explicit offset when this member, or
the previous member, is incomplete.
* ctf-dump.c (ctf_dump_format_type): Do not try to print the size of
forwards.
(ctf_dump_member): Do not try to print their alignment.
2021-01-05 13:25:56 +00:00
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
|
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-1.parent.d: Adjust for dumper
|
|
|
|
|
changes.
|
|
|
|
|
* testsuite/ld-ctf/cross-tu-cyclic-conflicting.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/forward.c: New test...
|
|
|
|
|
* testsuite/ld-ctf/forward.d: ... and results.
|
|
|
|
|
|
2021-01-05 13:25:56 +00:00
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
|
|
|
|
|
|
* testsuite/ld-ctf/array.d: Adjust for dumper changes.
|
|
|
|
|
* testsuite/ld-ctf/data-func-conflicted.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/diag-cttname-null.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/diag-cuname.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/diag-parlabel.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/function.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/slice.d: Likewise.
|
|
|
|
|
|
2021-01-05 13:25:56 +00:00
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
|
|
|
|
|
|
* testsuite/ld-ctf/array.d: Adjust for dumper changes.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-1.B-1.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-1.B-2.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-1.parent.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-2.A-1.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-2.A-2.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-2.parent.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-3.C-1.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-3.C-2.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-3.parent.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-enums.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/conflicting-typedefs.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cross-tu-cyclic-conflicting.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cross-tu-cyclic-nonconflicting.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cross-tu-into-cycle.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cross-tu-noncyclic.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cycle-1.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cycle-2.A.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cycle-2.B.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/cycle-2.C.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/data-func-conflicted.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/diag-cttname-null.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/diag-cuname.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/diag-parlabel.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/diag-wrong-magic-number-mixed.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/function.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/slice.d: Likewise.
|
|
|
|
|
* testsuite/ld-ctf/super-sub-cycles.d: Likewise.
|
|
|
|
|
|
2021-01-05 22:54:25 +10:30
|
|
|
|
2021-01-05 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* testsuite/ld-scripts/sysroot-prefix.exp: Exclude some targets.
|
|
|
|
|
|
2021-01-05 15:43:37 +10:30
|
|
|
|
2021-01-05 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR ld/26256
|
|
|
|
|
* testsuite/ld-elf/pr26256-1b.d: xfail s12z.
|
|
|
|
|
* testsuite/ld-scripts/crossref.exp (cross1): Don't xfail ia64.
|
|
|
|
|
|
2021-01-04 12:37:49 -08:00
|
|
|
|
2021-01-04 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/26256
|
|
|
|
|
* ldlang.c (gc_section_callback): Set pattern.
|
|
|
|
|
* testsuite/ld-elf/pr26256-1.s: New file.
|
|
|
|
|
* testsuite/ld-elf/pr26256-1.t: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-1a.d: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-1b.d: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-2.s: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-2.t: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-2a.d: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-2b-alt.d: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-2b.d: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-3.s: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-3a.d: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-3a.t: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-3b.d: Likewise.
|
|
|
|
|
* testsuite/ld-elf/pr26256-3b.t: Likewise.
|
|
|
|
|
|
2021-01-04 17:13:51 +10:30
|
|
|
|
2021-01-04 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 26822
|
|
|
|
|
* testsuite/ld-arm/non-contiguous-arm2.d: Adjust STT_FILE symbol match.
|
|
|
|
|
* testsuite/ld-arm/non-contiguous-arm3.d: Likewise.
|
|
|
|
|
* testsuite/ld-arm/non-contiguous-arm5.d: Likewise.
|
|
|
|
|
* testsuite/ld-arm/non-contiguous-arm6.d: Likewise.
|
|
|
|
|
* testsuite/ld-i386/tlsbin.rd: Likewise.
|
|
|
|
|
* testsuite/ld-i386/tlsbin2.rd: Likewise.
|
|
|
|
|
* testsuite/ld-i386/tlsbindesc.rd: Likewise.
|
|
|
|
|
* testsuite/ld-i386/tlsdesc.rd: Likewise.
|
|
|
|
|
* testsuite/ld-i386/tlsnopic.rd: Likewise.
|
|
|
|
|
* testsuite/ld-i386/tlspic.rd: Likewise.
|
|
|
|
|
* testsuite/ld-i386/tlspic2.rd: Likewise.
|
|
|
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-n64.d: Likewise.
|
|
|
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-n64t.d: Likewise.
|
|
|
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-o32.d: Likewise.
|
|
|
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-o32t.d: Likewise.
|
|
|
|
|
* testsuite/ld-plugin/pr17973.d: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-1.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-1b.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-1r.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-1rb.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-app-1.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-app-1b.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-app-1r.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-app-1rb.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/shlib-noindex.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/static-app-1.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/static-app-1b.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/static-app-1r.rd: Likewise.
|
|
|
|
|
* testsuite/ld-tic6x/static-app-1rb.rd: Likewise.
|
|
|
|
|
* testsuite/ld-x86-64/tlsbin.rd: Likewise.
|
|
|
|
|
* testsuite/ld-x86-64/tlsbin2.rd: Likewise.
|
|
|
|
|
* testsuite/ld-x86-64/tlsbindesc.rd: Likewise.
|
|
|
|
|
* testsuite/ld-x86-64/tlsdesc.rd: Likewise.
|
|
|
|
|
* testsuite/ld-x86-64/tlspic.rd: Likewise.
|
|
|
|
|
* testsuite/ld-x86-64/tlspic2.rd: Likewise.
|
|
|
|
|
* testsuite/ld-xtensa/tlsbin.rd: Likewise.
|
|
|
|
|
* testsuite/ld-xtensa/tlspic.rd: Likewise.
|
|
|
|
|
|
2021-01-01 14:21:52 +10:30
|
|
|
|
2021-01-01 Nicolas Boulenguez <nicolas@debian.org>
|
|
|
|
|
|
|
|
|
|
* configure.tgt: Correct comment grammar.
|
|
|
|
|
* emultempl/m68hc1xelf.em: Likewise.
|
|
|
|
|
* ld.texi: Correct grammar.
|
|
|
|
|
|
2021-01-01 09:28:58 +10:30
|
|
|
|
2021-01-01 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
Update year range in copyright notice of all files.
|
|
|
|
|
|
2021-01-01 09:17:13 +10:30
|
|
|
|
For older changes see ChangeLog-2020
|
2016-01-01 21:14:31 +10:30
|
|
|
|
|
2021-01-01 09:17:13 +10:30
|
|
|
|
Copyright (C) 2021 Free Software Foundation, Inc.
|
2016-01-01 21:14:31 +10:30
|
|
|
|
|
|
|
|
|
Copying and distribution of this file, with or without modification,
|
|
|
|
|
are permitted in any medium without royalty provided the copyright
|
|
|
|
|
notice and this notice are preserved.
|
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: change-log
|
|
|
|
|
left-margin: 8
|
|
|
|
|
fill-column: 74
|
|
|
|
|
version-control: never
|
|
|
|
|
End:
|