head 1.1; branch 1.1.1; access; symbols netbsd-11-0-RC6:1.1.1.2 netbsd-11-0-RC5:1.1.1.2 netbsd-11-0-RC4:1.1.1.2 netbsd-11-0-RC3:1.1.1.2 netbsd-11-0-RC2:1.1.1.2 binutils-2-46:1.1.1.4 netbsd-11-0-RC1:1.1.1.2 binutils-2-45:1.1.1.3 perseant-exfatfs-base-20250801:1.1.1.2 netbsd-11:1.1.1.2.0.2 netbsd-11-base:1.1.1.2 perseant-exfatfs-base-20240630:1.1.1.2 binutils-2-42:1.1.1.2 perseant-exfatfs:1.1.1.1.0.2 perseant-exfatfs-base:1.1.1.1 binutils-2-39:1.1.1.1 FSF:1.1.1; locks; strict; comment @# @; 1.1 date 2022.12.23.19.01.03; author christos; state Exp; branches 1.1.1.1; next ; commitid AaAP7ITTx5JnmI6E; 1.1.1.1 date 2022.12.23.19.01.03; author christos; state Exp; branches 1.1.1.1.2.1; next 1.1.1.2; commitid AaAP7ITTx5JnmI6E; 1.1.1.2 date 2024.06.30.16.01.17; author christos; state Exp; branches; next 1.1.1.3; commitid Eqxmo2uubpM9w1gF; 1.1.1.3 date 2025.08.25.14.43.33; author christos; state Exp; branches; next 1.1.1.4; commitid aUBKFf4jmEzPv78G; 1.1.1.4 date 2026.02.11.19.50.36; author christos; state Exp; branches; next ; commitid vybCSY05tblOMZtG; 1.1.1.1.2.1 date 2024.07.01.01.00.21; author perseant; state Exp; branches; next ; commitid NkoYLLCQWWw9v4gF; desc @@ 1.1 log @Initial revision @ text @This is ctf-spec.info, produced by makeinfo version 6.8 from ctf-spec.texi. Copyright (C) 2021-2022 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or any later version published by the Free Software Foundation. A copy of the license is included in the section entitled "GNU General Public License". INFO-DIR-SECTION Software development START-INFO-DIR-ENTRY * CTF: (ctf-spec). The CTF file format. END-INFO-DIR-ENTRY  File: ctf-spec.info, Node: Top, Next: Overview, Up: (dir) The CTF file format ******************* This manual describes version 3 of the CTF file format, which is intended to model the C type system in a fashion that C programs can consume at runtime. * Menu: * Overview:: * CTF archive:: * CTF dictionaries:: * Index::  File: ctf-spec.info, Node: Overview, Next: CTF archive, Prev: Top, Up: Top Overview ******** The CTF file format compactly describes C types and the association between function and data symbols and types: if embedded in ELF objects, it can exploit the ELF string table to reduce duplication further. There is no real concept of namespacing: only top-level types are described, not types scoped to within single functions. CTF dictionaries can be "children" of other dictionaries, in a one-level hierarchy: child dictionaries can refer to types in the parent, but the opposite is not sensible (since if you refer to a child type in the parent, the actual type you cited would vary depending on what child was attached). This parent/child definition is recorded in the child, but only as a recommendation: users of the API have to attach parents to children explicitly, and can choose to attach a child to any parent they like, or to none, though doing so might lead to unpleasant consequences like dangling references to types. *Note Type indexes and type IDs::. Type lookups in child dicts that are not associated with a parent at all will fail with 'ECTF_NOPARENT' if a parent type was needed. The associated API to generate, merge together, and query this file format will be described in the accompanying 'libctf' manual once it is written. There is no API to modify dictionaries once they've been written out: CTF is a write-once file format. (However, it is always possible to dynamically create a new child dictionary on the fly and attach it to a pre-existing, read-only parent.) There are two major pieces to CTF: the "archive" and the "dictionary". Some relatives and ancestors of CTF call dictionaries "containers": the archive format is unique to this variant of CTF. (Much of the source code still uses the old term.) The archive file format is a very simple mmappable archive used to group multiple dictionaries together into groups: it is expected to slowly go away and be replaced by other mechanisms, but right now it is an important part of the file format, used to group dictionaries containing types with conflicting definitions in different TUs with the overarching dictionary used to store all other types. (Even when archives go away, the 'libctf' API used to access them will remain, and access the other mechanisms that replace it instead.) The CTF dictionary consists of a "preamble", which does not vary between versions of the CTF file format, and a "header" and some number of "sections", which can vary between versions. The rest of this specification describes the format of these sections, first for the latest version of CTF, then for all earlier versions supported by 'libctf': the earlier versions are defined in terms of their differences from the next later one. We describe each part of the format first by reproducing the C structure which defines that part, then describing it at greater length in terms of file offsets. The description of the file format ends with a description of relevant limits that apply to it. These limits can vary between file format versions. This document is quite young, so for now the C code in 'ctf.h' should be presumed correct when this document conflicts with it.  File: ctf-spec.info, Node: CTF archive, Next: CTF dictionaries, Prev: Overview, Up: Top 1 CTF archives ************** The CTF archive format maps names to CTF dictionaries. The names may contain any character other than \0, but for now archives containing slashes in the names may not extract correctly. It is possible to insert multiple members with the same name, but these are quite hard to access reliably (you have to iterate through all the members rather than opening by name) so this is not recommended. CTF archives are not themselves compressed: the constituent components, CTF dictionaries, can be compressed. (*Note CTF header::). CTF archives usually contain a collection of related dictionaries, one parent and many children of that parent. CTF archives can have a member with a "default name", '.ctf' (which can be represented as 'NULL' in the API). If present, this member is usually the parent of all the children, but it is possible for CTF producers to emit parents with different names if they wish (usually for backward- compatibility purposes). '.ctf' sections in ELF objects consist of a single CTF dictionary rather than an archive of dictionaries if and only if the section contains no types with identical names but conflicting definitions: if two conflicting definitions exist, the deduplicator will place the type most commonly referred to by other types in the parent and will place the other type in a child named after the translation unit it is found in, and will emit a CTF archive containing both dictionaries instead of a raw dictionary. All types that refer to such conflicting types are also placed in the per-translation-unit child. The definition of an archive in 'ctf.h' is as follows: struct ctf_archive { uint64_t ctfa_magic; uint64_t ctfa_model; uint64_t ctfa_nfiles; uint64_t ctfa_names; uint64_t ctfa_ctfs; }; typedef struct ctf_archive_modent { uint64_t name_offset; uint64_t ctf_offset; } ctf_archive_modent_t; (Note one irregularity here: the 'ctf_archive_t' is not a typedef to 'struct ctf_archive', but a different typedef, private to 'libctf', so that things that are not really archives can be made to appear as if they were.) All the above items are always in little-endian byte order, regardless of the machine endianness. The archive header has the following fields: Offset Name Description ------------------------------------------------------------------------------------------ 0x00 'uint64_t ctfa_magic' The magic number for archives, 'CTFA_MAGIC': 0x8b47f2a4d7623eeb. 0x08 'uint64_t ctfa_model' The data model for this archive: an arbitrary integer that serves no purpose but to be handed back by the libctf API. *Note Data models::. 0x10 'uint64_t ctfa_nfiles' The number of CTF dictionaries in this archive. 0x18 'uint64_t ctfa_names' Offset of the name table, in bytes from the start of the archive. The name table is an array of 'struct ctf_archive_modent_t[ctfa_nfiles]'. 0x20 'uint64_t ctfa_ctfs' Offset of the CTF table. Each element starts with a 'uint64_t' size, followed by a CTF dictionary. The array pointed to by 'ctfa_names' is an array of entries of 'ctf_archive_modent': Offset Name Description --------------------------------------------------------------------------------- 0x00 'uint64_t name_offset' Offset of this name, in bytes from the start of the archive. 0x08 'uint64_t ctf_offset' Offset of this CTF dictionary, in bytes from the start of the archive. The 'ctfa_names' array is sorted into ASCIIbetical order by name (i.e. by the result of dereferencing the 'name_offset'). The archive file also contains a name table and a table of CTF dictionaries: these are pointed to by the structures above. The name table is a simple strtab which is not required to be sorted; the dictionary array is described above in the entry for 'ctfa_ctfs'. The relative order of these various parts is not defined, except that the header naturally always comes first.  File: ctf-spec.info, Node: CTF dictionaries, Next: Index, Prev: CTF archive, Up: Top 2 CTF dictionaries ****************** CTF dictionaries consist of a header, starting with a premable, and a number of sections. * Menu: * CTF Preamble:: * CTF header:: * The type section:: * The symtypetab sections:: * The variable section:: * The label section:: * The string section:: * Data models:: * Limits of CTF::  File: ctf-spec.info, Node: CTF Preamble, Next: CTF header, Up: CTF dictionaries 2.1 CTF Preamble ================ The preamble is the only part of the CTF dictionary whose format cannot vary between versions. It is never compressed. It is correspondingly simple: typedef struct ctf_preamble { unsigned short ctp_magic; unsigned char ctp_version; unsigned char ctp_flags; } ctf_preamble_t; '#define's are provided under the names 'cth_magic', 'cth_version' and 'cth_flags' to make the fields of the 'ctf_preamble_t' appear to be part of the 'ctf_header_t', so consuming programs rarely need to consider the existence of the preamble as a separate structure. Offset Name Description ------------------------------------------------------------------------------- 0x00 'unsigned short ctp_magic' The magic number for CTF dictionaries, 'CTF_MAGIC': 0xdff2. 0x02 'unsigned char ctp_version' The version number of this CTF dictionary. 0x03 'ctp_flags' Flags for this CTF file. *Note CTF file-wide flags::. Every element of a dictionary must be naturally aligned unless otherwise specified. (This restriction will be lifted in later versions.) CTF dictionaries are stored in the native endianness of the system that generates them: the consumer (e.g., 'libctf') can detect whether to endian-flip a CTF dictionary by inspecting the 'ctp_magic'. (If it appears as 0xf2df, endian-flipping is needed.) The version of the CTF dictionary can be determined by inspecting 'ctp_version'. The following versions are currently valid, and 'libctf' can read all of them: Version Number Description ------------------------------------------------------------------------------------------- 'CTF_VERSION_1' 1 First version, rare. Very similar to Solaris CTF. 'CTF_VERSION_1_UPGRADED_3' 2 First version, upgraded to v3 or higher and written out again. Name may change. Very rare. 'CTF_VERSION_2' 3 Second version, with many range limits lifted. 'CTF_VERSION_3' 4 Third and current version, documented here. This section documents 'CTF_VERSION_3'. * Menu: * CTF file-wide flags::  File: ctf-spec.info, Node: CTF file-wide flags, Up: CTF Preamble 2.1.1 CTF file-wide flags ------------------------- The preamble contains bitflags in its 'ctp_flags' field that describe various file-wide properties. Some of the flags are valid only for particular file-format versions, which means the flags can be used to fix file-format bugs. Consumers that see unknown flags should accordingly assume that the dictionary is not comprehensible, and refuse to open them. The following flags are currently defined. Many are bug workarounds, valid only in CTFv3, and will not be valid in any future versions: the same values may be reused for other flags in v4+. Flag Versions Value Meaning --------------------------------------------------------------------------------------- 'CTF_F_COMPRESS' All 0x1 Compressed with zlib 'CTF_F_NEWFUNCINFO' 3 only 0x2 "New-format" func info section. 'CTF_F_IDXSORTED' 3+ 0x4 The index section is in sorted order 'CTF_F_DYNSTR' 3 only 0x8 The external strtab is in '.dynstr' and the symtab used is '.dynsym'. *Note The string section:: 'CTF_F_NEWFUNCINFO' and 'CTF_F_IDXSORTED' relate to the function info and data object sections. *Note The symtypetab sections::. Further flags (and further compression methods) wil be added in future.  File: ctf-spec.info, Node: CTF header, Next: The type section, Prev: CTF Preamble, Up: CTF dictionaries 2.2 CTF header ============== The CTF header is the first part of a CTF dictionary, including the preamble. All parts of it other than the preamble (*note CTF Preamble::) can vary between CTF file versions and are never compressed. It contains things that apply to the dictionary as a whole, and a table of the sections into which the rest of the dictionary is divided. The sections tile the file: each section runs from the offset given until the start of the next section. Only the last section cannot follow this rule, so the header has a length for it instead. All section offsets, here and in the rest of the CTF file, are relative to the _end_ of the header. (This is annoyingly different to how offsets in CTF archives are handled.) This is the first structure to include offsets into the string table, which are not straight references because CTF dictionaries can include references into the ELF string table to save space, as well as into the string table internal to the CTF dictionary. *Note The string section:: for more on these. Offset 0 is always the null string. typedef struct ctf_header { ctf_preamble_t cth_preamble; uint32_t cth_parlabel; uint32_t cth_parname; uint32_t cth_cuname; uint32_t cth_lbloff; uint32_t cth_objtoff; uint32_t cth_funcoff; uint32_t cth_objtidxoff; uint32_t cth_funcidxoff; uint32_t cth_varoff; uint32_t cth_typeoff; uint32_t cth_stroff; uint32_t cth_strlen; } ctf_header_t; In detail: Offset Name Description ----------------------------------------------------------------------------------------------- 0x00 'ctf_preamble_t cth_preamble' The preamble (conceptually embedded in the header). *Note CTF Preamble:: 0x04 'uint32_t cth_parlabel' The parent label, if deduplication happened against a specific label: a strtab offset. *Note The label section::. Currently unused and always 0, but may be used in future when semantics are attached to the label section. 0x08 'uint32_t cth_parname' The name of the parent dictionary deduplicated against: a strtab offset. Interpretation is up to the consumer (usually a CTF archive member name). 0 (the null string) if this is not a child dictionary. 0x1c 'uint32_t cth_cuname' The name of the compilation unit, for consumers like GDB that want to know the name of CUs associated with single CUs: a strtab offset. 0 if this dictionary describes types from many CUs. 0x10 'uint32_t cth_lbloff' The offset of the label section, which tiles the type space into named regions. *Note The label section::. 0x14 'uint32_t cth_objtoff' The offset of the data object symtypetab section, which maps ELF data symbols to types. *Note The symtypetab sections::. 0x18 'uint32_t cth_funcoff' The offset of the function info symtypetab section, which maps ELF function symbols to a return type and arg types. *Note The symtypetab sections::. 0x1c 'uint32_t cth_objtidxoff' The offset of the object index section, which maps ELF object symbols to entries in the data object section. *Note The symtypetab sections::. 0x20 'uint32_t cth_funcidxoff' The offset of the function info index section, which maps ELF function symbols to entries in the function info section. *Note The symtypetab sections::. 0x24 'uint32_t cth_varoff' The offset of the variable section, which maps string names to types. *Note The variable section::. 0x28 'uint32_t cth_typeoff' The offset of the type section, the core of CTF, which describes types using variable-length array elements. *Note The type section::. 0x2c 'uint32_t cth_stroff' The offset of the string section. *Note The string section::. 0x30 'uint32_t cth_strlen' The length of the string section (not an offset!). The CTF file ends at this point. Everything from this point on (until the end of the file at 'cth_stroff' + 'cth_strlen') is compressed with zlib if 'CTF_F_COMPRESS' is set in the preamble's 'ctp_flags'.  File: ctf-spec.info, Node: The type section, Next: The symtypetab sections, Prev: CTF header, Up: CTF dictionaries 2.3 The type section ==================== This section is the most important section in CTF, describing all the top-level types in the program. It consists of an array of type structures, each of which describes a type of some "kind": each kind of type has some amount of variable-length data associated with it (some kinds have none). The amount of variable-length data associated with a given type can be determined by inspecting the type, so the reading code can walk through the types in sequence at opening time. Each type structure is one of a set of overlapping structures in a discriminated union of sorts: the variable-length data for each type immediately follows the type's type structure. Here's the largest of the overlapping structures, which is only needed for huge types and so is very rarely seen: typedef struct ctf_type { uint32_t ctt_name; uint32_t ctt_info; __extension__ union { uint32_t ctt_size; uint32_t ctt_type; }; uint32_t ctt_lsizehi; uint32_t ctt_lsizelo; } ctf_type_t; Here's the much more common smaller form: typedef struct ctf_stype { uint32_t ctt_name; uint32_t ctt_info; __extension__ union { uint32_t ctt_size; uint32_t ctt_type; }; } ctf_type_t; If 'ctt_size' is the #define 'CTF_LSIZE_SENT', 0xffffffff, this type is described by a 'ctf_type_t': otherwise, a 'ctf_stype_t'. Here's what the fields mean: Offset Name Description ----------------------------------------------------------------------------------------------------- 0x00 'uint32_t ctt_name' Strtab offset of the type name, if any (0 if none). 0x04 'uint32_t ctt_info' The "info word", containing information on the kind of this type, its variable-length data and whether it is visible to name lookup. See *Note The info word::. 0x08 'uint32_t ctt_size' The size of this type, if this type is of a kind for which a size needs to be recorded (constant-size types don't need one). If this is 'CTF_LSIZE_SENT', this type is a huge type described by 'ctf_type_t'. 0x08 'uint32_t ctt_type' The type this type refers to, if this type is of a kind which refers to other types (like a pointer). All such types are fixed-size, and no types that are variable-size refer to other types, so 'ctt_size' and 'ctt_type' overlap. All type kinds that use 'ctt_type' are described by 'ctf_stype_t', not 'ctf_type_t'. *Note Type indexes and type IDs::. 0x0c ('ctf_type_t' 'uint32_t ctt_lsizehi' The high 32 bits of the size of a very large type. only) The 'CTF_TYPE_LSIZE' macro can be used to get a 64-bit size out of this field and the next one. 'CTF_SIZE_TO_LSIZE_HI' splits the 'ctt_lsizehi' out of it again. 0x10 ('ctf_type_t' 'uint32_t ctt_lsizelo' The low 32 bits of the size of a very large type. only) 'CTF_SIZE_TO_LSIZE_LO' splits the 'ctt_lsizelo' out of a 64-bit size. Two aspects of this need further explanation: the info word, and what exactly a type ID is and how you determine it. (Information on the various type-kind- dependent things, like whether 'ctt_size' or 'ctt_type' is used, is described in the section devoted to each kind.) * Menu: * The info word:: * Type indexes and type IDs:: * Type kinds:: * Integer types:: * Floating-point types:: * Slices:: * Pointers typedefs and cvr-quals:: * Arrays:: * Function pointers:: * Enums:: * Structs and unions:: * Forward declarations::  File: ctf-spec.info, Node: The info word, Next: Type indexes and type IDs, Up: The type section 2.3.1 The info word, ctt_info ----------------------------- The info word is a bitfield split into three parts. From MSB to LSB: Bit offset Name Description ------------------------------------------------------------------------------------------ 26-31 'kind' Type kind: *note Type kinds::. 25 'isroot' 1 if this type is visible to name lookup 0-24 'vlen' Length of variable-length data for this type (some kinds only). The variable-length data directly follows the 'ctf_type_t' or 'ctf_stype_t'. This is a kind-dependent array length value, not a length in bytes. Some kinds have no variable-length data, or fixed-size variable-length data, and do not use this value. The most mysterious of these is undoubtedly 'isroot'. This indicates whether types with names (nonzero 'ctt_name') are visible to name lookup: if zero, this type is considered a "non-root type" and you can't look it up by name at all. Multiple types with the same name in the same C namespace (struct, union, enum, other) can exist in a single dictionary, but only one of them may have a nonzero value for 'isroot'. 'libctf' validates this at open time and refuses to open dictionaries that violate this constraint. Historically, this feature was introduced for the encoding of bitfields (*note Integer types::): for instance, int bitfields will all be named 'int' with different widths or offsets, but only the full-width one at offset zero is wanted when you look up the type named 'int'. With the introduction of slices (*note Slices::) as a more general bitfield encoding mechanism, this is less important, but we still use non-root types to handle conflicts if the linker API is used to fuse multiple translation units into one dictionary and those translation units contain types with the same name and conflicting definitions. (We do not discuss this further here, because the linker never does this: only specialized type mergers do, like that used for the Linux kernel. The libctf documentation will describe this in more detail.) The 'CTF_TYPE_INFO' macro can be used to compose an info word from a 'kind', 'isroot', and 'vlen'; 'CTF_V2_INFO_KIND', 'CTF_V2_INFO_ISROOT' and 'CTF_V2_INFO_VLEN' pick it apart again.  File: ctf-spec.info, Node: Type indexes and type IDs, Next: Type kinds, Prev: The info word, Up: The type section 2.3.2 Type indexes and type IDs ------------------------------- Types are referred to within the CTF file via "type IDs". A type ID is a number from 0 to 2^32, from a space divided in half. Types 2^31-1 and below are in the "parent range": these IDs are used for dictionaries that have not had any other dictionary 'ctf_import'ed into it as a parent. Both completely standalone dictionaries and parent dictionaries with children hanging off them have types in this range. Types 2^31 and above are in the "child range": only types in child dictionaries are in this range. These IDs appear in 'ctf_type_t.ctt_type' (*note The type section::), but the types themselves have no visible ID: quite intentionally, because adding an ID uses space, and every ID is different so they don't compress well. The IDs are implicit: at open time, the consumer walks through the entire type section and counts the types in the type section. The type section is an array of variable-length elements, so each entry could be considered as having an index, starting from 1. We count these indexes and associate each with its corresponding 'ctf_type_t' or 'ctf_stype_t'. Lookups of types with IDs in the parent space look in the parent dictionary if this dictionary has one associated with it; lookups of types with IDs in the child space error out if the dictionary does not have a parent, and otherwise convert the ID into an index by shaving off the top bit and look up the index in the child. These properties mean that the same dictionary can be used as a parent of child dictionaries and can also be used directly with no children at all, but a dictionary created as a child dictionary must always be associated with a parent -- usually, the same parent -- because its references to its own types have the high bit turned on and this is only flipped off again if this is a child dictionary. (This is not a problem, because if you _don't_ associate the child with a parent, any references within it to its parent types will fail, and there are almost certain to be many such references, or why is it a child at all?) This does mean that consumers should keep a close eye on the distinction between type IDs and type indexes: if you mix them up, everything will appear to work as long as you're only using parent dictionaries or standalone dictionaries, but as soon as you start using children, everything will fail horribly. Type index zero, and type ID zero, are used to indicate that this type cannot be represented in CTF as currently constituted: they are emitted by the compiler, but all type chains that terminate in the unknown type are erased at link time (structure fields that use them just vanish, etc). So you will probably never see a use of type zero outside the symtypetab sections, where they serve as sentinels of sorts, to indicate symbols with no associated type. The macros 'CTF_V2_TYPE_TO_INDEX' and 'CTF_V2_INDEX_TO_TYPE' may help in translation between types and indexes: 'CTF_V2_TYPE_ISPARENT' and 'CTF_V2_TYPE_ISCHILD' can be used to tell whether a given ID is in the parent or child range. It is quite possible and indeed common for type IDs to point forward in the dictionary, as well as backward.  File: ctf-spec.info, Node: Type kinds, Next: Integer types, Prev: Type indexes and type IDs, Up: The type section 2.3.3 Type kinds ---------------- Every type in CTF is of some "kind". Each kind is some variety of C type: all structures are a single kind, as are all unions, all pointers, all arrays, all integers regardless of their bitfield width, etc. The kind of a type is given in the 'kind' field of the 'ctt_info' word (*note The info word::). The space of type kinds is only a quarter full so far, so there is plenty of room for expansion. It is likely that in future versions of the file format, types with smaller kinds will be more efficiently encoded than types with larger kinds, so their numerical value will actually start to matter in future. (So these IDs will probably change their numerical values in a later release of this format, to move more frequently-used kinds like structures and cv-quals towards the top of the space, and move rarely-used kinds like integers downwards. Yes, integers are rare: how many kinds of 'int' are there in a program? They're just very frequently _referenced_.) Here's the set of kinds so far. Each kind has a '#define' associated with it, also given here. Kind Macro Purpose ---------------------------------------------------------------------------------------- 0 'CTF_K_UNKNOWN' Indicates a type that cannot be represented in CTF, or that is being skipped. It is very similar to type ID 0, except that you can have _multiple_, distinct types of kind 'CTF_K_UNKNOWN'. 1 'CTF_K_INTEGER' An integer type. *Note Integer types::. 2 'CTF_K_FLOAT' A floating-point type. *Note Floating-point types::. 3 'CTF_K_POINTER' A pointer. *Note Pointers typedefs and cvr-quals::. 4 'CTF_K_ARRAY' An array. *Note Arrays::. 5 'CTF_K_FUNCTION' A function pointer. *Note Function pointers::. 6 'CTF_K_STRUCT' A structure. *Note Structs and unions::. 7 'CTF_K_UNION' A union. *Note Structs and unions::. 8 'CTF_K_ENUM' An enumerated type. *Note Enums::. 9 'CTF_K_FORWARD' A forward. *Note Forward declarations::. 10 'CTF_K_TYPEDEF' A typedef. *Note Pointers typedefs and cvr-quals::. 11 'CTF_K_VOLATILE' A volatile-qualified type. *Note Pointers typedefs and cvr-quals::. 12 'CTF_K_CONST' A const-qualified type. *Note Pointers typedefs and cvr-quals::. 13 'CTF_K_RESTRICT' A restrict-qualified type. *Note Pointers typedefs and cvr-quals::. 14 'CTF_K_SLICE' A slice, a change of the bit-width or offset of some other type. *Note Slices::. Now we cover all type kinds in turn. Some are more complicated than others.  File: ctf-spec.info, Node: Integer types, Next: Floating-point types, Prev: Type kinds, Up: The type section 2.3.4 Integer types ------------------- Integral types are all represented as types of kind 'CTF_K_INTEGER'. These types fill out 'ctt_size' in the 'ctf_stype_t' with the size in bytes of the integral type in question. They are always represented by 'ctf_stype_t', never 'ctf_type_t'. Their variable-length data is one 'uint32_t' in length: 'vlen' in the info word should be disregarded and is always zero. The variable-length data for integers has multiple items packed into it much like the info word does. Bit offset Name Description ----------------------------------------------------------------------------------- 24-31 Encoding The desired display representation of this integer. You can extract this field with the 'CTF_INT_ENCODING' macro. See below. 16-23 Offset The offset of this integral type in bits from the start of its enclosing structure field, adjusted for endianness: *note Structs and unions::. You can extract this field with the 'CTF_INT_OFFSET' macro. 0-15 Bit-width The width of this integral type in bits. You can extract this field with the 'CTF_INT_BITS' macro. If you choose, bitfields can be represented using the things above as a sort of integral type with the 'isroot' bit flipped off and the offset and bits values set in the vlen word: you can populate it with the 'CTF_INT_DATA' macro. (But it may be more convenient to represent them using slices of a full-width integer: *note Slices::.) Integers that are bitfields usually have a 'ctt_size' rounded up to the nearest power of two in bytes, for natural alignment (e.g. a 17-bit integer would have a 'ctt_size' of 4). However, not all types are naturally aligned on all architectures: packed structures may in theory use integral bitfields with different 'ctt_size', though this is rarely observed. The "encoding" for integers is a bit-field comprised of the values below, which consumers can use to decide how to display values of this type: Offset Name Description -------------------------------------------------------------------------------------------------------- 0x01 'CTF_INT_SIGNED' If set, this is a signed int: if false, unsigned. 0x02 'CTF_INT_CHAR' If set, this is a char type. It is platform-dependent whether unadorned 'char' is signed or not: the 'CTF_CHAR' macro produces an integral type suitable for the definition of 'char' on this platform. 0x04 'CTF_INT_BOOL' If set, this is a boolean type. (It is theoretically possible to turn this and 'CTF_INT_CHAR' on at the same time, but it is not clear what this would mean.) 0x08 'CTF_INT_VARARGS' If set, this is a varargs-promoted value in a K&R function definition. This is not currently produced or consumed by anything that we know of: it is set aside for future use. The GCC "'Complex int'" and fixed-point extensions are not yet supported: references to such types will be emitted as type 0.  File: ctf-spec.info, Node: Floating-point types, Next: Slices, Prev: Integer types, Up: The type section 2.3.5 Floating-point types -------------------------- Floating-point types are all represented as types of kind 'CTF_K_FLOAT'. Like integers, These types fill out 'ctt_size' in the 'ctf_stype_t' with the size in bytes of the floating-point type in question. They are always represented by 'ctf_stype_t', never 'ctf_type_t'. This part of CTF shows many rough edges in the more obscure corners of floating-point handling, and is likely to change in format v4. The variable-length data for floats has multiple items packed into it just like integers do: Bit offset Name Description ------------------------------------------------------------------------------------------- 24-31 Encoding The desired display representation of this float. You can extract this field with the 'CTF_FP_ENCODING' macro. See below. 16-23 Offset The offset of this floating-point type in bits from the start of its enclosing structure field, adjusted for endianness: *note Structs and unions::. You can extract this field with the 'CTF_FP_OFFSET' macro. 0-15 Bit-width The width of this floating-point type in bits. You can extract this field with the 'CTF_FP_BITS' macro. The purpose of the floating-point offset and bit-width is somewhat opaque, since there are no such things as floating-point bitfields in C: the bit-width should be filled out with the full width of the type in bits, and the offset should always be zero. It is likely that these fields will go away in the future. As with integers, you can use 'CTF_FP_DATA' to assemble one of these vlen items from its component parts. The "encoding" for floats is not a bitfield but a simple value indicating the display representation. Many of these are unused, relate to Solaris-specific compiler extensions, and will be recycled in future: some are unused and will become used in future. Offset Name Description ---------------------------------------------------------------------------------------------- 1 'CTF_FP_SINGLE' This is a single-precision IEEE 754 'float'. 2 'CTF_FP_DOUBLE' This is a double-precision IEEE 754 'double'. 3 'CTF_FP_CPLX' This is a 'Complex float'. 4 'CTF_FP_DCPLX' This is a 'Complex double'. 5 'CTF_FP_LDCPLX' This is a 'Complex long double'. 6 'CTF_FP_LDOUBLE' This is a 'long double'. 7 'CTF_FP_INTRVL' This is a 'float' interval type, a Solaris-specific extension. Unused: will be recycled. 8 'CTF_FP_DINTRVL' This is a 'double' interval type, a Solaris-specific extension. Unused: will be recycled. 9 'CTF_FP_LDINTRVL' This is a 'long double' interval type, a Solaris-specific extension. Unused: will be recycled. 10 'CTF_FP_IMAGRY' This is a the imaginary part of a 'Complex float'. Not currently generated. May change. 11 'CTF_FP_DIMAGRY' This is a the imaginary part of a 'Complex double'. Not currently generated. May change. 12 'CTF_FP_LDIMAGRY' This is a the imaginary part of a 'Complex long double'. Not currently generated. May change. The use of the complex floating-point encodings is obscure: it is possible that 'CTF_FP_CPLX' is meant to be used for only the real part of complex types, and 'CTF_FP_IMAGRY' et al for the imaginary part - but for now, we are emitting 'CTF_FP_CPLX' to cover the entire type, with no way to get at its constituent parts. There appear to be no uses of these encodings anywhere, so they are quite likely to change incompatibly in future.  File: ctf-spec.info, Node: Slices, Next: Pointers typedefs and cvr-quals, Prev: Floating-point types, Up: The type section 2.3.6 Slices ------------ Slices, with kind 'CTF_K_SLICE', are an unusual CTF construct: they do not directly correspond to any C type, but are a way to model other types in a more convenient fashion for CTF generators. A slice is like a pointer or other reference type in that they are always represented by 'ctf_stype_t': but unlike pointers and other reference types, they populate the 'ctt_size' field just like integral types do, and come with an attached encoding and transform the encoding of the underlying type. The underlying type is described in the variable-length data, similarly to structure and union fields: see below. Requests for the type size should also chase down to the referenced type. Slices are always nameless: 'ctt_name' is always zero for them. (The 'libctf' API behaviour is unusual as well, and justifies the existence of slices: 'ctf_type_kind' never returns 'CTF_K_SLICE' but always the underlying type kind, so that consumers never need to know about slices: they can tell if an apparent integer is actually a slice if they need to by calling 'ctf_type_reference', which will uniquely return the underlying integral type rather than erroring out with 'ECTF_NOTREF' if this is actually a slice. So slices act just like an integer with an encoding, but more closely mirror DWARF and other debugging information formats by allowing CTF file creators to represent a bitfield as a slice of an underlying integral type.) The vlen in the info word for a slice should be ignored and is always zero. The variable-length data for a slice is a single 'ctf_slice_t': typedef struct ctf_slice { uint32_t cts_type; unsigned short cts_offset; unsigned short cts_bits; } ctf_slice_t; Offset Name Description ---------------------------------------------------------------------------------------- 0x0 'uint32_t cts_type' The type this slice is a slice of. Must be an integral type (or a floating-point type, but this nonsensical option will go away in v4.) 0x4 'unsigned short cts_offset' The offset of this integral type in bits from the start of its enclosing structure field, adjusted for endianness: *note Structs and unions::. Identical semantics to the 'CTF_INT_OFFSET' field: *note Integer types::. This field is much too long, because the maximum possible offset of an integral type would easily fit in a char: this field is bigger just for the sake of alignment. This will change in v4. 0x6 'unsigned short cts_bits' The bit-width of this integral type. Identical semantics to the 'CTF_INT_BITS' field: *note Integer types::. As above, this field is really too large and will shrink in v4.  File: ctf-spec.info, Node: Pointers typedefs and cvr-quals, Next: Arrays, Prev: Slices, Up: The type section 2.3.7 Pointers, typedefs, and cvr-quals --------------------------------------- Pointers, 'typedef's, and 'const', 'volatile' and 'restrict' qualifiers are represented identically except for their type kind (though they may be treated differently by consuming libraries like 'libctf', since pointers affect assignment-compatibility in ways cvr-quals do not, and they may have different alignment requirements, etc). All of these are represented by 'ctf_stype_t', have no variable data at all, and populate 'ctt_type' with the type ID of the type they point to. These types can stack: a 'CTF_K_RESTRICT' can point to a 'CTF_K_CONST' which can point to a 'CTF_K_POINTER' etc. They are all unnamed: 'ctt_name' is 0. The size of 'CTF_K_POINTER' is derived from the data model (*note Data models::), i.e. in practice, from the target machine ABI, and is not explicitly represented. The size of other kinds in this set should be determined by chasing ctf_types as necessary until a non-typedef/const/volatile/restrict is found, and using that.  File: ctf-spec.info, Node: Arrays, Next: Function pointers, Prev: Pointers typedefs and cvr-quals, Up: The type section 2.3.8 Arrays ------------ Arrays are encoded as types of kind 'CTF_K_ARRAY' in a 'ctf_stype_t'. Both size and kind for arrays are zero. The variable-length data is a 'ctf_array_t': 'vlen' in the info word should be disregarded and is always zero. typedef struct ctf_array { uint32_t cta_contents; uint32_t cta_index; uint32_t cta_nelems; } ctf_array_t; Offset Name Description ---------------------------------------------------------------------------------------- 0x0 'uint32_t cta_contents' The type of the array elements: a type ID. 0x4 'uint32_t cta_index' The type of the array index: a type ID of an integral type. If this is a variable-length array, the index type ID will be 0 (but the actual index type of this array is probably 'int'). Probably redundant and may be dropped in v4. 0x8 'uint32_t cta_nelems' The number of array elements. 0 for VLAs, and also for the historical variety of VLA which has explicit zero dimensions (which will have a nonzero 'cta_index'.) The size of an array can be computed by simple multiplication of the size of the 'cta_contents' type by the 'cta_nelems'.  File: ctf-spec.info, Node: Function pointers, Next: Enums, Prev: Arrays, Up: The type section 2.3.9 Function pointers ----------------------- Function pointers are explicitly represented in the CTF type section by a type of kind 'CTF_K_FUNCTION', always encoded with a 'ctf_stype_t'. The 'ctt_type' is the function return type ID. The 'vlen' in the info word is the number of arguments, each of which is a type ID, a 'uint32_t': if the last argument is 0, this is a varargs function and the number of arguments is one less than indicated by the vlen. If the number of arguments is odd, a single 'uint32_t' of padding is inserted to maintain alignment.  File: ctf-spec.info, Node: Enums, Next: Structs and unions, Prev: Function pointers, Up: The type section 2.3.10 Enums ------------ Enumerated types are represented as types of kind 'CTF_K_ENUM' in a 'ctf_stype_t'. The 'ctt_size' is always the size of an int from the data model (enum bitfields are implemented via slices). The 'vlen' is a count of enumerations, each of which is represented by a 'ctf_enum_t' in the vlen: typedef struct ctf_enum { uint32_t cte_name; int32_t cte_value; } ctf_enum_t; Offset Name Description ------------------------------------------------------------------------ 0x0 'uint32_t cte_name' Strtab offset of the enumeration name. Must not be 0. 0x4 'int32_t cte_value' The enumeration value. Enumeration values larger than 2^32 are not yet supported and are omitted from the enumeration. (v4 will lift this restriction by encoding the value differently.) Forward declarations of enums are not implemented with this kind: *note Forward declarations::. Enumerated type names, as usual in C, go into their own namespace, and do not conflict with non-enums, structs, or unions with the same name.  File: ctf-spec.info, Node: Structs and unions, Next: Forward declarations, Prev: Enums, Up: The type section 2.3.11 Structs and unions ------------------------- Structures and unions are represnted as types of kind 'CTF_K_STRUCT' and 'CTF_K_UNION': their representation is otherwise identical, and it is perfectly allowed for "structs" to contain overlapping fields etc, so we will treat them together for the rest of this section. They fill out 'ctt_size', and use 'ctf_type_t' in preference to 'ctf_stype_t' if the structure size is greater than 'CTF_MAX_SIZE' (0xfffffffe). The vlen for structures and unions is a count of structure fields, but the type used to represent a structure field (and thus the size of the variable-length array element representing the type) depends on the size of the structure: truly huge structures, greater than 'CTF_LSTRUCT_THRESH' bytes in length, use a different type. ('CTF_LSTRUCT_THRESH' is 536870912, so such structures are vanishingly rare: in v4, this representation will change somewhat for greater compactness. It's inherited from v1, where the limits were much lower.) Most structures can get away with using 'ctf_member_t': typedef struct ctf_member_v2 { uint32_t ctm_name; uint32_t ctm_offset; uint32_t ctm_type; } ctf_member_t; Huge structures that are represented by 'ctf_type_t' rather than 'ctf_stype_t' have to use 'ctf_lmember_t', which splits the offset as 'ctf_type_t' splits the size: typedef struct ctf_lmember_v2 { uint32_t ctlm_name; uint32_t ctlm_offsethi; uint32_t ctlm_type; uint32_t ctlm_offsetlo; } ctf_lmember_t; Here's what the fields of 'ctf_member' mean: Offset Name Description --------------------------------------------------------------------------------------------------------- 0x00 'uint32_t ctm_name' Strtab offset of the field name. 0x04 'uint32_t ctm_offset' The offset of this field _in bits_. (Usually, for bitfields, this is machine-word-aligned and the individual field has an offset in bits, but the format allows for the offset to be encoded in bits here.) 0x08 'uint32_t ctm_type' The type ID of the type of the field. Here's what the fields of the very similar 'ctf_lmember' mean: Offset Name Description ------------------------------------------------------------------------------------------------------------ 0x00 'uint32_t ctlm_name' Strtab offset of the field name. 0x04 'uint32_t ctlm_offsethi' The high 32 bits of the offset of this field in bits. 0x08 'uint32_t ctlm_type' The type ID of the type of the field. 0x0c 'uint32_t ctlm_offsetlo' The low 32 bits of the offset of this field in bits. Macros 'CTF_LMEM_OFFSET', 'CTF_OFFSET_TO_LMEMHI' and 'CTF_OFFSET_TO_LMEMLO' serve to extract and install the values of the 'ctlm_offset' fields, much as with the split size fields in 'ctf_type_t'. Unnamed structure and union fields are simply implemented by collapsing the unnamed field's members into the containing structure or union: this does mean that a structure containing an unnamed union can end up being a "structure" with multiple members at the same offset. (A future format revision may collapse 'CTF_K_STRUCT' and 'CTF_K_UNION' into the same kind and decide among them based on whether their members do in fact overlap.) Structure and union type names, as usual in C, go into their own namespace, just as enum type names do. Forward declarations of structures and unions are not implemented with this kind: *note Forward declarations::.  File: ctf-spec.info, Node: Forward declarations, Prev: Structs and unions, Up: The type section 2.3.12 Forward declarations --------------------------- When the compiler encounters a forward declaration of a struct, union, or enum, it emits a type of kind 'CTF_K_FORWARD'. If it later encounters a non- forward declaration of the same thing, it marks the forward as non-root-visible: before link time, therefore, non-root-visible forwards indicate that a non-forward is coming. After link time, forwards are fused with their corresponding non-forwards by the deduplicator where possible. They are kept if there is no non-forward definition (maybe it's not visible from any TU at all) or if 'multiple' conflicting structures with the same name might match it. Otherwise, all other forwards are converted to structures, unions, or enums as appropriate, even across TUs if only one structure could correspond to the forward (after all, all types across all TUs land in the same dictionary unless they conflict, so promoting forwards to their concrete type seems most helpful). A forward has a rather strange representation: it is encoded with a 'ctf_stype_t' but the 'ctt_type' is populated not with a type (if it's a forward, we don't have an underlying type yet: if we did, we'd have promoted it and this wouldn't be a forward any more) but with the 'kind' of the forward. This means that we can distinguish forwards to structs, enums and unions reliably and ensure they land in the appropriate namespace even before the actual struct, union or enum is found.  File: ctf-spec.info, Node: The symtypetab sections, Next: The variable section, Prev: The type section, Up: CTF dictionaries 2.4 The symtypetab sections =========================== These are two very simple sections with identical formats, used by consumers to map from ELF function and data symbols directly to their types. So they are usually populated only in CTF sections that are embedded in ELF objects. Their format is very simple: an array of type IDs. Which symbol each type ID corresponds to depends on whether the optional _index section_ associated with this symtypetab section has any content. If the index section is nonempty, it is an array of 'uint32_t' string table offsets, each giving the name of the symbol whose type is at the same offset in the corresponding non-index section: users can look up symbols in such a table by name. The index section and corresponding symtypetab section is usually ASCIIbetically sorted (indicated by the 'CTF_F_IDXSORTED' flag in the header): if it's sorted, it can be bsearched for a symbol name rather than having to use a slower linear search. If the data object index section is empty, the entries in the data object and function info sections are associated 1:1 with ELF symbols of type 'STT_OBJECT' (for data object) or 'STT_FUNC' (for function info) with a nonzero value: the linker shuffles the symtypetab sections to correspond with the order of the symbols in the ELF file. Symbols with no name, undefined symbols and symbols named "'_START_'" and "'_END_'" are skipped and never appear in either section. Symbols that have no corresponding type are represented by type ID 0. The section may have fewer entries than the symbol table, in which case no later entries have associated types. This format is more compact than an indexed form if most entries have types (since there is no need to record any symbol names), but if the producer and consumer disagree even slightly about which symbols are omitted, the types of all further symbols will be wrong! The compiler always emits indexed symtypetab tables, because there is no symbol table yet. The linker will always have to read them all in and always works through them from start to end, so there is no benefit having the compiler sort them either. The linker (actually, 'libctf''s linking machinery) will automatically sort unsorted indexed sections, and convert indexed sections that contain a lot of pads into the more compact, unindexed form. If child dicts are in use, only symbols that use types actually mentioned in the child appear in the child's symtypetab: symbols that use only types in the parent appear in the parent's symtypetab instead. So the child's symtypetab will almost always be very sparse, and thus will usually use the indexed form even in fully linked objects. (It is, of course, impossible for symbols to exist that use types from multiple child dicts at once, since it's impossible to declare a function in C that uses types that are only visible in two different, disjoint translation units.)  File: ctf-spec.info, Node: The variable section, Next: The label section, Prev: The symtypetab sections, Up: CTF dictionaries 2.5 The variable section ======================== The variable section is a simple array mapping names (strtab entries) to type IDs, intended to provide a replacement for the data object section in dynamic situations in which there is no static ELF strtab but the consumer instead hands back names. The section is sorted into ASCIIbetical order by name for rapid lookup, like the CTF archive name table. The section is an array of these structures: typedef struct ctf_varent { uint32_t ctv_name; uint32_t ctv_type; } ctf_varent_t; Offset Name Description ----------------------------------------------------------- 0x00 'uint32_t ctv_name' Strtab offset of the name 0x04 'uint32_t ctv_type' Type ID of this type There is no analogue of the function info section yet: v4 will probably drop this section in favour of a way to put both indexed (thus, named) and nonindexed symbols into the symtypetab sections at the same time.  File: ctf-spec.info, Node: The label section, Next: The string section, Prev: The variable section, Up: CTF dictionaries 2.6 The label section ===================== The label section is a currently-unused facility allowing the tiling of the type space with names taken from the strtab. The section is an array of these structures: typedef struct ctf_lblent { uint32_t ctl_label; uint32_t ctl_type; } ctf_lblent_t; Offset Name Description ------------------------------------------------------------- 0x00 'uint32_t ctl_label' Strtab offset of the label 0x04 'uint32_t ctl_type' Type ID of the last type covered by this label Semantics will be attached to labels soon, probably in v4 (the plan is to use them to allow multiple disjoint namespaces in a single CTF file, removing many uses of CTF archives, in particular in the '.ctf' section in ELF objects).  File: ctf-spec.info, Node: The string section, Next: Data models, Prev: The label section, Up: CTF dictionaries 2.7 The string section ====================== This section is a simple ELF-format strtab, starting with a zero byte (thus ensuring that the string with offset 0 is the null string, as assumed elsewhere in this spec). The strtab is usually ASCIIbetically sorted to somewhat improve compression efficiency. Where the strtab is unusual is the _references_ to it. CTF has two string tables, the internal strtab and an external strtab associated with the CTF dictionary at open time: usually, this is the ELF dynamic strtab ('.dynstr') of a CTF dictionary embedded in an ELF file. We distinguish between these strtabs by the most significant bit, bit 31, of the 32-bit strtab references: if it is 0, the offset is in the internal strtab: if 1, the offset is in the external strtab. There is a bug workaround in this area: in format v3 (the first version to have working support for external strtabs), the external strtab is '.strtab' unless the 'CTF_F_DYNSTR' flag is set on the dictionary (*note CTF file-wide flags::). Format v4 will introduce a header field that explicitly names the external strtab, making this flag unnecessary.  File: ctf-spec.info, Node: Data models, Next: Limits of CTF, Prev: The string section, Up: CTF dictionaries 2.8 Data models =============== The data model is a simple integer which indicates the ABI in use on this platform. Right now, it is very simple, distinguishing only between 32- and 64-bit types: a model of 1 indicates ILP32, 2 indicats LP64. The mapping from ABI integer to type sizes is hardwired into 'libctf': currently, we use this to hardwire the size of pointers, function pointers, and enumerated types, This is a very kludgy corner of CTF and will probably be replaced with explicit header fields to record this sort of thing in future.  File: ctf-spec.info, Node: Limits of CTF, Prev: Data models, Up: CTF dictionaries 2.9 Limits of CTF ================= The following limits are imposed by various aspects of CTF version 3: 'CTF_MAX_TYPE' Maximum type identifier (maximum number of types accessible with parent and child containers in use): 0xfffffffe 'CTF_MAX_PTYPE' Maximum type identifier in a parent dictioanry: maximum number of types in any one dictionary: 0x7fffffff 'CTF_MAX_NAME' Maximum offset into a string table: 0x7fffffff 'CTF_MAX_VLEN' Maximum number of members in a struct, union, or enum: maximum number of function args: 0xffffff 'CTF_MAX_SIZE' Maximum size of a 'ctf_stype_t' in bytes before we fall back to 'ctf_type_t': 0xfffffffe bytes Other maxima without associated macros: * Maximum value of an enumerated type: 2^32 * Maximum size of an array element: 2^32 These maxima are generally considered to be too low, because C programs can and do exceed them: they will be lifted in format v4.  File: ctf-spec.info, Node: Index, Prev: CTF dictionaries, Up: Top Index ***** [index] * Menu: * alignment: CTF Preamble. (line 33) * archive, CTF archive: CTF archive. (line 6) * Arrays: Arrays. (line 6) * bool: Integer types. (line 6) * Bug workarounds, CTF_F_DYNSTR: The symtypetab sections. (line 6) * Bug workarounds, CTF_F_DYNSTR <1>: The string section. (line 19) * char: Integer types. (line 6) * Child range: Type indexes and type IDs. (line 6) * Complex, double: Floating-point types. (line 6) * Complex, float: Floating-point types. (line 6) * Complex, signed double: Floating-point types. (line 6) * Complex, signed float: Floating-point types. (line 6) * Complex, unsigned double: Floating-point types. (line 6) * Complex, unsigned float: Floating-point types. (line 6) * const: Pointers typedefs and cvr-quals. (line 6) * cta_contents: Arrays. (line 20) * cta_index: Arrays. (line 22) * cta_nelems: Arrays. (line 29) * cte_name: Enums. (line 21) * cte_value: Enums. (line 24) * CTF header: CTF header. (line 6) * CTF versions, versions: CTF Preamble. (line 46) * ctfa_ctfs: CTF archive. (line 76) * ctfa_magic: CTF archive. (line 63) * CTFA_MAGIC: CTF archive. (line 64) * ctfa_model: CTF archive. (line 66) * ctfa_names: CTF archive. (line 72) * ctfa_nfiles: CTF archive. (line 71) * ctf_archive_modent_t: CTF archive. (line 83) * ctf_archive_modent_t, ctf_offset: CTF archive. (line 88) * ctf_archive_modent_t, name_offset: CTF archive. (line 86) * ctf_array_t: Arrays. (line 18) * ctf_array_t, cta_contents: Arrays. (line 20) * ctf_array_t, cta_index: Arrays. (line 22) * ctf_array_t, cta_nelems: Arrays. (line 29) * CTF_CHAR: Integer types. (line 53) * ctf_enum_t: Enums. (line 18) * ctf_enum_t, cte_name: Enums. (line 21) * ctf_enum_t, cte_value: Enums. (line 24) * CTF_FP_BITS: Floating-point types. (line 28) * CTF_FP_CPLX: Floating-point types. (line 47) * CTF_FP_DCPLX: Floating-point types. (line 48) * CTF_FP_DIMAGRY: Floating-point types. (line 60) * CTF_FP_DINTRVL: Floating-point types. (line 54) * CTF_FP_DOUBLE: Floating-point types. (line 46) * CTF_FP_ENCODING: Floating-point types. (line 21) * CTF_FP_IMAGRY: Floating-point types. (line 58) * CTF_FP_INTRVL: Floating-point types. (line 52) * CTF_FP_LDCPLX: Floating-point types. (line 49) * CTF_FP_LDIMAGRY: Floating-point types. (line 62) * CTF_FP_LDINTRVL: Floating-point types. (line 56) * CTF_FP_LDOUBLE: Floating-point types. (line 50) * CTF_FP_OFFSET: Floating-point types. (line 25) * CTF_FP_SINGLE: Floating-point types. (line 45) * CTF_F_COMPRESS: CTF file-wide flags. (line 17) * CTF_F_DYNSTR: CTF file-wide flags. (line 21) * CTF_F_DYNSTR <1>: The symtypetab sections. (line 6) * CTF_F_DYNSTR <2>: The string section. (line 19) * CTF_F_IDXSORTED: CTF file-wide flags. (line 20) * CTF_F_IDXSORTED <1>: The symtypetab sections. (line 6) * CTF_F_NEWFUNCINFO: CTF file-wide flags. (line 19) * ctf_header_t: CTF header. (line 44) * ctf_header_t, cth_cuname: CTF header. (line 61) * ctf_header_t, cth_flags: CTF Preamble. (line 30) * ctf_header_t, cth_funcidxoff: CTF header. (line 82) * ctf_header_t, cth_funcoff: CTF header. (line 74) * ctf_header_t, cth_lbloff: CTF header. (line 66) * ctf_header_t, cth_magic: CTF Preamble. (line 24) * ctf_header_t, cth_objtidxoff: CTF header. (line 78) * ctf_header_t, cth_objtoff: CTF header. (line 70) * ctf_header_t, cth_parlabel: CTF header. (line 49) * ctf_header_t, cth_parname: CTF header. (line 55) * ctf_header_t, cth_preamble: CTF header. (line 47) * ctf_header_t, cth_strlen: CTF header. (line 98) * ctf_header_t, cth_stroff: CTF header. (line 95) * ctf_header_t, cth_typeoff: CTF header. (line 91) * ctf_header_t, cth_varoff: CTF header. (line 87) * ctf_header_t, cth_version: CTF Preamble. (line 28) * ctf_id_t: Type indexes and type IDs. (line 6) * CTF_INT_BITS: Integer types. (line 28) * CTF_INT_BOOL: Integer types. (line 57) * CTF_INT_CHAR: Integer types. (line 53) * CTF_INT_DATA: Integer types. (line 34) * CTF_INT_DATA <1>: Floating-point types. (line 36) * CTF_INT_ENCODING: Integer types. (line 20) * CTF_INT_OFFSET: Integer types. (line 25) * CTF_INT_SIGNED: Integer types. (line 49) * CTF_K_CONST: Pointers typedefs and cvr-quals. (line 6) * CTF_K_ENUM: Enums. (line 6) * CTF_K_FLOAT: Floating-point types. (line 6) * CTF_K_FORWARD: Forward declarations. (line 6) * CTF_K_INTEGER: Integer types. (line 6) * CTF_K_POINTER: Pointers typedefs and cvr-quals. (line 6) * CTF_K_RESTRICT: Pointers typedefs and cvr-quals. (line 6) * CTF_K_SLICE: Slices. (line 6) * CTF_K_STRUCT: Structs and unions. (line 6) * CTF_K_TYPEDEF: Pointers typedefs and cvr-quals. (line 6) * CTF_K_UNION: Structs and unions. (line 6) * CTF_K_UNKNOWN: Type kinds. (line 31) * CTF_K_VOLATILE: Pointers typedefs and cvr-quals. (line 6) * ctf_lblent_t: The label section. (line 16) * ctf_lblent_t, ctl_label: The label section. (line 19) * ctf_lblent_t, ctl_type: The label section. (line 20) * ctf_lmember_t: Structs and unions. (line 59) * ctf_lmember_t, ctlm_name: Structs and unions. (line 61) * ctf_lmember_t, ctlm_offsethi: Structs and unions. (line 64) * ctf_lmember_t, ctlm_offsetlo: Structs and unions. (line 68) * CTF_LSIZE_SENT: The type section. (line 49) * CTF_LSTRUCT_THRESH: Structs and unions. (line 23) * CTF_MAGIC: CTF Preamble. (line 25) * CTF_MAX_LSIZE: Structs and unions. (line 13) * ctf_member_t: Structs and unions. (line 47) * ctf_member_t, ctlm_type: Structs and unions. (line 65) * ctf_member_t, ctm_name: Structs and unions. (line 49) * ctf_member_t, ctm_offset: Structs and unions. (line 52) * ctf_member_t, ctm_type: Structs and unions. (line 55) * ctf_offset: CTF archive. (line 88) * ctf_preamble_t: CTF Preamble. (line 22) * ctf_preamble_t, ctp_flags: CTF Preamble. (line 30) * ctf_preamble_t, ctp_magic: CTF Preamble. (line 24) * ctf_preamble_t, ctp_version: CTF Preamble. (line 28) * CTF_SIZE_TO_LSIZE_HI: The type section. (line 79) * CTF_SIZE_TO_LSIZE_LO: The type section. (line 83) * ctf_slice_t: Slices. (line 42) * ctf_slice_t, cts_bits: Slices. (line 59) * ctf_slice_t, cts_offset: Slices. (line 49) * ctf_slice_t, cts_type: Slices. (line 44) * ctf_stype_t: The type section. (line 53) * ctf_stype_t, ctt_info: The type section. (line 57) * ctf_stype_t, ctt_size: The type section. (line 62) * ctf_stype_t, ctt_type: The type section. (line 67) * CTF_TYPE_INFO: The info word. (line 45) * CTF_TYPE_LSIZE: The type section. (line 79) * ctf_type_t: The type section. (line 53) * ctf_type_t, ctt_info: The type section. (line 57) * ctf_type_t, ctt_lsizehi: The type section. (line 76) * ctf_type_t, ctt_lsizelo: The type section. (line 82) * ctf_type_t, ctt_size: The type section. (line 62) * CTF_V2_INDEX_TO_TYPE: Type indexes and type IDs. (line 58) * CTF_V2_INFO_ISROOT: The info word. (line 45) * CTF_V2_INFO_KIND: The info word. (line 45) * CTF_V2_INFO_VLEN: The info word. (line 45) * CTF_V2_TYPE_ISCHILD: Type indexes and type IDs. (line 58) * CTF_V2_TYPE_ISPARENT: Type indexes and type IDs. (line 58) * CTF_V2_TYPE_TO_INDEX: Type indexes and type IDs. (line 58) * ctf_varent_t: The variable section. (line 21) * ctf_varent_t, ctv_name: The variable section. (line 24) * ctf_varent_t, ctv_type: The variable section. (line 26) * CTF_VERSION_3: CTF Preamble. (line 46) * cth_cuname: CTF header. (line 61) * cth_flags: CTF Preamble. (line 30) * cth_funcidxoff: CTF header. (line 82) * cth_funcoff: CTF header. (line 74) * cth_lbloff: CTF header. (line 66) * cth_magic: CTF Preamble. (line 24) * cth_objtidxoff: CTF header. (line 78) * cth_objtoff: CTF header. (line 70) * cth_parlabel: CTF header. (line 49) * cth_parname: CTF header. (line 55) * cth_preamble: CTF header. (line 47) * cth_strlen: CTF header. (line 98) * cth_stroff: CTF header. (line 95) * cth_typeoff: CTF header. (line 91) * cth_varoff: CTF header. (line 87) * cth_version: CTF Preamble. (line 28) * ctlm_name: Structs and unions. (line 61) * ctlm_offsethi: Structs and unions. (line 64) * ctlm_offsetlo: Structs and unions. (line 68) * ctl_label: The label section. (line 19) * ctl_type: The label section. (line 20) * ctm_name: Structs and unions. (line 49) * ctm_offset: Structs and unions. (line 52) * ctm_type: Structs and unions. (line 55) * ctm_type <1>: Structs and unions. (line 65) * ctp_flags: CTF Preamble. (line 30) * ctp_flags <1>: CTF Preamble. (line 58) * ctp_magic: CTF Preamble. (line 24) * ctp_version: CTF Preamble. (line 28) * cts_bits: Slices. (line 59) * cts_offset: Slices. (line 49) * cts_type: Slices. (line 44) * ctt_info: The type section. (line 57) * ctt_lsizehi: The type section. (line 76) * ctt_lsizelo: The type section. (line 82) * ctt_name: The type section. (line 55) * ctt_size: The type section. (line 62) * ctt_type: The type section. (line 67) * ctv_name: The variable section. (line 24) * ctv_type: The variable section. (line 26) * cvr-quals: Pointers typedefs and cvr-quals. (line 6) * Data models: Data models. (line 6) * Data object index section: The symtypetab sections. (line 6) * Data object section: The symtypetab sections. (line 6) * dictionary, CTF dictionary: CTF dictionaries. (line 6) * double: Floating-point types. (line 6) * endianness: CTF Preamble. (line 37) * enum: Enums. (line 6) * enum <1>: Forward declarations. (line 6) * Enums: Enums. (line 6) * float: Floating-point types. (line 6) * Floating-point types: Floating-point types. (line 6) * Forwards: Forward declarations. (line 6) * Function info index section: The symtypetab sections. (line 6) * Function info section: The symtypetab sections. (line 6) * Function pointers: Function pointers. (line 6) * int: Integer types. (line 6) * Integer types: Integer types. (line 6) * Label section: The label section. (line 6) * libctf, effect of slices: Slices. (line 30) * Limits: Limits of CTF. (line 6) * long: Integer types. (line 6) * long long: Integer types. (line 6) * name_offset: CTF archive. (line 86) * Overview: Overview. (line 6) * Parent range: Type indexes and type IDs. (line 6) * Pointers: Pointers typedefs and cvr-quals. (line 6) * Pointers, to functions: Function pointers. (line 6) * restrict: Pointers typedefs and cvr-quals. (line 6) * Sections, data object: The symtypetab sections. (line 6) * Sections, data object index: The symtypetab sections. (line 6) * Sections, function info: The symtypetab sections. (line 6) * Sections, function info index: The symtypetab sections. (line 6) * Sections, header: CTF header. (line 6) * Sections, label: The label section. (line 6) * Sections, string: The string section. (line 6) * Sections, symtypetab: The symtypetab sections. (line 6) * Sections, type: The type section. (line 6) * Sections, variable: The variable section. (line 6) * short: Integer types. (line 6) * signed char: Integer types. (line 6) * signed double: Floating-point types. (line 6) * signed float: Floating-point types. (line 6) * signed int: Integer types. (line 6) * signed long: Integer types. (line 6) * signed long long: Integer types. (line 6) * signed short: Integer types. (line 6) * Slices: Slices. (line 6) * Slices, effect on ctf_type_kind: Slices. (line 30) * Slices, effect on ctf_type_reference: Slices. (line 30) * String section: The string section. (line 6) * struct: Structs and unions. (line 6) * struct <1>: Forward declarations. (line 6) * struct ctf_archive: CTF archive. (line 61) * struct ctf_archive, ctfa_ctfs: CTF archive. (line 76) * struct ctf_archive, ctfa_magic: CTF archive. (line 63) * struct ctf_archive, ctfa_model: CTF archive. (line 66) * struct ctf_archive, ctfa_names: CTF archive. (line 72) * struct ctf_archive, ctfa_nfiles: CTF archive. (line 71) * struct ctf_archive_modent: CTF archive. (line 83) * struct ctf_archive_modent, ctf_offset: CTF archive. (line 88) * struct ctf_archive_modent, name_offset: CTF archive. (line 86) * struct ctf_array: Arrays. (line 18) * struct ctf_array, cta_contents: Arrays. (line 20) * struct ctf_array, cta_index: Arrays. (line 22) * struct ctf_array, cta_nelems: Arrays. (line 29) * struct ctf_enum: Enums. (line 18) * struct ctf_enum, cte_name: Enums. (line 21) * struct ctf_enum, cte_value: Enums. (line 24) * struct ctf_header: CTF header. (line 44) * struct ctf_header, cth_cuname: CTF header. (line 61) * struct ctf_header, cth_flags: CTF Preamble. (line 30) * struct ctf_header, cth_funcidxoff: CTF header. (line 82) * struct ctf_header, cth_funcoff: CTF header. (line 74) * struct ctf_header, cth_lbloff: CTF header. (line 66) * struct ctf_header, cth_magic: CTF Preamble. (line 24) * struct ctf_header, cth_objtidxoff: CTF header. (line 78) * struct ctf_header, cth_objtoff: CTF header. (line 70) * struct ctf_header, cth_parlabel: CTF header. (line 49) * struct ctf_header, cth_parname: CTF header. (line 55) * struct ctf_header, cth_preamble: CTF header. (line 47) * struct ctf_header, cth_strlen: CTF header. (line 98) * struct ctf_header, cth_stroff: CTF header. (line 95) * struct ctf_header, cth_typeoff: CTF header. (line 91) * struct ctf_header, cth_varoff: CTF header. (line 87) * struct ctf_header, cth_version: CTF Preamble. (line 28) * struct ctf_lblent: The label section. (line 16) * struct ctf_lblent, ctl_label: The label section. (line 19) * struct ctf_lblent, ctl_type: The label section. (line 20) * struct ctf_lmember_v2: Structs and unions. (line 59) * struct ctf_lmember_v2, ctlm_name: Structs and unions. (line 61) * struct ctf_lmember_v2, ctlm_offsethi: Structs and unions. (line 64) * struct ctf_lmember_v2, ctlm_offsetlo: Structs and unions. (line 68) * struct ctf_lmember_v2, ctlm_type: Structs and unions. (line 65) * struct ctf_member_v2: Structs and unions. (line 47) * struct ctf_member_v2, ctm_name: Structs and unions. (line 49) * struct ctf_member_v2, ctm_offset: Structs and unions. (line 52) * struct ctf_member_v2, ctm_type: Structs and unions. (line 55) * struct ctf_preamble: CTF Preamble. (line 22) * struct ctf_preamble, ctp_flags: CTF Preamble. (line 30) * struct ctf_preamble, ctp_magic: CTF Preamble. (line 24) * struct ctf_preamble, ctp_version: CTF Preamble. (line 28) * struct ctf_slice: Slices. (line 42) * struct ctf_slice, cts_bits: Slices. (line 59) * struct ctf_slice, cts_offset: Slices. (line 49) * struct ctf_slice, cts_type: Slices. (line 44) * struct ctf_stype: The type section. (line 53) * struct ctf_stype, ctt_info: The type section. (line 57) * struct ctf_stype, ctt_size: The type section. (line 62) * struct ctf_stype, ctt_type: The type section. (line 67) * struct ctf_type: The type section. (line 53) * struct ctf_type, ctt_info: The type section. (line 57) * struct ctf_type, ctt_lsizehi: The type section. (line 76) * struct ctf_type, ctt_lsizelo: The type section. (line 82) * struct ctf_type, ctt_size: The type section. (line 62) * struct ctf_varent: The variable section. (line 21) * struct ctf_varent, ctv_name: The variable section. (line 24) * struct ctf_varent, ctv_type: The variable section. (line 26) * Structures: Structs and unions. (line 6) * Symtypetab section: The symtypetab sections. (line 6) * Type IDs: Type indexes and type IDs. (line 6) * Type IDs, ranges: Type indexes and type IDs. (line 6) * Type indexes: Type indexes and type IDs. (line 6) * Type kinds: Type kinds. (line 6) * Type section: The type section. (line 6) * Type, IDs of: Type indexes and type IDs. (line 6) * Type, indexes of: Type indexes and type IDs. (line 6) * Type, kinds of: Type kinds. (line 6) * typedef: Pointers typedefs and cvr-quals. (line 6) * Typedefs: Pointers typedefs and cvr-quals. (line 6) * Types, floating-point: Floating-point types. (line 6) * Types, integer: Integer types. (line 6) * Types, slices of integral: Slices. (line 6) * union: Structs and unions. (line 6) * union <1>: Forward declarations. (line 6) * Unions: Structs and unions. (line 6) * unsigned char: Integer types. (line 6) * unsigned double: Floating-point types. (line 6) * unsigned float: Floating-point types. (line 6) * unsigned int: Integer types. (line 6) * unsigned long: Integer types. (line 6) * unsigned long long: Integer types. (line 6) * unsigned short: Integer types. (line 6) * Unused bits: Floating-point types. (line 52) * Unused bits <1>: Floating-point types. (line 54) * Unused bits <2>: Floating-point types. (line 56) * Unused bits <3>: Floating-point types. (line 58) * Unused bits <4>: Floating-point types. (line 60) * Unused bits <5>: Floating-point types. (line 62) * Variable section: The variable section. (line 6) * volatile: Pointers typedefs and cvr-quals. (line 6)  Tag Table: Node: Top548 Node: Overview878 Node: CTF archive4165 Node: CTF dictionaries8791 Node: CTF Preamble9208 Node: CTF file-wide flags11818 Node: CTF header13276 Node: The type section19200 Node: The info word23865 Node: Type indexes and type IDs26395 Node: Type kinds29763 Node: Integer types33056 Node: Floating-point types36604 Node: Slices40629 Node: Pointers typedefs and cvr-quals44133 Node: Arrays45304 Node: Function pointers47035 Node: Enums47700 Node: Structs and unions48982 Node: Forward declarations52839 Node: The symtypetab sections54418 Node: The variable section57496 Node: The label section58634 Node: The string section59609 Node: Data models60871 Node: Limits of CTF61540 Node: Index62585  End Tag Table  Local Variables: coding: utf-8 End: @ 1.1.1.1 log @Update binutils from 2.34 to 2.39 2022-07-08 Nick Clifton * 2.39 branch created. 2022-07-04 Nick Clifton * libiberty: Synchronize with GCC. Bring in: 2022-07-01 Nick Clifton PR demangler/105039 * rust-demangle.c (demangle_const): Add recursion limit. 2022-06-26 Simon Marchi * configure.ac: Add AC_CONFIG_MACRO_DIRS call. * configure: Re-generate. 2022-04-12 Nick Clifton * zlib: Rebase to the 1.2.12 release. 2022-04-08 Simon Marchi * configure.ac: Add AC_SUBST(PKG_CONFIG_PATH). * configure: Re-generate. * Makefile.tpl (HOST_EXPORTS): Pass PKG_CONFIG_PATH. (PKG_CONFIG_PATH): New. * Makefile.in: Re-generate. 2022-03-15 Jose E. Marchesi * gprofng/src/gp-collect-app.cc (collect::check_args): Use fallthrough comment instead of attribute. 2022-03-11 Vladimir Mezentsev * Makefile.def: Add gprofng module. * configure.ac: Add --enable-gprofng option. * src-release.sh: Add gprofng. * Makefile.in: Regenerate. * configure: Regenerate. * gprofng: New directory. 2022-01-22 Nick Clifton * 2.38 release branch created. 2022-01-17 Nick Clifton Update config.[guess|sub] from upstream: 2022-01-09 Idan Horowitz config.guess: recognize SerenityOS * config.guess (*:SerenityOS:*:*): Recognize. (timestamp): Update. 2022-01-03 Bernhard Voelker Fix GPLv3 license headers to use a comma instead of semicolon See: https://www.gnu.org/licenses/gpl-3.0.html#howto Update license headers automatically using the following script: $ git grep -l 'Foundation; either version 3' \ | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/' * config.guess: Adjust via the above command. (timestamp): Update. * config.sub: Likewise. * doc/config.guess.1: Regenerate. * doc/config.sub.1: Likewise. 2022-01-01 Dmitry V. Levin Update copyright years * config.guess: Update copyright years. * config.sub: Likewise. 2021-12-25 Dmitry V. Levin config.sub: alias armh to armv7l ALT uses armh as an alias for armv7l-alt-linux-gnueabihf since 2012. * config.sub (armh-unknown|armh-alt): Set cpu, vendor, and basic_os. (timestamp): Update. 2021-12-24 Dmitry V. Levin config.sub: alias aarch64le to aarch64 Apparently, QNX reports aarch64 as aarch64le on little-endian machines. * config.sub (aarch64le-*): Set cpu to aarch64. (timestamp): Update. 2021-12-13 Dmitry V. Levin config.sub: fix typo in timestamp * config.sub: Fix timestamp. 2021-11-30 Andreas F. Borchert config.guess: x86_64-pc-solaris2.11 is not properly recognized config.guess guesses Solaris 11 to run on a 32-bit platform despite Solaris 11 no longer supporting any 32-bit platform. See the following code at lines 434 to 445: | SUN_ARCH=i386 | # If there is a compiler, see if it is configured for 64-bit objects. | # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. | # This test works for both compilers. | if test "$CC_FOR_BUILD" != no_compiler_found; then | if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ | grep IS_64BIT_ARCH >/dev/null | then | SUN_ARCH=x86_64 | fi | fi If "cc" is installed, i.e. the Oracle Studio compiler, this one is chosen for $CC_FOR_BUILD. This compiler, the gcc provided by Oracle and also gcc bootstrapped from sources on that platform with a default configuration will by default generate 32-bit binaries -- even on a 64-bit platform. And __amd64 will not be defined for compilations targeting a 32-bit platform. This is different from the corresponding behaviour on GNU/Linux systems where the local platform is targeted by default. Thus, as long as you do not add "-m64" or if you have a custom-built gcc which defaults to 64 bit, you will get 32-bit binaries on Solaris despite living on a 64-bit platform. * config.guess (i86pc:SunOS:5.*:* || i86xen:SunOS:5.*:*): Adapt the test by adding the "-m64" flag. This will work properly for Solaris 10 as well (the last Solaris release that supported x86 32-bit platforms). 2021-10-27 Jordi Sanfeliu Recognize Fiwix $ make check cd testsuite && bash config-guess.sh && rm uname PASS: config.guess checks (137 tests) cd testsuite && bash config-sub.sh PASS: config.sub checks (882 tests) PASS: config.sub idempotency checks (819 tests) PASS: config.sub canonicalise each config.guess testcase (137 tests) * config.guess (i*86:Fiwix:*:*): Recognize. * config.sub (fiwix*): Likewise. 2021-10-18 Kinshuk Dua config.sub: Fix typo in comment Fixes: 5e531d391852a54e7fab2d8ff55625fca514b305 2021-08-14 Nick Bowler config.sub: work around command assignment bug in some shells When combining variable assignments with a shell command, some older shells (notably heirloom-sh and presumably also Solaris 10 /bin/sh) have a bug which causes the assignment to alter the current execution environment whenever the command is a shell built-in. For example: % dash -c 'x=good; x=bad echo >/dev/null; echo $x' good % jsh -c 'x=good; x=bad echo >/dev/null; echo $x' bad The config.sub script contains a few commands of the form: IFS=- read ... which triggers this bug, causing the IFS assignment to persist for the remainder of the script. This can cause misbehaviour in certain cases, for example: % jsh config.sub i386-linux-gnu config.sub: test: unknown operator gnu % jsh config.sub i386-gnu/linux sed: can't read s|gnu/linux|gnu|: No such file or directory Invalid configuration `i386-gnu/linux': OS `' not recognized * config.sub: Save and restore IFS explicitly to avoid shell bugs. * doc/config.sub.1: Regenerate. 2021-08-04 Jeremy Soller config.sub: add Linux Relibc Target $ make check cd testsuite && bash config-guess.sh && rm uname PASS: config.guess checks (136 tests) cd testsuite && bash config-sub.sh PASS: config.sub checks (881 tests) PASS: config.sub idempotency checks (818 tests) PASS: config.sub canonicalise each config.guess testcase (136 tests) * config.sub (relibc*): Recognize. * doc/config.sub.1: Regenerate. * testsuite/config-sub.data (x86_64-linux-relibc): New test. 2021-07-06 Stephanos Ioannidis config.sub: add Zephyr RTOS support This adds the Zephyr RTOS targets in preparation for implementing the Zephyr RTOS-specific toolchain support. $ make check cd testsuite && bash config-guess.sh && rm uname PASS: config.guess checks (136 tests) cd testsuite && bash config-sub.sh PASS: config.sub checks (880 tests) PASS: config.sub idempotency checks (817 tests) PASS: config.sub canonicalise each config.guess testcase (136 tests) * config.sub (zephyr*): Recognize. * doc/config.sub.1: Regenerate. * testsuite/config-sub.data: Add testcases for *-zephyr. 2021-07-03 Ozkan Sezer config.sub: disable shellcheck SC2006 / SC2268 warnings This is in line with the recent config.guess change in commit 12fcf67c9108f4c4b581eaa302088782f0ee40ea * config.sub (shellcheck disable): Add SC2006,SC2268. Suggested-by: Jacob Bachmeyer 2021-07-03 Ozkan Sezer config.sub: normalize the quoting in the `echo FOO | sed ...` Some cases quote the argument to echo and some do not. At runtime it probably does not matter because the substituted values will never contain whitespace, but quoting them all would make shellcheck more useful. * config.sub: Consistently quote the argument of echo. * doc/config.sub.1: Regenerate. Suggested-by: Jacob Bachmeyer 2021-07-02 Ozkan Sezer config.sub: replace POSIX $( ) with classic ` ` throughout This is in line with the recent config.guess change in commit d70c4fa934de164178054c3a60aaa0024ed07c91. The patch was generated using patch-6.gawk script introduced in that commit. * config.sub: Revert POSIX command substitutions to classic form. 2021-06-04 Vineet Gupta Recognize arc32 This is the 32-bit variant of ARCv3 ISA (which is not compatible with the 32-bit ARCv2 ISA) | make check | cd testsuite && bash config-guess.sh && rm uname | PASS: config.guess checks (136 tests) | cd testsuite && bash config-sub.sh | PASS: config.sub checks (864 tests) | PASS: config.sub idempotency checks (801 tests) | PASS: config.sub canonicalise each config.guess testcase (136 tests) * config.guess (arc32:Linux:*:*): Recognize. * config.sub (arc32): Likewise. 2021-05-27 Jacob Bachmeyer Remove automatic patch generators These tools have served their purposes and need not be kept outside of the repository history any longer. This patch as a diff also collects the contents of the various tools in one convenient place. * patch-1.gawk: Remove. * patch-3.gawk: Likewise. * patch-6.gawk: Likewise. 2021-05-26 Jacob Bachmeyer config.guess: manual fixups after previous automatic patch The tool could not handle command substitutions that span lines, but fortunately there were only two such substitutions in the script. The test for which universe is active on Pyramid is rewritten into a case block because it was the only use of a command substitution as an argument to the test command, which would require quoting. * config.guess: Rewrite "if" for Pyramid systems to "case". 2021-05-26 Jacob Bachmeyer config.guess: replace POSIX $( ) with classic ` ` throughout The previous replacement of backticks with POSIX command substitutions was ill-considered and illogical: this script recognizes many archaic machine types that probably never had POSIX shells, therefore it needs to be able to run successfully under pre-POSIX shells. This patch was generated using the included GNU Awk program. * config.guess: Revert POSIX command substitutions to classic form. * patch-6.gawk: Store the tool that produced the automated patch. 2021-05-26 Jacob Bachmeyer config.guess: manual fixup after previous automated patches This patch provides the special handling for the GNU system. As these were two small and unique edits, they were not included in the scripts. This patch also cleans up other minor issues that must be addressed before reverting to classic command substitutions and updates "shellcheck" directives to account for changes in this script and the change in "shellcheck" towards reporting individual portability issues. 2021-05-26 Jacob Bachmeyer config.guess: automatic fixups after previous automated patch This patch was generated using the following command: sed -i config.guess \ -e '/="[^"]\+"\(-\|$\)/s/="\([^"([:space:])]\+\)"/=\1/' \ -e '/="[^"]\+"[[:alnum:]]/s/="\$\([^([:space:])]\+\)"/=${\1}/' \ -e \ '/\$(echo[^|]\+|/s/\([^[:space:]]\)[[:space:]]*|[[:space:]]*sed/\1 | sed/g' * config.guess: Remove unneeded quotes in other variable assignments, standardize spacing for "echo ... | sed" substitutions. 2021-05-26 Jacob Bachmeyer config.guess: remove unneeded quotes and factor command substitutions This is further cleanup and simplifies some constructs that can confuse Emacs' syntax highlighting while generally reducing required quoting. This patch was generated using the included GNU Awk program. * config.guess: Remove unneeded variable quotes and factor out command substitutions when setting GUESS. * patch-3.gawk: Store the tool that produced the automated patch. 2021-05-25 Jacob Bachmeyer config.guess: manual fixups after previous automatic patch * config.guess: Adjust a few "leftover" cases that the tool could not easily recognize and fixes comment indentation in a few other special cases. 2021-05-25 Jacob Bachmeyer config.guess: use intermediate variable with uname results This will allow quoting to be significantly simplified in another pass through the file. This patch was generated using the included GNU Awk program. * config.guess: Use GUESS variable to hold results of uname analysis. * patch-1.gawk: Store the tool that produced the automated patch. 2021-05-25 Jacob Bachmeyer config.guess: introduce intermediate variable with uname results This will allow quoting to be significantly simplified in another pass through the file. * config.guess: Introduce GUESS variable to hold results of uname analysis. 2021-05-24 Dmitry V. Levin config.guess: fix shellcheck warning SC2154 While, according to Plan 9 documentation, the environment variable $cputype is set to the name of the kernel's CPU's architecture, shellcheck warns that cputype is referenced but not assigned. Be on the safe side and do not use cputype if it is not defined or empty. * config.guess (*:Plan9:*:*): Fix shellcheck warning SC2154. 2021-05-24 Dmitry V. Levin config.guess: remove redundant quotes in case commands According to the GNU Autoconf Portable Shell Programming manual, the Bourne shell does not systematically split variables and back-quoted expressions, in particular on the right-hand side of assignments and in the argument of 'case'. The change is made automatically using the following command: $ sed -E -i 's/(\)/\1\2\3/' config.guess * config.guess: Simplify case commands by removing quotes around the argument. Suggested-by: Jacob Bachmeyer 2021-05-24 Dmitry V. Levin config.guess: simplify exit status workaround on alphaev67-dec-osf5.1 Commit 29865ea8a5622cdd80b7a69a0afa78004b4cd311 introduced an exit trap reset before exiting to avoid a spurious non-zero exit status on alphaev67-dec-osf5.1. Simplify that code a bit by moving the exit trap reset around. * config.guess (alpha:OSF1:*:*): Reset exit trap earlier. * doc/config.guess.1: Regenerate. 2021-10-29 Eli Zaretskii * gdb/doc/gdb.texinfo (Command Options): (Data): Document '-memory-tag-violations'. Update the example. 2021-09-28 Andrew Burgess * src-release.sh (GDB_SUPPPORT_DIRS): Add libbacktrace. 2021-09-27 Nick Alcock PR libctf/27967 * libtool.m4 (LT_PATH_NM): Try BSDization flags with a user-provided NM, if there is one. Run nm on itself, not on /dev/null, to avoid errors from nms that refuse to work on non-regular files. Remove other workarounds for this problem. Strip out blank lines from the nm output. 2021-09-27 Nick Alcock PR libctf/27967 * libtool.m4 (lt_cv_sys_global_symbol_pipe): Augment symcode for Solaris 11. 2021-07-03 Nick Clifton * 2.37 release branch created. 2021-07-03 Nick Clifton * libiberty: Sync with gcc. Bring in: 2021-06-30 Gerald Pfeifer * make-temp-file.c (usrtmp): Remove. (choose_tmpdir): Remove use of usrtmp. 2021-06-28 Indu Bhagat * simple-object.c (handle_lto_debug_sections): Copy over .BTF section. 2021-06-28 Indu Bhagat David Faust Jose E. Marchesi Weimin Pan * simple-object.c (handle_lto_debug_sections): Copy over .ctf sections. 2021-06-05 John David Anglin PR target/100734 * configure.ac: Use libiberty snprintf and vsnprintf on hppa*-*-hpux*. * configure: Regenerate. 2021-05-06 Tom Tromey * hashtab.c (htab_eq_string): New function. 2021-05-04 Eric Botcazou * configure.ac: Make test for variables more robust. * configure: Regenerate. 2021-05-03 H.J. Lu PR bootstrap/99703 * configure: Regenerated. 2021-04-21 Andreas Schwab PR demangler/100177 * rust-demangle.c (demangle_const_char): Properly print the character value. 2021-03-31 Patrick Palka PR c++/88115 * cp-demangle.c (d_dump, d_make_comp, d_expression_1) (d_count_templates_scopes): Handle DEMANGLE_COMPONENT_VENDOR_EXPR. (d_print_comp_inner): Likewise. : Revert r11-4926 change. : Likewise. * testsuite/demangle-expected: Adjust __alignof__ tests. 2021-03-16 Nick Clifton * sha1.c (sha1_process_bytes): Use memmove in place of memcpy. 2021-02-20 Mike Frysinger * Makefile.in (ACLOCAL, ACLOCAL_AMFLAGS, $(srcdir)/aclocal.m4): Define. (configure_deps): Rename to ... (aclocal_deps): ... this. Replace aclocal.m4 with acinclude.m4. ($(srcdir)/configure): Replace $(configure_deps) with $(srcdir)/aclocal.m4. * aclocal.m4: Move libiberty macros to acinclude.m4, then regenerate. * acinclude.m4: New file. * configure: Regenerate. 2021-02-19 Ayush Mittal * argv.c (expandargv): free allocated buffer if read fails. 2021-02-01 Martin Sebor * dyn-string.c (dyn_string_insert_cstr): Use memcpy instead of strncpy to avoid -Wstringop-truncation. 2021-05-29 Mike Frysinger * configure.ac: Add gnulib to configdirs for sim. * configure: Regenerate. 2021-05-24 Maciej W. Rozycki * MAINTAINERS: Update path to readline config.{sub,guess} files. 2021-05-24 Maciej W. Rozycki * config.guess: Import from upstream. * config.sub: Likewise. 2021-05-18 Mike Frysinger * Makefile.def: Add configure-sim dependency on all-gnulib. * Makefile.in: Regenerated. 2021-05-04 Nick Clifton * configure.ac (AC_PROG_CC): Replace with AC_PROG_CC_C99. * configure: Regenerate. 2021-03-18 Nick Alcock PR libctf/27482 * Makefile.def: Add install-bfd dependencies for install-libctf and install-ld, and install-strip-bfd dependencies for install-strip-libctf and install-strip-ld; move the install-ld dependency on install-libctf to join it. * Makefile.in: Regenerated. 2021-03-12 Mike Frysinger * Makefile.def: Remove all-sim dependency on configure-gdb. * Makefile.in: Regenerated. 2021-02-28 H.J. Lu PR binutils/26766 * Makefile.tpl (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Add PGO_BUILD_TRAINING=yes. (PGO_BUILD_TRAINING_MFLAGS): New. (all): Pass $(PGO_BUILD_TRAINING_MFLAGS) to the PGO build. 2021-02-09 Alan Modra * configure.ac: Delete arm*-*-symbianelf* entry. * configure: Regenerate. 2021-01-26 Nick Alcock * Makefile.def: Add install-libctf dependency to install-ld. * Makefile.in: Regenerated. 2021-01-12 Mike Frysinger * src-release.sh (do_proto_toplev): Rewrite indentation. 2021-01-11 H.J. Lu PR binutils/26766 * configure.ac: * configure: Regenerated. 2021-01-11 H.J. Lu PR ld/27173 * configure: Regenerated. * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with --plugin and rc before enabling --plugin. 2021-01-09 H.J. Lu PR binutils/26766 * Makefile.tpl (BUILD_CFLAGS): New. (CFLAGS): Append $(BUILD_CFLAGS). (CXXFLAGS): Likewise. (PGO_BUILD_GEN_FLAGS_TO_PASS): New. (PGO_BUILD_TRAINING_CFLAGS): Likewise. (PGO_BUILD_TRAINING_CXXFLAGS): Likewise. (PGO_BUILD_TRAINING_FLAGS_TO_PASS): Likewise. (PGO_BUILD_TRAINING_MFLAGS): Likewise. (PGO_BUILD_USE_FLAGS_TO_PASS): Likewise. (PGO-TRAINING-TARGETS): Likewise. (PGO_BUILD_TRAINING): Likewise. (all): Add '+' to the command line for recursive make. Support the PGO build. * configure.ac: Add --enable-pgo-build[=lto]. AC_SUBST PGO_BUILD_GEN_CFLAGS, PGO_BUILD_USE_CFLAGS and PGO_BUILD_LTO_CFLAGS. Enable the PGO build in Makefile. * Makefile.in: Regenerated. * configure: Likewise. 2021-01-09 H.J. Lu * Makefile.tpl (AR): Add @@AR_PLUGIN_OPTION@@ (RANLIB): Add @@RANLIB_PLUGIN_OPTION@@. * configure.ac: Include config/gcc-plugin.m4. AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION. * libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and RANLIB if possible. * Makefile.in: Regenerated. * configure: Likewise. 2021-01-09 Nick Clifton * 2.36 release branch crated. 2021-01-07 Samuel Thibault * libtool.m4: Match gnu* along with other GNU systems. 2021-01-07 Alan Modra * config.sub: Accept OS of eabi* and gnueabi*. 2021-01-05 Nick Alcock * Makefile.def (libctf): No longer no_check. Checking depends on all-ld. * Makefile.in: Regenerated. 2021-01-05 Nick Clifton * libiberty: Sync with gcc. Bring in: 2021-01-04 Martin Liska * strverscmp.c: Convert to utf8 from iso8859. 2020-12-22 Jason Merrill PR c++/67343 * cp-demangle.h (struct d_info): Add unresolved_name_state. * cp-demangle.c (d_prefix): Add subst parm. (d_nested_name): Pass it. (d_unresolved_name): Split out from... (d_expression_1): ...here. (d_demangle_callback): Maybe retry with old sr mangling. * testsuite/demangle-expected: Add test. 2020-12-21 Jason Merrill * cp-demangle.c (d_expression_1): Recognize qualified-id on RHS of dt/pt. * testsuite/demangle-expected: Add test. 2020-12-21 Jason Merrill * cp-demangle.c (d_unqualified_name): Clear is_expression. * testsuite/demangle-expected: Add tests. 2020-11-25 Matthew Malcomson * configure: Regenerate. * configure.ac: Avoid using sanitizer. 2020-11-13 Eduard-Mihai Burtescu * rust-demangle.c (struct rust_demangler): Add skipping_printing and bound_lifetime_depth fields. (eat): Add (v0-only). (parse_integer_62): Add (v0-only). (parse_opt_integer_62): Add (v0-only). (parse_disambiguator): Add (v0-only). (struct rust_mangled_ident): Add punycode{,_len} fields. (parse_ident): Support v0 identifiers. (print_str): Respect skipping_printing. (print_uint64): Add (v0-only). (print_uint64_hex): Add (v0-only). (print_ident): Respect skipping_printing, Support v0 identifiers. (print_lifetime_from_index): Add (v0-only). (demangle_binder): Add (v0-only). (demangle_path): Add (v0-only). (demangle_generic_arg): Add (v0-only). (demangle_type): Add (v0-only). (demangle_path_maybe_open_generics): Add (v0-only). (demangle_dyn_trait): Add (v0-only). (demangle_const): Add (v0-only). (demangle_const_uint): Add (v0-only). (basic_type): Add (v0-only). (rust_demangle_callback): Support v0 symbols. * testsuite/rust-demangle-expected: Add v0 testcases. 2020-11-13 Seija Kijin * strstr.c (strstr): Make implementation ANSI/POSIX compliant. 2020-11-11 Patrick Palka PR c++/88115 * cp-demangle.c (d_print_comp_inner) : Don't print the "operator " prefix for __alignof__. : Always print parens around the operand of __alignof__. * testsuite/demangle-expected: Test demangling for __alignof__. 2020-11-09 Christophe Lyon * pex-win32.c (pex_win32_exec_child): Initialize orig_err. 2020-10-06 Martin Liska PR lto/97290 * simple-object-elf.c (simple_object_elf_copy_lto_debug_sections): Use sh_link of a .symtab_shndx section. 2021-01-05 Alan Modra * config.guess: Import from upstream. * config.sub: Likewise. 2020-12-16 Martin Liska Tom de Vries * gdb/debuginfod-support.c (struct user_data): Remove has_printed field. Add meter field. (progressfn): Print progress using meter. 2020-12-02 Enze Li * .gitignore: Add gnu global outputs. 2020-12-02 Simon Marchi * .gitignore: Sync with gcc. 2020-10-26 Andreas Rammhold * src-release.sh: Use sha256sum instead of md5sum. 2020-10-14 Andrew Burgess * Makefile.in: Rebuild. * Makefile.def: Make distclean-gnulib depend on distclean-gdb and distclean-gdbserver. 2020-07-24 Aaron Merey * configure: Rebuild. * configure.ac: Remove AC_DEBUGINFOD. 2020-07-04 Nick Clifton Binutils 2.35 branch created. 2020-04-21 Stephen Casner PR 25830 * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11. * configure: Rebuild. 2020-03-12 Tom Tromey * Makefile.in: Rebuild. * Makefile.def (gdbserver): Depend on gdbsupport. 2020-03-12 Tom Tromey * Makefile.in: Rebuild. * Makefile.def (gdbsupport): Don't depend on bfd. 2020-03-12 Tom Tromey * Makefile.in: Rebuild. * Makefile.def (gdbsupport): Depend on intl. 2020-02-17 Tom Tromey * configure: Rebuild. * configure.ac (configdirs): Add gnulib and gdbsupport when building gdbserver. 2020-02-14 Tom Tromey * Makefile.in: Rebuild. * Makefile.def: Make gdbserver require gnulib and libiberty. 2020-02-07 Tom Tromey Pedro Alves * src-release.sh (GDB_SUPPORT_DIRS): Add gdbserver. * gdbserver: New directory, moved from gdb/gdbserver. * configure.ac (host_tools): Add gdbserver. Only build gdbserver on certain systems. * Makefile.in, configure: Rebuild. * Makefile.def (host_modules, dependencies): Add gdbserver. * MAINTAINERS: Add gdbserver. 2020-01-28 Sergio Durigan Junior * src-release.sh (getver): Look for gdbsupport's create-version.sh script at the current directory if tool is "gdb". 2020-01-19 Simon Marchi * remote-sim.c (gdbsim_target::wait): Return sim_data->remote_sim_ptid instead of inferior_ptid. @ text @@ 1.1.1.1.2.1 log @Sync with HEAD. @ text @d1 1 a1 1 This is ctf-spec.info, produced by makeinfo version 7.0.2 from d4 1 a4 1 Copyright © 2021-2024 Free Software Foundation, Inc. d9 2 a10 2 license is included in the section entitled “GNU General Public License”. d46 1 a46 1 CTF dictionaries can be “children” of other dictionaries, in a d56 1 a56 1 parent at all will fail with ‘ECTF_NOPARENT’ if a parent type was d60 2 a61 2 format will be described in the accompanying ‘libctf’ manual once it is written. There is no API to modify dictionaries once they’ve been d66 3 a68 3 There are two major pieces to CTF: the “archive” and the “dictionary”. Some relatives and ancestors of CTF call dictionaries “containers”: the archive format is unique to this variant of CTF. (Much d77 1 a77 1 archives go away, the ‘libctf’ API used to access them will remain, and d80 3 a82 3 The CTF dictionary consists of a “preamble”, which does not vary between versions of the CTF file format, and a “header” and some number of “sections”, which can vary between versions. d86 1 a86 1 versions supported by ‘libctf’: the earlier versions are defined in d96 1 a96 1 This document is quite young, so for now the C code in ‘ctf.h’ should d117 1 a117 1 member with a “default name”, ‘.ctf’ (which can be represented as ‘NULL’ d123 1 a123 1 ‘.ctf’ sections in ELF objects consist of a single CTF dictionary d133 1 a133 1 The definition of an archive in ‘ctf.h’ is as follows: d150 2 a151 2 (Note one irregularity here: the ‘ctf_archive_t’ is not a typedef to ‘struct ctf_archive’, but a different typedef, private to ‘libctf’, so d162 1 a162 1 0x00 ‘uint64_t ctfa_magic’ The magic number for archives, ‘CTFA_MAGIC’: d165 1 a165 1 0x08 ‘uint64_t ctfa_model’ The data model for this archive: an arbitrary integer d169 1 a169 1 0x10 ‘uint64_t ctfa_nfiles’ The number of CTF dictionaries in this archive. d171 3 a173 3 0x18 ‘uint64_t ctfa_names’ Offset of the name table, in bytes from the start of the archive. The name table is an array of ‘struct ctf_archive_modent_t[ctfa_nfiles]’. d175 2 a176 2 0x20 ‘uint64_t ctfa_ctfs’ Offset of the CTF table. Each element starts with a ‘uint64_t’ size, followed by a CTF dictionary. d179 2 a180 2 The array pointed to by ‘ctfa_names’ is an array of entries of ‘ctf_archive_modent’: d184 1 a184 1 0x00 ‘uint64_t name_offset’ Offset of this name, in bytes from the start d187 1 a187 1 0x08 ‘uint64_t ctf_offset’ Offset of this CTF dictionary, in bytes from d191 2 a192 2 The ‘ctfa_names’ array is sorted into ASCIIbetical order by name (i.e. by the result of dereferencing the ‘name_offset’). d197 1 a197 1 dictionary array is described above in the entry for ‘ctfa_ctfs’. d240 3 a242 3 ‘#define’s are provided under the names ‘cth_magic’, ‘cth_version’ and ‘cth_flags’ to make the fields of the ‘ctf_preamble_t’ appear to be part of the ‘ctf_header_t’, so consuming programs rarely need to d247 2 a248 2 0x00 ‘unsigned short ctp_magic’ The magic number for CTF dictionaries, ‘CTF_MAGIC’: 0xdff2. d250 1 a250 1 0x02 ‘unsigned char ctp_version’ The version number of this CTF d253 1 a253 1 0x03 ‘ctp_flags’ Flags for this CTF file. d261 2 a262 2 that generates them: the consumer (e.g., ‘libctf’) can detect whether to endian-flip a CTF dictionary by inspecting the ‘ctp_magic’. (If it d266 1 a266 1 ‘ctp_version’. The following versions are currently valid, and ‘libctf’ d271 1 a271 1 ‘CTF_VERSION_1’ 1 First version, rare. Very similar to Solaris CTF. d273 1 a273 1 ‘CTF_VERSION_1_UPGRADED_3’ 2 First version, upgraded to v3 or higher and d276 1 a276 1 ‘CTF_VERSION_2’ 3 Second version, with many range limits lifted. d278 1 a278 1 ‘CTF_VERSION_3’ 4 Third and current version, documented here. d280 1 a280 1 This section documents ‘CTF_VERSION_3’. d292 1 a292 1 The preamble contains bitflags in its ‘ctp_flags’ field that describe d305 5 a309 5 ‘CTF_F_COMPRESS’ All 0x1 Compressed with zlib ‘CTF_F_NEWFUNCINFO’ 3 only 0x2 “New-format” func info section. ‘CTF_F_IDXSORTED’ 3+ 0x4 The index section is in sorted order ‘CTF_F_DYNSTR’ 3 only 0x8 The external strtab is in ‘.dynstr’ and the symtab used is ‘.dynsym’. d312 1 a312 1 ‘CTF_F_NEWFUNCINFO’ and ‘CTF_F_IDXSORTED’ relate to the function info d364 1 a364 1 0x00 ‘ctf_preamble_t cth_preamble’ The preamble (conceptually embedded in the header). d367 1 a367 1 0x04 ‘uint32_t cth_parlabel’ The parent label, if deduplication happened against d373 1 a373 1 0x08 ‘uint32_t cth_parname’ The name of the parent dictionary deduplicated d379 1 a379 1 0x1c ‘uint32_t cth_cuname’ The name of the compilation unit, for consumers d384 1 a384 1 0x10 ‘uint32_t cth_lbloff’ The offset of the label section, which tiles the d388 1 a388 1 0x14 ‘uint32_t cth_objtoff’ The offset of the data object symtypetab section, d392 1 a392 1 0x18 ‘uint32_t cth_funcoff’ The offset of the function info symtypetab section, d396 1 a396 1 0x1c ‘uint32_t cth_objtidxoff’ The offset of the object index section, which maps d400 1 a400 1 0x20 ‘uint32_t cth_funcidxoff’ The offset of the function info index section, d405 1 a405 1 0x24 ‘uint32_t cth_varoff’ The offset of the variable section, which maps d409 1 a409 1 0x28 ‘uint32_t cth_typeoff’ The offset of the type section, the core of CTF, d413 1 a413 1 0x2c ‘uint32_t cth_stroff’ The offset of the string section. d416 1 a416 1 0x30 ‘uint32_t cth_strlen’ The length of the string section (not an offset!). d421 2 a422 2 ‘cth_stroff’ + ‘cth_strlen’) is compressed with zlib if ‘CTF_F_COMPRESS’ is set in the preamble’s ‘ctp_flags’. d432 1 a432 1 structures, each of which describes a type of some “kind”: each kind of d440 1 a440 1 immediately follows the type’s type structure. Here’s the largest of d458 1 a458 1 Here’s the much more common smaller form: d472 2 a473 2 If ‘ctt_size’ is the #define ‘CTF_LSIZE_SENT’, 0xffffffff, this type is described by a ‘ctf_type_t’: otherwise, a ‘ctf_stype_t’. d475 1 a475 1 Here’s what the fields mean: d479 1 a479 1 0x00 ‘uint32_t ctt_name’ Strtab offset of the type name, if any (0 if none). d481 1 a481 1 0x04 ‘uint32_t ctt_info’ The “info word”, containing information on the kind d486 1 a486 1 0x08 ‘uint32_t ctt_size’ The size of this type, if this type is of a kind for d488 2 a489 2 types don’t need one). If this is ‘CTF_LSIZE_SENT’, this type is a huge type described by ‘ctf_type_t’. d491 1 a491 1 0x08 ‘uint32_t ctt_type’ The type this type refers to, if this type is of a d494 4 a497 4 variable-size refer to other types, so ‘ctt_size’ and ‘ctt_type’ overlap. All type kinds that use ‘ctt_type’ are described by ‘ctf_stype_t’, not ‘ctf_type_t’. *Note Type indexes and type IDs::. d499 2 a500 2 0x0c (‘ctf_type_t’ ‘uint32_t ctt_lsizehi’ The high 32 bits of the size of a very large type. only) The ‘CTF_TYPE_LSIZE’ macro can be used to get a d502 1 a502 1 ‘CTF_SIZE_TO_LSIZE_HI’ splits the ‘ctt_lsizehi’ out d505 2 a506 2 0x10 (‘ctf_type_t’ ‘uint32_t ctt_lsizelo’ The low 32 bits of the size of a very large type. only) ‘CTF_SIZE_TO_LSIZE_LO’ splits the ‘ctt_lsizelo’ out d511 2 a512 2 various type-kind- dependent things, like whether ‘ctt_size’ or ‘ctt_type’ is used, is described in the section devoted to each kind.) d539 1 a539 1 26–31 ‘kind’ Type kind: *note Type kinds::. d541 1 a541 1 25 ‘isroot’ 1 if this type is visible to name lookup d543 3 a545 3 0–24 ‘vlen’ Length of variable-length data for this type (some kinds only). The variable-length data directly follows the ‘ctf_type_t’ or ‘ctf_stype_t’. This is a kind-dependent array length value, d550 3 a552 3 The most mysterious of these is undoubtedly ‘isroot’. This indicates whether types with names (nonzero ‘ctt_name’) are visible to name lookup: if zero, this type is considered a “non-root type” and you can’t d555 2 a556 2 dictionary, but only one of them may have a nonzero value for ‘isroot’. ‘libctf’ validates this at open time and refuses to open dictionaries d561 2 a562 2 be named ‘int’ with different widths or offsets, but only the full-width one at offset zero is wanted when you look up the type named ‘int’. d572 3 a574 3 The ‘CTF_TYPE_INFO’ macro can be used to compose an info word from a ‘kind’, ‘isroot’, and ‘vlen’; ‘CTF_V2_INFO_KIND’, ‘CTF_V2_INFO_ISROOT’ and ‘CTF_V2_INFO_VLEN’ pick it apart again. d582 1 a582 1 Types are referred to within the CTF file via “type IDs”. A type ID is d584 2 a585 2 below are in the “parent range”: these IDs are used for dictionaries that have not had any other dictionary ‘ctf_import’ed into it as a d588 1 a588 1 above are in the “child range”: only types in child dictionaries are in d591 1 a591 1 These IDs appear in ‘ctf_type_t.ctt_type’ (*note The type section::), d593 1 a593 1 because adding an ID uses space, and every ID is different so they don’t d599 1 a599 1 ‘ctf_type_t’ or ‘ctf_stype_t’. d610 6 a615 6 always be associated with a parent — usually, the same parent — because its references to its own types have the high bit turned on and this is only flipped off again if this is a child dictionary. (This is not a problem, because if you _don’t_ associate the child with a parent, any references within it to its parent types will fail, and there are almost certain to be many such references, or why is it a child at all?) d619 1 a619 1 everything will appear to work as long as you’re only using parent d631 3 a633 3 The macros ‘CTF_V2_TYPE_TO_INDEX’ and ‘CTF_V2_INDEX_TO_TYPE’ may help in translation between types and indexes: ‘CTF_V2_TYPE_ISPARENT’ and ‘CTF_V2_TYPE_ISCHILD’ can be used to tell whether a given ID is in the d645 1 a645 1 Every type in CTF is of some “kind”. Each kind is some variety of C d648 1 a648 1 kind of a type is given in the ‘kind’ field of the ‘ctt_info’ word d659 2 a660 2 integers are rare: how many kinds of ‘int’ are there in a program? They’re just very frequently _referenced_.) d662 1 a662 1 Here’s the set of kinds so far. Each kind has a ‘#define’ associated d667 1 a667 1 0 ‘CTF_K_UNKNOWN’ Indicates a type that cannot be represented in CTF, or that d670 1 a670 1 ‘CTF_K_UNKNOWN’. d672 1 a672 1 1 ‘CTF_K_INTEGER’ An integer type. *Note Integer types::. d674 1 a674 1 2 ‘CTF_K_FLOAT’ A floating-point type. *Note Floating-point types::. d676 1 a676 1 3 ‘CTF_K_POINTER’ A pointer. *Note Pointers typedefs and cvr-quals::. d678 1 a678 1 4 ‘CTF_K_ARRAY’ An array. *Note Arrays::. d680 1 a680 1 5 ‘CTF_K_FUNCTION’ A function pointer. *Note Function pointers::. d682 1 a682 1 6 ‘CTF_K_STRUCT’ A structure. *Note Structs and unions::. d684 1 a684 1 7 ‘CTF_K_UNION’ A union. *Note Structs and unions::. d686 1 a686 1 8 ‘CTF_K_ENUM’ An enumerated type. *Note Enums::. d688 1 a688 1 9 ‘CTF_K_FORWARD’ A forward. *Note Forward declarations::. d690 1 a690 1 10 ‘CTF_K_TYPEDEF’ A typedef. *Note Pointers typedefs and cvr-quals::. d692 1 a692 1 11 ‘CTF_K_VOLATILE’ A volatile-qualified type. d695 1 a695 1 12 ‘CTF_K_CONST’ A const-qualified type. d698 1 a698 1 13 ‘CTF_K_RESTRICT’ A restrict-qualified type. d701 1 a701 1 14 ‘CTF_K_SLICE’ A slice, a change of the bit-width or offset of some other d713 2 a714 2 Integral types are all represented as types of kind ‘CTF_K_INTEGER’. These types fill out ‘ctt_size’ in the ‘ctf_stype_t’ with the size in d716 2 a717 2 ‘ctf_stype_t’, never ‘ctf_type_t’. Their variable-length data is one ‘uint32_t’ in length: ‘vlen’ in the info word should be disregarded and d725 2 a726 2 24–31 Encoding The desired display representation of this integer. You can extract this field with the ‘CTF_INT_ENCODING’ d729 1 a729 1 16–23 Offset The offset of this integral type in bits from the start d732 1 a732 1 this field with the ‘CTF_INT_OFFSET’ macro. d734 2 a735 2 0–15 Bit-width The width of this integral type in bits. You can extract this field with the ‘CTF_INT_BITS’ macro. d738 1 a738 1 a sort of integral type with the ‘isroot’ bit flipped off and the offset d740 1 a740 1 ‘CTF_INT_DATA’ macro. (But it may be more convenient to represent them d743 1 a743 1 Integers that are bitfields usually have a ‘ctt_size’ rounded up to d745 1 a745 1 integer would have a ‘ctt_size’ of 4). However, not all types are d747 1 a747 1 use integral bitfields with different ‘ctt_size’, though this is rarely d750 1 a750 1 The “encoding” for integers is a bit-field comprised of the values d756 1 a756 1 0x01 ‘CTF_INT_SIGNED’ If set, this is a signed int: if false, unsigned. d758 3 a760 3 0x02 ‘CTF_INT_CHAR’ If set, this is a char type. It is platform-dependent whether unadorned ‘char’ is signed or not: the ‘CTF_CHAR’ macro produces an integral type suitable for the definition of ‘char’ on this platform. d762 2 a763 2 0x04 ‘CTF_INT_BOOL’ If set, this is a boolean type. (It is theoretically possible to turn this and ‘CTF_INT_CHAR’ on at the same time, but it is not clear what d766 1 a766 1 0x08 ‘CTF_INT_VARARGS’ If set, this is a varargs-promoted value in a K&R function definition. d770 1 a770 1 The GCC “‘Complex int’” and fixed-point extensions are not yet d779 2 a780 2 Floating-point types are all represented as types of kind ‘CTF_K_FLOAT’. Like integers, These types fill out ‘ctt_size’ in the ‘ctf_stype_t’ with d782 1 a782 1 always represented by ‘ctf_stype_t’, never ‘ctf_type_t’. d792 2 a793 2 24–31 Encoding The desired display representation of this float. You can extract this field with the ‘CTF_FP_ENCODING’ macro. See below. d795 1 a795 1 16–23 Offset The offset of this floating-point type in bits from the start of d798 1 a798 1 ‘CTF_FP_OFFSET’ macro. d800 2 a801 2 0–15 Bit-width The width of this floating-point type in bits. You can extract this field with the ‘CTF_FP_BITS’ macro. d808 1 a808 1 ‘CTF_FP_DATA’ to assemble one of these vlen items from its component d811 1 a811 1 The “encoding” for floats is not a bitfield but a simple value d818 7 a824 7 1 ‘CTF_FP_SINGLE’ This is a single-precision IEEE 754 ‘float’. 2 ‘CTF_FP_DOUBLE’ This is a double-precision IEEE 754 ‘double’. 3 ‘CTF_FP_CPLX’ This is a ‘Complex float’. 4 ‘CTF_FP_DCPLX’ This is a ‘Complex double’. 5 ‘CTF_FP_LDCPLX’ This is a ‘Complex long double’. 6 ‘CTF_FP_LDOUBLE’ This is a ‘long double’. 7 ‘CTF_FP_INTRVL’ This is a ‘float’ interval type, a Solaris-specific extension. d826 1 a826 1 8 ‘CTF_FP_DINTRVL’ This is a ‘double’ interval type, a Solaris-specific d828 1 a828 1 9 ‘CTF_FP_LDINTRVL’ This is a ‘long double’ interval type, a Solaris-specific d830 1 a830 1 10 ‘CTF_FP_IMAGRY’ This is a the imaginary part of a ‘Complex float’. Not d832 1 a832 1 11 ‘CTF_FP_DIMAGRY’ This is a the imaginary part of a ‘Complex double’. Not d834 1 a834 1 12 ‘CTF_FP_LDIMAGRY’ This is a the imaginary part of a ‘Complex long double’. Not d838 3 a840 3 possible that ‘CTF_FP_CPLX’ is meant to be used for only the real part of complex types, and ‘CTF_FP_IMAGRY’ et al for the imaginary part – but for now, we are emitting ‘CTF_FP_CPLX’ to cover the entire type, with no d851 1 a851 1 Slices, with kind ‘CTF_K_SLICE’, are an unusual CTF construct: they do d856 2 a857 2 always represented by ‘ctf_stype_t’: but unlike pointers and other reference types, they populate the ‘ctt_size’ field just like integral d864 1 a864 1 Slices are always nameless: ‘ctt_name’ is always zero for them. d866 2 a867 2 (The ‘libctf’ API behaviour is unusual as well, and justifies the existence of slices: ‘ctf_type_kind’ never returns ‘CTF_K_SLICE’ but d870 1 a870 1 if they need to by calling ‘ctf_type_reference’, which will uniquely d872 1 a872 1 ‘ECTF_NOTREF’ if this is actually a slice. So slices act just like an d878 1 a878 1 zero. The variable-length data for a slice is a single ‘ctf_slice_t’: d889 1 a889 1 0x0 ‘uint32_t cts_type’ The type this slice is a slice of. Must be an d893 1 a893 1 0x4 ‘unsigned short cts_offset’ The offset of this integral type in bits from d897 1 a897 1 semantics to the ‘CTF_INT_OFFSET’ field: d904 2 a905 2 0x6 ‘unsigned short cts_bits’ The bit-width of this integral type. Identical semantics to the ‘CTF_INT_BITS’ d916 1 a916 1 Pointers, ‘typedef’s, and ‘const’, ‘volatile’ and ‘restrict’ qualifiers d918 1 a918 1 be treated differently by consuming libraries like ‘libctf’, since d922 4 a925 4 All of these are represented by ‘ctf_stype_t’, have no variable data at all, and populate ‘ctt_type’ with the type ID of the type they point to. These types can stack: a ‘CTF_K_RESTRICT’ can point to a ‘CTF_K_CONST’ which can point to a ‘CTF_K_POINTER’ etc. d927 1 a927 1 They are all unnamed: ‘ctt_name’ is 0. d929 1 a929 1 The size of ‘CTF_K_POINTER’ is derived from the data model (*note d941 1 a941 1 Arrays are encoded as types of kind ‘CTF_K_ARRAY’ in a ‘ctf_stype_t’. d943 1 a943 1 ‘ctf_array_t’: ‘vlen’ in the info word should be disregarded and is d955 1 a955 1 0x0 ‘uint32_t cta_contents’ The type of the array elements: a type ID. d957 1 a957 1 0x4 ‘uint32_t cta_index’ The type of the array index: a type ID of an d961 1 a961 1 ‘int’). Probably redundant and may be d964 1 a964 1 0x8 ‘uint32_t cta_nelems’ The number of array elements. 0 for VLAs, d967 1 a967 1 will have a nonzero ‘cta_index’.) d970 1 a970 1 size of the ‘cta_contents’ type by the ‘cta_nelems’. d979 2 a980 2 a type of kind ‘CTF_K_FUNCTION’, always encoded with a ‘ctf_stype_t’. The ‘ctt_type’ is the function return type ID. The ‘vlen’ in the info d982 1 a982 1 ‘uint32_t’: if the last argument is 0, this is a varargs function and d985 1 a985 1 If the number of arguments is odd, a single ‘uint32_t’ of padding is d994 4 a997 4 Enumerated types are represented as types of kind ‘CTF_K_ENUM’ in a ‘ctf_stype_t’. The ‘ctt_size’ is always the size of an int from the data model (enum bitfields are implemented via slices). The ‘vlen’ is a count of enumerations, each of which is represented by a ‘ctf_enum_t’ in d1008 1 a1008 1 0x0 ‘uint32_t cte_name’ Strtab offset of the enumeration name. d1011 1 a1011 1 0x4 ‘int32_t cte_value’ The enumeration value. d1031 3 a1033 3 Structures and unions are represnted as types of kind ‘CTF_K_STRUCT’ and ‘CTF_K_UNION’: their representation is otherwise identical, and it is perfectly allowed for “structs” to contain overlapping fields etc, so we d1036 2 a1037 2 They fill out ‘ctt_size’, and use ‘ctf_type_t’ in preference to ‘ctf_stype_t’ if the structure size is greater than ‘CTF_MAX_SIZE’ d1044 2 a1045 2 ‘CTF_LSTRUCT_THRESH’ bytes in length, use a different type. (‘CTF_LSTRUCT_THRESH’ is 536870912, so such structures are vanishingly d1047 1 a1047 1 compactness. It’s inherited from v1, where the limits were much lower.) d1049 1 a1049 1 Most structures can get away with using ‘ctf_member_t’: d1058 3 a1060 3 Huge structures that are represented by ‘ctf_type_t’ rather than ‘ctf_stype_t’ have to use ‘ctf_lmember_t’, which splits the offset as ‘ctf_type_t’ splits the size: d1070 1 a1070 1 Here’s what the fields of ‘ctf_member’ mean: d1074 1 a1074 1 0x00 ‘uint32_t ctm_name’ Strtab offset of the field name. d1076 1 a1076 1 0x04 ‘uint32_t ctm_offset’ The offset of this field _in bits_. (Usually, for bitfields, this is d1080 1 a1080 1 0x08 ‘uint32_t ctm_type’ The type ID of the type of the field. d1082 1 a1082 1 Here’s what the fields of the very similar ‘ctf_lmember’ mean: d1086 1 a1086 1 0x00 ‘uint32_t ctlm_name’ Strtab offset of the field name. d1088 1 a1088 1 0x04 ‘uint32_t ctlm_offsethi’ The high 32 bits of the offset of this field in bits. d1090 1 a1090 1 0x08 ‘uint32_t ctlm_type’ The type ID of the type of the field. d1092 1 a1092 1 0x0c ‘uint32_t ctlm_offsetlo’ The low 32 bits of the offset of this field in bits. d1094 4 a1097 4 Macros ‘CTF_LMEM_OFFSET’, ‘CTF_OFFSET_TO_LMEMHI’ and ‘CTF_OFFSET_TO_LMEMLO’ serve to extract and install the values of the ‘ctlm_offset’ fields, much as with the split size fields in ‘ctf_type_t’. d1100 1 a1100 1 collapsing the unnamed field’s members into the containing structure or d1102 2 a1103 2 end up being a “structure” with multiple members at the same offset. (A future format revision may collapse ‘CTF_K_STRUCT’ and ‘CTF_K_UNION’ d1120 1 a1120 1 or enum, it emits a type of kind ‘CTF_K_FORWARD’. If it later d1127 2 a1128 2 is no non-forward definition (maybe it’s not visible from any TU at all) or if ‘multiple’ conflicting structures with the same name might match d1136 3 a1138 3 ‘ctf_stype_t’ but the ‘ctt_type’ is populated not with a type (if it’s a forward, we don’t have an underlying type yet: if we did, we’d have promoted it and this wouldn’t be a forward any more) but with the ‘kind’ d1158 1 a1158 1 If the index section is nonempty, it is an array of ‘uint32_t’ string d1163 1 a1163 1 ‘CTF_F_IDXSORTED’ flag in the header): if it’s sorted, it can be d1169 1 a1169 1 type ‘STT_OBJECT’ (for data object) or ‘STT_FUNC’ (for function info) d1172 1 a1172 1 no name, undefined symbols and symbols named “‘_START_’” and “‘_END_’” d1185 1 a1185 1 having the compiler sort them either. The linker (actually, ‘libctf’’s d1191 3 a1193 3 mentioned in the child appear in the child’s symtypetab: symbols that use only types in the parent appear in the parent’s symtypetab instead. So the child’s symtypetab will almost always be very sparse, and thus d1196 1 a1196 1 child dicts at once, since it’s impossible to declare a function in C d1223 1 a1223 1 0x00 ‘uint32_t ctv_name’ Strtab offset of the name d1225 1 a1225 1 0x04 ‘uint32_t ctv_type’ Type ID of this type d1250 1 a1250 1 0x00 ‘uint32_t ctl_label’ Strtab offset of the label d1252 1 a1252 1 0x04 ‘uint32_t ctl_type’ Type ID of the last type d1257 1 a1257 1 file, removing many uses of CTF archives, in particular in the ‘.ctf’ d1274 1 a1274 1 strtab (‘.dynstr’) of a CTF dictionary embedded in an ELF file. We d1281 1 a1281 1 strtab is ‘.strtab’ unless the ‘CTF_F_DYNSTR’ flag is set on the d1296 1 a1296 1 ‘libctf’: currently, we use this to hardwire the size of pointers, d1310 1 a1310 1 ‘CTF_MAX_TYPE’ d1313 1 a1313 1 ‘CTF_MAX_PTYPE’ d1316 1 a1316 1 ‘CTF_MAX_NAME’ d1318 1 a1318 1 ‘CTF_MAX_VLEN’ d1321 3 a1323 3 ‘CTF_MAX_SIZE’ Maximum size of a ‘ctf_stype_t’ in bytes before we fall back to ‘ctf_type_t’: 0xfffffffe bytes d1326 2 a1327 2 • Maximum value of an enumerated type: 2^32 • Maximum size of an array element: 2^32 d1722 27 a1748 27 Node: Top553 Node: Overview883 Node: CTF archive4220 Node: CTF dictionaries8938 Node: CTF Preamble9355 Node: CTF file-wide flags12041 Node: CTF header13539 Node: The type section19533 Node: The info word24320 Node: Type indexes and type IDs26932 Node: Type kinds30352 Node: Integer types33733 Node: Floating-point types37391 Node: Slices41572 Node: Pointers typedefs and cvr-quals45136 Node: Arrays46355 Node: Function pointers48130 Node: Enums48819 Node: Structs and unions50129 Node: Forward declarations54118 Node: The symtypetab sections55727 Node: The variable section58853 Node: The label section59999 Node: The string section60986 Node: Data models62260 Node: Limits of CTF62933 Node: Index64010 @ 1.1.1.2 log @Import binutils-2.42 (last was 2.39) 2024-01-15 Nick Clifton * 2.42 branch point. 2023-11-15 Arsen Arsenović * intl: Remove directory. Replaced with out-of-tree GNU gettext. * .gitignore: Add '/gettext*'. * configure.ac (host_libs): Replace intl with gettext. (hbaseargs, bbaseargs, baseargs): Split baseargs into {h,b}baseargs. (skip_barg): New flag. Skips appending current flag to bbaseargs. : Exempt --with-libintl-{type,prefix} from target and build machine argument passing. * configure: Regenerate. * Makefile.def (host_modules): Replace intl module with gettext module. (configure-ld): Depend on configure-gettext. * Makefile.in: Regenerate. * src-release.sh: Remove references to the intl/ directory. 2023-07-03 Nick Clifton 2.41 Branch Point. 2023-06-26 Nick Clifton * Import these updates to the config scripts commit 4ad4bb7c30aca1e705448ba8d51a210bbd47bb52 Author: Paul Eggert Date: Fri Jun 23 09:55:10 2023 -0700 Quote 'like this', not `like this'. commit 63acb96f92473ceb5e21d873d7c0aee266b3d6d3 Author: Paul Eggert Date: Sat Jan 21 00:15:01 2023 -0600 Fix config.sub spelling typo for "athlon" commit 4ce12a5c9125cedc0d0ba584444a6865396923ec Author: Dmitry V. Levin Date: Sun Jan 1 08:00:00 2023 +0000 Update copyright years commit c397e2c040bce50bcdccb131f90115ba7e8bfc19 Author: Arsen Arsenovi Date: Sat Sep 17 23:34:48 2022 +0200 config.sub: add linux-mlibc targets commit 9f9f9b0b13197269848c76e3e057a3ed0680b4bf Author: Arsen Arsenovi Date: Sat Sep 17 23:34:47 2022 +0200 config.guess: support running on Managarm systems commit 87e6687749da7bb2ab158a79fa83721c19ed9246 Author: Arsen Arsenovi Date: Sat Sep 17 23:34:46 2022 +0200 config.sub: add managarm-{mlibc,kernel} targets commit 20403c5701973a4cbd7e0b4bbeb627fcd424a0f1 Author: Xiaotian Wu Date: Mon Aug 1 16:05:29 2022 +0800 Remove loongarchx32 commit 02ba26b218d3d3db6c56e014655faf463cefa983 Author: Alexander von Gluck IV Date: Wed May 25 15:43:13 2022 -0500 config.guess: Update Haiku guesses commit f56a7140386d08a531bcfd444d632b28c61a6329 Author: Bruno Haible Date: Sun May 8 19:08:08 2022 +0200 config.guess (x86_64:Linux:*:*): Detect 32-bit ABI. 2023-04-20 Nick Clifton * SECURITY.txt: New file. * src-release.sh (DEVO_SUPPORT): Add SECURITY.txt. 2022-12-31 Nick Clifton * 2.40 binutils branch created. 2022-10-10 Nick Clifton * src-release.sh: Add "-r " option to create reproducible tarballs based upon a fixed timestamp of . * binutils/README-how-to-make-a-release: Add a line showing how to use -r when creating a binutils release. 2022-10-04 Nick Clifton * README-maintainer-mode: Add a minimum version of dejagnu requirement. 2022-09-08 Nick Clifton * README-maintainer-mode: Update minimum version of gettext required. @ text @d1 1 a1 1 This is ctf-spec.info, produced by makeinfo version 7.0.2 from d4 1 a4 1 Copyright © 2021-2024 Free Software Foundation, Inc. d9 2 a10 2 license is included in the section entitled “GNU General Public License”. d46 1 a46 1 CTF dictionaries can be “children” of other dictionaries, in a d56 1 a56 1 parent at all will fail with ‘ECTF_NOPARENT’ if a parent type was d60 2 a61 2 format will be described in the accompanying ‘libctf’ manual once it is written. There is no API to modify dictionaries once they’ve been d66 3 a68 3 There are two major pieces to CTF: the “archive” and the “dictionary”. Some relatives and ancestors of CTF call dictionaries “containers”: the archive format is unique to this variant of CTF. (Much d77 1 a77 1 archives go away, the ‘libctf’ API used to access them will remain, and d80 3 a82 3 The CTF dictionary consists of a “preamble”, which does not vary between versions of the CTF file format, and a “header” and some number of “sections”, which can vary between versions. d86 1 a86 1 versions supported by ‘libctf’: the earlier versions are defined in d96 1 a96 1 This document is quite young, so for now the C code in ‘ctf.h’ should d117 1 a117 1 member with a “default name”, ‘.ctf’ (which can be represented as ‘NULL’ d123 1 a123 1 ‘.ctf’ sections in ELF objects consist of a single CTF dictionary d133 1 a133 1 The definition of an archive in ‘ctf.h’ is as follows: d150 2 a151 2 (Note one irregularity here: the ‘ctf_archive_t’ is not a typedef to ‘struct ctf_archive’, but a different typedef, private to ‘libctf’, so d162 1 a162 1 0x00 ‘uint64_t ctfa_magic’ The magic number for archives, ‘CTFA_MAGIC’: d165 1 a165 1 0x08 ‘uint64_t ctfa_model’ The data model for this archive: an arbitrary integer d169 1 a169 1 0x10 ‘uint64_t ctfa_nfiles’ The number of CTF dictionaries in this archive. d171 3 a173 3 0x18 ‘uint64_t ctfa_names’ Offset of the name table, in bytes from the start of the archive. The name table is an array of ‘struct ctf_archive_modent_t[ctfa_nfiles]’. d175 2 a176 2 0x20 ‘uint64_t ctfa_ctfs’ Offset of the CTF table. Each element starts with a ‘uint64_t’ size, followed by a CTF dictionary. d179 2 a180 2 The array pointed to by ‘ctfa_names’ is an array of entries of ‘ctf_archive_modent’: d184 1 a184 1 0x00 ‘uint64_t name_offset’ Offset of this name, in bytes from the start d187 1 a187 1 0x08 ‘uint64_t ctf_offset’ Offset of this CTF dictionary, in bytes from d191 2 a192 2 The ‘ctfa_names’ array is sorted into ASCIIbetical order by name (i.e. by the result of dereferencing the ‘name_offset’). d197 1 a197 1 dictionary array is described above in the entry for ‘ctfa_ctfs’. d240 3 a242 3 ‘#define’s are provided under the names ‘cth_magic’, ‘cth_version’ and ‘cth_flags’ to make the fields of the ‘ctf_preamble_t’ appear to be part of the ‘ctf_header_t’, so consuming programs rarely need to d247 2 a248 2 0x00 ‘unsigned short ctp_magic’ The magic number for CTF dictionaries, ‘CTF_MAGIC’: 0xdff2. d250 1 a250 1 0x02 ‘unsigned char ctp_version’ The version number of this CTF d253 1 a253 1 0x03 ‘ctp_flags’ Flags for this CTF file. d261 2 a262 2 that generates them: the consumer (e.g., ‘libctf’) can detect whether to endian-flip a CTF dictionary by inspecting the ‘ctp_magic’. (If it d266 1 a266 1 ‘ctp_version’. The following versions are currently valid, and ‘libctf’ d271 1 a271 1 ‘CTF_VERSION_1’ 1 First version, rare. Very similar to Solaris CTF. d273 1 a273 1 ‘CTF_VERSION_1_UPGRADED_3’ 2 First version, upgraded to v3 or higher and d276 1 a276 1 ‘CTF_VERSION_2’ 3 Second version, with many range limits lifted. d278 1 a278 1 ‘CTF_VERSION_3’ 4 Third and current version, documented here. d280 1 a280 1 This section documents ‘CTF_VERSION_3’. d292 1 a292 1 The preamble contains bitflags in its ‘ctp_flags’ field that describe d305 5 a309 5 ‘CTF_F_COMPRESS’ All 0x1 Compressed with zlib ‘CTF_F_NEWFUNCINFO’ 3 only 0x2 “New-format” func info section. ‘CTF_F_IDXSORTED’ 3+ 0x4 The index section is in sorted order ‘CTF_F_DYNSTR’ 3 only 0x8 The external strtab is in ‘.dynstr’ and the symtab used is ‘.dynsym’. d312 1 a312 1 ‘CTF_F_NEWFUNCINFO’ and ‘CTF_F_IDXSORTED’ relate to the function info d364 1 a364 1 0x00 ‘ctf_preamble_t cth_preamble’ The preamble (conceptually embedded in the header). d367 1 a367 1 0x04 ‘uint32_t cth_parlabel’ The parent label, if deduplication happened against d373 1 a373 1 0x08 ‘uint32_t cth_parname’ The name of the parent dictionary deduplicated d379 1 a379 1 0x1c ‘uint32_t cth_cuname’ The name of the compilation unit, for consumers d384 1 a384 1 0x10 ‘uint32_t cth_lbloff’ The offset of the label section, which tiles the d388 1 a388 1 0x14 ‘uint32_t cth_objtoff’ The offset of the data object symtypetab section, d392 1 a392 1 0x18 ‘uint32_t cth_funcoff’ The offset of the function info symtypetab section, d396 1 a396 1 0x1c ‘uint32_t cth_objtidxoff’ The offset of the object index section, which maps d400 1 a400 1 0x20 ‘uint32_t cth_funcidxoff’ The offset of the function info index section, d405 1 a405 1 0x24 ‘uint32_t cth_varoff’ The offset of the variable section, which maps d409 1 a409 1 0x28 ‘uint32_t cth_typeoff’ The offset of the type section, the core of CTF, d413 1 a413 1 0x2c ‘uint32_t cth_stroff’ The offset of the string section. d416 1 a416 1 0x30 ‘uint32_t cth_strlen’ The length of the string section (not an offset!). d421 2 a422 2 ‘cth_stroff’ + ‘cth_strlen’) is compressed with zlib if ‘CTF_F_COMPRESS’ is set in the preamble’s ‘ctp_flags’. d432 1 a432 1 structures, each of which describes a type of some “kind”: each kind of d440 1 a440 1 immediately follows the type’s type structure. Here’s the largest of d458 1 a458 1 Here’s the much more common smaller form: d472 2 a473 2 If ‘ctt_size’ is the #define ‘CTF_LSIZE_SENT’, 0xffffffff, this type is described by a ‘ctf_type_t’: otherwise, a ‘ctf_stype_t’. d475 1 a475 1 Here’s what the fields mean: d479 1 a479 1 0x00 ‘uint32_t ctt_name’ Strtab offset of the type name, if any (0 if none). d481 1 a481 1 0x04 ‘uint32_t ctt_info’ The “info word”, containing information on the kind d486 1 a486 1 0x08 ‘uint32_t ctt_size’ The size of this type, if this type is of a kind for d488 2 a489 2 types don’t need one). If this is ‘CTF_LSIZE_SENT’, this type is a huge type described by ‘ctf_type_t’. d491 1 a491 1 0x08 ‘uint32_t ctt_type’ The type this type refers to, if this type is of a d494 4 a497 4 variable-size refer to other types, so ‘ctt_size’ and ‘ctt_type’ overlap. All type kinds that use ‘ctt_type’ are described by ‘ctf_stype_t’, not ‘ctf_type_t’. *Note Type indexes and type IDs::. d499 2 a500 2 0x0c (‘ctf_type_t’ ‘uint32_t ctt_lsizehi’ The high 32 bits of the size of a very large type. only) The ‘CTF_TYPE_LSIZE’ macro can be used to get a d502 1 a502 1 ‘CTF_SIZE_TO_LSIZE_HI’ splits the ‘ctt_lsizehi’ out d505 2 a506 2 0x10 (‘ctf_type_t’ ‘uint32_t ctt_lsizelo’ The low 32 bits of the size of a very large type. only) ‘CTF_SIZE_TO_LSIZE_LO’ splits the ‘ctt_lsizelo’ out d511 2 a512 2 various type-kind- dependent things, like whether ‘ctt_size’ or ‘ctt_type’ is used, is described in the section devoted to each kind.) d539 1 a539 1 26–31 ‘kind’ Type kind: *note Type kinds::. d541 1 a541 1 25 ‘isroot’ 1 if this type is visible to name lookup d543 3 a545 3 0–24 ‘vlen’ Length of variable-length data for this type (some kinds only). The variable-length data directly follows the ‘ctf_type_t’ or ‘ctf_stype_t’. This is a kind-dependent array length value, d550 3 a552 3 The most mysterious of these is undoubtedly ‘isroot’. This indicates whether types with names (nonzero ‘ctt_name’) are visible to name lookup: if zero, this type is considered a “non-root type” and you can’t d555 2 a556 2 dictionary, but only one of them may have a nonzero value for ‘isroot’. ‘libctf’ validates this at open time and refuses to open dictionaries d561 2 a562 2 be named ‘int’ with different widths or offsets, but only the full-width one at offset zero is wanted when you look up the type named ‘int’. d572 3 a574 3 The ‘CTF_TYPE_INFO’ macro can be used to compose an info word from a ‘kind’, ‘isroot’, and ‘vlen’; ‘CTF_V2_INFO_KIND’, ‘CTF_V2_INFO_ISROOT’ and ‘CTF_V2_INFO_VLEN’ pick it apart again. d582 1 a582 1 Types are referred to within the CTF file via “type IDs”. A type ID is d584 2 a585 2 below are in the “parent range”: these IDs are used for dictionaries that have not had any other dictionary ‘ctf_import’ed into it as a d588 1 a588 1 above are in the “child range”: only types in child dictionaries are in d591 1 a591 1 These IDs appear in ‘ctf_type_t.ctt_type’ (*note The type section::), d593 1 a593 1 because adding an ID uses space, and every ID is different so they don’t d599 1 a599 1 ‘ctf_type_t’ or ‘ctf_stype_t’. d610 6 a615 6 always be associated with a parent — usually, the same parent — because its references to its own types have the high bit turned on and this is only flipped off again if this is a child dictionary. (This is not a problem, because if you _don’t_ associate the child with a parent, any references within it to its parent types will fail, and there are almost certain to be many such references, or why is it a child at all?) d619 1 a619 1 everything will appear to work as long as you’re only using parent d631 3 a633 3 The macros ‘CTF_V2_TYPE_TO_INDEX’ and ‘CTF_V2_INDEX_TO_TYPE’ may help in translation between types and indexes: ‘CTF_V2_TYPE_ISPARENT’ and ‘CTF_V2_TYPE_ISCHILD’ can be used to tell whether a given ID is in the d645 1 a645 1 Every type in CTF is of some “kind”. Each kind is some variety of C d648 1 a648 1 kind of a type is given in the ‘kind’ field of the ‘ctt_info’ word d659 2 a660 2 integers are rare: how many kinds of ‘int’ are there in a program? They’re just very frequently _referenced_.) d662 1 a662 1 Here’s the set of kinds so far. Each kind has a ‘#define’ associated d667 1 a667 1 0 ‘CTF_K_UNKNOWN’ Indicates a type that cannot be represented in CTF, or that d670 1 a670 1 ‘CTF_K_UNKNOWN’. d672 1 a672 1 1 ‘CTF_K_INTEGER’ An integer type. *Note Integer types::. d674 1 a674 1 2 ‘CTF_K_FLOAT’ A floating-point type. *Note Floating-point types::. d676 1 a676 1 3 ‘CTF_K_POINTER’ A pointer. *Note Pointers typedefs and cvr-quals::. d678 1 a678 1 4 ‘CTF_K_ARRAY’ An array. *Note Arrays::. d680 1 a680 1 5 ‘CTF_K_FUNCTION’ A function pointer. *Note Function pointers::. d682 1 a682 1 6 ‘CTF_K_STRUCT’ A structure. *Note Structs and unions::. d684 1 a684 1 7 ‘CTF_K_UNION’ A union. *Note Structs and unions::. d686 1 a686 1 8 ‘CTF_K_ENUM’ An enumerated type. *Note Enums::. d688 1 a688 1 9 ‘CTF_K_FORWARD’ A forward. *Note Forward declarations::. d690 1 a690 1 10 ‘CTF_K_TYPEDEF’ A typedef. *Note Pointers typedefs and cvr-quals::. d692 1 a692 1 11 ‘CTF_K_VOLATILE’ A volatile-qualified type. d695 1 a695 1 12 ‘CTF_K_CONST’ A const-qualified type. d698 1 a698 1 13 ‘CTF_K_RESTRICT’ A restrict-qualified type. d701 1 a701 1 14 ‘CTF_K_SLICE’ A slice, a change of the bit-width or offset of some other d713 2 a714 2 Integral types are all represented as types of kind ‘CTF_K_INTEGER’. These types fill out ‘ctt_size’ in the ‘ctf_stype_t’ with the size in d716 2 a717 2 ‘ctf_stype_t’, never ‘ctf_type_t’. Their variable-length data is one ‘uint32_t’ in length: ‘vlen’ in the info word should be disregarded and d725 2 a726 2 24–31 Encoding The desired display representation of this integer. You can extract this field with the ‘CTF_INT_ENCODING’ d729 1 a729 1 16–23 Offset The offset of this integral type in bits from the start d732 1 a732 1 this field with the ‘CTF_INT_OFFSET’ macro. d734 2 a735 2 0–15 Bit-width The width of this integral type in bits. You can extract this field with the ‘CTF_INT_BITS’ macro. d738 1 a738 1 a sort of integral type with the ‘isroot’ bit flipped off and the offset d740 1 a740 1 ‘CTF_INT_DATA’ macro. (But it may be more convenient to represent them d743 1 a743 1 Integers that are bitfields usually have a ‘ctt_size’ rounded up to d745 1 a745 1 integer would have a ‘ctt_size’ of 4). However, not all types are d747 1 a747 1 use integral bitfields with different ‘ctt_size’, though this is rarely d750 1 a750 1 The “encoding” for integers is a bit-field comprised of the values d756 1 a756 1 0x01 ‘CTF_INT_SIGNED’ If set, this is a signed int: if false, unsigned. d758 3 a760 3 0x02 ‘CTF_INT_CHAR’ If set, this is a char type. It is platform-dependent whether unadorned ‘char’ is signed or not: the ‘CTF_CHAR’ macro produces an integral type suitable for the definition of ‘char’ on this platform. d762 2 a763 2 0x04 ‘CTF_INT_BOOL’ If set, this is a boolean type. (It is theoretically possible to turn this and ‘CTF_INT_CHAR’ on at the same time, but it is not clear what d766 1 a766 1 0x08 ‘CTF_INT_VARARGS’ If set, this is a varargs-promoted value in a K&R function definition. d770 1 a770 1 The GCC “‘Complex int’” and fixed-point extensions are not yet d779 2 a780 2 Floating-point types are all represented as types of kind ‘CTF_K_FLOAT’. Like integers, These types fill out ‘ctt_size’ in the ‘ctf_stype_t’ with d782 1 a782 1 always represented by ‘ctf_stype_t’, never ‘ctf_type_t’. d792 2 a793 2 24–31 Encoding The desired display representation of this float. You can extract this field with the ‘CTF_FP_ENCODING’ macro. See below. d795 1 a795 1 16–23 Offset The offset of this floating-point type in bits from the start of d798 1 a798 1 ‘CTF_FP_OFFSET’ macro. d800 2 a801 2 0–15 Bit-width The width of this floating-point type in bits. You can extract this field with the ‘CTF_FP_BITS’ macro. d808 1 a808 1 ‘CTF_FP_DATA’ to assemble one of these vlen items from its component d811 1 a811 1 The “encoding” for floats is not a bitfield but a simple value d818 7 a824 7 1 ‘CTF_FP_SINGLE’ This is a single-precision IEEE 754 ‘float’. 2 ‘CTF_FP_DOUBLE’ This is a double-precision IEEE 754 ‘double’. 3 ‘CTF_FP_CPLX’ This is a ‘Complex float’. 4 ‘CTF_FP_DCPLX’ This is a ‘Complex double’. 5 ‘CTF_FP_LDCPLX’ This is a ‘Complex long double’. 6 ‘CTF_FP_LDOUBLE’ This is a ‘long double’. 7 ‘CTF_FP_INTRVL’ This is a ‘float’ interval type, a Solaris-specific extension. d826 1 a826 1 8 ‘CTF_FP_DINTRVL’ This is a ‘double’ interval type, a Solaris-specific d828 1 a828 1 9 ‘CTF_FP_LDINTRVL’ This is a ‘long double’ interval type, a Solaris-specific d830 1 a830 1 10 ‘CTF_FP_IMAGRY’ This is a the imaginary part of a ‘Complex float’. Not d832 1 a832 1 11 ‘CTF_FP_DIMAGRY’ This is a the imaginary part of a ‘Complex double’. Not d834 1 a834 1 12 ‘CTF_FP_LDIMAGRY’ This is a the imaginary part of a ‘Complex long double’. Not d838 3 a840 3 possible that ‘CTF_FP_CPLX’ is meant to be used for only the real part of complex types, and ‘CTF_FP_IMAGRY’ et al for the imaginary part – but for now, we are emitting ‘CTF_FP_CPLX’ to cover the entire type, with no d851 1 a851 1 Slices, with kind ‘CTF_K_SLICE’, are an unusual CTF construct: they do d856 2 a857 2 always represented by ‘ctf_stype_t’: but unlike pointers and other reference types, they populate the ‘ctt_size’ field just like integral d864 1 a864 1 Slices are always nameless: ‘ctt_name’ is always zero for them. d866 2 a867 2 (The ‘libctf’ API behaviour is unusual as well, and justifies the existence of slices: ‘ctf_type_kind’ never returns ‘CTF_K_SLICE’ but d870 1 a870 1 if they need to by calling ‘ctf_type_reference’, which will uniquely d872 1 a872 1 ‘ECTF_NOTREF’ if this is actually a slice. So slices act just like an d878 1 a878 1 zero. The variable-length data for a slice is a single ‘ctf_slice_t’: d889 1 a889 1 0x0 ‘uint32_t cts_type’ The type this slice is a slice of. Must be an d893 1 a893 1 0x4 ‘unsigned short cts_offset’ The offset of this integral type in bits from d897 1 a897 1 semantics to the ‘CTF_INT_OFFSET’ field: d904 2 a905 2 0x6 ‘unsigned short cts_bits’ The bit-width of this integral type. Identical semantics to the ‘CTF_INT_BITS’ d916 1 a916 1 Pointers, ‘typedef’s, and ‘const’, ‘volatile’ and ‘restrict’ qualifiers d918 1 a918 1 be treated differently by consuming libraries like ‘libctf’, since d922 4 a925 4 All of these are represented by ‘ctf_stype_t’, have no variable data at all, and populate ‘ctt_type’ with the type ID of the type they point to. These types can stack: a ‘CTF_K_RESTRICT’ can point to a ‘CTF_K_CONST’ which can point to a ‘CTF_K_POINTER’ etc. d927 1 a927 1 They are all unnamed: ‘ctt_name’ is 0. d929 1 a929 1 The size of ‘CTF_K_POINTER’ is derived from the data model (*note d941 1 a941 1 Arrays are encoded as types of kind ‘CTF_K_ARRAY’ in a ‘ctf_stype_t’. d943 1 a943 1 ‘ctf_array_t’: ‘vlen’ in the info word should be disregarded and is d955 1 a955 1 0x0 ‘uint32_t cta_contents’ The type of the array elements: a type ID. d957 1 a957 1 0x4 ‘uint32_t cta_index’ The type of the array index: a type ID of an d961 1 a961 1 ‘int’). Probably redundant and may be d964 1 a964 1 0x8 ‘uint32_t cta_nelems’ The number of array elements. 0 for VLAs, d967 1 a967 1 will have a nonzero ‘cta_index’.) d970 1 a970 1 size of the ‘cta_contents’ type by the ‘cta_nelems’. d979 2 a980 2 a type of kind ‘CTF_K_FUNCTION’, always encoded with a ‘ctf_stype_t’. The ‘ctt_type’ is the function return type ID. The ‘vlen’ in the info d982 1 a982 1 ‘uint32_t’: if the last argument is 0, this is a varargs function and d985 1 a985 1 If the number of arguments is odd, a single ‘uint32_t’ of padding is d994 4 a997 4 Enumerated types are represented as types of kind ‘CTF_K_ENUM’ in a ‘ctf_stype_t’. The ‘ctt_size’ is always the size of an int from the data model (enum bitfields are implemented via slices). The ‘vlen’ is a count of enumerations, each of which is represented by a ‘ctf_enum_t’ in d1008 1 a1008 1 0x0 ‘uint32_t cte_name’ Strtab offset of the enumeration name. d1011 1 a1011 1 0x4 ‘int32_t cte_value’ The enumeration value. d1031 3 a1033 3 Structures and unions are represnted as types of kind ‘CTF_K_STRUCT’ and ‘CTF_K_UNION’: their representation is otherwise identical, and it is perfectly allowed for “structs” to contain overlapping fields etc, so we d1036 2 a1037 2 They fill out ‘ctt_size’, and use ‘ctf_type_t’ in preference to ‘ctf_stype_t’ if the structure size is greater than ‘CTF_MAX_SIZE’ d1044 2 a1045 2 ‘CTF_LSTRUCT_THRESH’ bytes in length, use a different type. (‘CTF_LSTRUCT_THRESH’ is 536870912, so such structures are vanishingly d1047 1 a1047 1 compactness. It’s inherited from v1, where the limits were much lower.) d1049 1 a1049 1 Most structures can get away with using ‘ctf_member_t’: d1058 3 a1060 3 Huge structures that are represented by ‘ctf_type_t’ rather than ‘ctf_stype_t’ have to use ‘ctf_lmember_t’, which splits the offset as ‘ctf_type_t’ splits the size: d1070 1 a1070 1 Here’s what the fields of ‘ctf_member’ mean: d1074 1 a1074 1 0x00 ‘uint32_t ctm_name’ Strtab offset of the field name. d1076 1 a1076 1 0x04 ‘uint32_t ctm_offset’ The offset of this field _in bits_. (Usually, for bitfields, this is d1080 1 a1080 1 0x08 ‘uint32_t ctm_type’ The type ID of the type of the field. d1082 1 a1082 1 Here’s what the fields of the very similar ‘ctf_lmember’ mean: d1086 1 a1086 1 0x00 ‘uint32_t ctlm_name’ Strtab offset of the field name. d1088 1 a1088 1 0x04 ‘uint32_t ctlm_offsethi’ The high 32 bits of the offset of this field in bits. d1090 1 a1090 1 0x08 ‘uint32_t ctlm_type’ The type ID of the type of the field. d1092 1 a1092 1 0x0c ‘uint32_t ctlm_offsetlo’ The low 32 bits of the offset of this field in bits. d1094 4 a1097 4 Macros ‘CTF_LMEM_OFFSET’, ‘CTF_OFFSET_TO_LMEMHI’ and ‘CTF_OFFSET_TO_LMEMLO’ serve to extract and install the values of the ‘ctlm_offset’ fields, much as with the split size fields in ‘ctf_type_t’. d1100 1 a1100 1 collapsing the unnamed field’s members into the containing structure or d1102 2 a1103 2 end up being a “structure” with multiple members at the same offset. (A future format revision may collapse ‘CTF_K_STRUCT’ and ‘CTF_K_UNION’ d1120 1 a1120 1 or enum, it emits a type of kind ‘CTF_K_FORWARD’. If it later d1127 2 a1128 2 is no non-forward definition (maybe it’s not visible from any TU at all) or if ‘multiple’ conflicting structures with the same name might match d1136 3 a1138 3 ‘ctf_stype_t’ but the ‘ctt_type’ is populated not with a type (if it’s a forward, we don’t have an underlying type yet: if we did, we’d have promoted it and this wouldn’t be a forward any more) but with the ‘kind’ d1158 1 a1158 1 If the index section is nonempty, it is an array of ‘uint32_t’ string d1163 1 a1163 1 ‘CTF_F_IDXSORTED’ flag in the header): if it’s sorted, it can be d1169 1 a1169 1 type ‘STT_OBJECT’ (for data object) or ‘STT_FUNC’ (for function info) d1172 1 a1172 1 no name, undefined symbols and symbols named “‘_START_’” and “‘_END_’” d1185 1 a1185 1 having the compiler sort them either. The linker (actually, ‘libctf’’s d1191 3 a1193 3 mentioned in the child appear in the child’s symtypetab: symbols that use only types in the parent appear in the parent’s symtypetab instead. So the child’s symtypetab will almost always be very sparse, and thus d1196 1 a1196 1 child dicts at once, since it’s impossible to declare a function in C d1223 1 a1223 1 0x00 ‘uint32_t ctv_name’ Strtab offset of the name d1225 1 a1225 1 0x04 ‘uint32_t ctv_type’ Type ID of this type d1250 1 a1250 1 0x00 ‘uint32_t ctl_label’ Strtab offset of the label d1252 1 a1252 1 0x04 ‘uint32_t ctl_type’ Type ID of the last type d1257 1 a1257 1 file, removing many uses of CTF archives, in particular in the ‘.ctf’ d1274 1 a1274 1 strtab (‘.dynstr’) of a CTF dictionary embedded in an ELF file. We d1281 1 a1281 1 strtab is ‘.strtab’ unless the ‘CTF_F_DYNSTR’ flag is set on the d1296 1 a1296 1 ‘libctf’: currently, we use this to hardwire the size of pointers, d1310 1 a1310 1 ‘CTF_MAX_TYPE’ d1313 1 a1313 1 ‘CTF_MAX_PTYPE’ d1316 1 a1316 1 ‘CTF_MAX_NAME’ d1318 1 a1318 1 ‘CTF_MAX_VLEN’ d1321 3 a1323 3 ‘CTF_MAX_SIZE’ Maximum size of a ‘ctf_stype_t’ in bytes before we fall back to ‘ctf_type_t’: 0xfffffffe bytes d1326 2 a1327 2 • Maximum value of an enumerated type: 2^32 • Maximum size of an array element: 2^32 d1722 27 a1748 27 Node: Top553 Node: Overview883 Node: CTF archive4220 Node: CTF dictionaries8938 Node: CTF Preamble9355 Node: CTF file-wide flags12041 Node: CTF header13539 Node: The type section19533 Node: The info word24320 Node: Type indexes and type IDs26932 Node: Type kinds30352 Node: Integer types33733 Node: Floating-point types37391 Node: Slices41572 Node: Pointers typedefs and cvr-quals45136 Node: Arrays46355 Node: Function pointers48130 Node: Enums48819 Node: Structs and unions50129 Node: Forward declarations54118 Node: The symtypetab sections55727 Node: The variable section58853 Node: The label section59999 Node: The string section60986 Node: Data models62260 Node: Limits of CTF62933 Node: Index64010 @ 1.1.1.3 log @Import binutils 2.45 (previous was 2.42) 2.45 Release Notes ------------------ Assembler: All sframe information generated by the assembler is now in compliance with the SFrame V2 specification. The assembler now supports .errif and .warnif directives, permitting user-controlled diagnostics with conditionals that are evaluated only at the end of assembly. The assembler predefines the symbol "GAS(version)". The assembler now supports the generation of SFrame stack trace information (.sframe) from CFI directives on s390 64-bit (s390x). For RISC-V, the ".option arch, -ext" format is deprecated due to its controversial use. For RISC-V, stop generating mapping symbols $x and replace with $x. The $x was defined to have the same ISA as previous $x, but now is defined to have the same ISA as elf architecture attribute. Once both used .option arch/rvc/norvc/push/pop directives (some code have different architectures with file attribute) and data directives in text, then the file need to be rebuilt since 2.45. The assembler supports the latest architecture extensions for the RISC-V, LoongArch and AArch64 architectures. Linker: The linker's --stats option can take an optional argument which if used is interpreted as a filename into which resource usage information should be stored. As an alternative mechanism the LD_STATS environment variable can also be used to achieve the same results. Resource usage information for various phases of the linking operation is now included in the report. If a map file is being produced then the information is also included there. The --no-stats option can be used to disable stat reporting, should it have been enabled. On s390 64-bit (s390x), generate SFrame stack trace information (.sframe) for the linker generated .plt section. On s390 32-bit, generate ".eh_frame" unwind information for the linker generated .plt section. Both features are enabled by default and can be disabled using linker option --no-ld-generated-unwind-info. On RISC-V, add new PLT formats, and GNU property merge rules for zicfiss and zicfilp extensions. On AVR, the default linker scripts now assert that the .progmem sections don't extend past 0xffff since they are accessed by means of LPM. For data in program memory that may be located past 0xffff, a .progmemx section should be used. On LoongArch, linker relaxation time complexity is no longer quadratic with respect to relocation counts. Linking time of large software should be improved. In addition R_LARCH_32_PCREL records are now checked for overflow. Other binary utilities: New versioned release of libsframe: libsframe.so.2. This release introduces versioned symbols with version node name LIBSFRAME_2.0. Some new symbols have been added to support the new flag SFRAME_F_FDE_FUNC_START_PCREL and retrieving flags from SFrame decoder and encoder objects: - Addition of sframe_decoder_get_flags, sframe_decoder_get_offsetof_fde_start_addr, sframe_encoder_get_flags, sframe_encoder_get_offsetof_fde_start_addr. This release also includes backward-incompatible ABI changes: - Removal of sframe_get_funcdesc_with_addr. - Change in the behavior of sframe_decoder_get_funcdesc_v2, sframe_encoder_add_funcdesc_v2 and sframe_encoder_write. For SFrame stack trace format, the function start address in each SFrame FDE has a changed encoding: The 32-bit signed integer now holds the offset of the start PC of the associated function from the sfde_func_start_address field itself (instead of the earlier where it was the offset from the start of the SFrame section itself). All SFrame sections generated by gas and ld now default to this new encoding, setting the (new) SFRAME_F_FDE_FUNC_START_PCREL flag. Relocatable SFrame links are now fixed. Readelf now recognizes RISC-V GNU_PROPERTY_RISCV_FEATURE_1_CFI_SS and GNU_PROPERTY_RISCV_FEATURE_1_CFI_LP_UNLABELED for zicfiss and zicfilp extensions. The LoongArch disassembler now properly accepts multiple disassembly options given by -M, such as "-M no-aliases,numeric". (Previously only the first option took effect.) 2.44 Release Notes ------------------ Assembler: Support for new architecture extensions for AArch64, Risc-V and x86. Linker: The default maximum page size was changed from 16KiB to 64KiB for LoongArch. This now supports mixed LTO and non-LTO object files in relocatable output. The ELF forms of the linker support a --image-base= option for compatibility with LLD. The --build-id= option now accepts an argument of "xx" which enables the use of the xxhash library. This produces a 128-bit hash and is 2-4x faster than md5 or sha1. The ELF linker option --package-metadata supports percent-encoded and %[string] encoded JSON payloads. Disassembler: The RISC-V disassembler now supports -M,max option like QEMU to dump instruction without checking architecture support as usual. GprofNG: Support added for hardware event counters for Neoverse-N1, Ampere-1, and Appliedmicro processors. Support for the Nios II target has been removed. 2.43 Release Notes ------------------ Assembler: * Add a .base64 directive to the assembler which allows base64 encoded binary data to be provided as strings. * Assembler macros as well as the bodies of .irp / .irpc / .rept can now use the syntax \+ to access the number of times a given macro has been executed. This is similar to the already existing \@@ syntax, except that the count is maintained on a per-macro basis. * References to FB and dollar labels, when supported, are no longer permitted in a radix other than 10. (Note that definitions of such labels were already thus restricted, except that leading zeroes were permitted). Linker: * Add support for DT_RELR type compressed runtime relocations for the AArch64 and LoongArch architectures. * Add --rosegment option which changes the -z separate-code option so that only one read-only segment is created (instead of two). * Add --section-ordering-file option to add extra mapping of input sections to output sections. * Add -plugin-save-temps to store plugin intermediate files permanently. Utilities: * Readelf will now display DT_RELR relocations in full detail. * Readelf now has a -j/--display-section option which takes the name or index of a section and displays its contents according to its type. The option can be used multiple times on the command line to display multiple sections. * When objdump or readelf are used to display the contents of a .eh_frame section they will now also display the contents of the .eh_frame_hdr section, if present. Gprofng: * Improved the support for hardware event counters: - Re-designed and streamlined the implementation. - Defined a common set of events for ARM processors. - Added specific events for AMD ZEN3 / ZEN4, and Intel Ice Lake processors. * Added a minimal support for RISC-V. General: * Target specific improvements for many architectures. @ text @d1 1 a1 1 This is ctf-spec.info, produced by makeinfo version 7.1.1 from d4 1 a4 1 Copyright © 2021-2025 Free Software Foundation, Inc. d9 2 a10 2 license is included in the section entitled "GNU General Public License". a33 33 -- The Detailed Node Listing -- CTF dictionaries * CTF Preamble:: * CTF header:: * The type section:: * The symtypetab sections:: * The variable section:: * The label section:: * The string section:: * Data models:: * Limits of CTF:: CTF Preamble * CTF file-wide flags:: The type section * The info word:: * Type indexes and type IDs:: * Type kinds:: * Integer types:: * Floating-point types:: * Slices:: * Pointers typedefs and cvr-quals:: * Arrays:: * Function pointers:: * Enums:: * Structs and unions:: * Forward declarations:: d61 1 a61 1 written. There is no API to modify dictionaries once they've been d306 1 a306 1 ‘CTF_F_NEWFUNCINFO’ 3 only 0x2 "New-format" func info section. d422 1 a422 1 is set in the preamble's ‘ctp_flags’. d440 1 a440 1 immediately follows the type's type structure. Here's the largest of d458 1 a458 1 Here's the much more common smaller form: d470 1 a470 1 } ctf_stype_t; d475 1 a475 1 Here's what the fields mean: d488 1 a488 1 types don't need one). If this is ‘CTF_LSIZE_SENT’, d539 1 a539 1 26-31 ‘kind’ Type kind: *note Type kinds::. d543 1 a543 1 0-24 ‘vlen’ Length of variable-length data for this type (some kinds only). d552 1 a552 1 lookup: if zero, this type is considered a “non-root type” and you can't d593 1 a593 1 because adding an ID uses space, and every ID is different so they don't d610 6 a615 6 always be associated with a parent -- usually, the same parent -- because its references to its own types have the high bit turned on and this is only flipped off again if this is a child dictionary. (This is not a problem, because if you _don't_ associate the child with a parent, any references within it to its parent types will fail, and there are almost certain to be many such references, or why is it a child at all?) d619 1 a619 1 everything will appear to work as long as you're only using parent d660 1 a660 1 They're just very frequently _referenced_.) d662 1 a662 1 Here's the set of kinds so far. Each kind has a ‘#define’ associated d678 1 a678 1 4 ‘CTF_K_ARRAY’ An array or SIMD vector. *Note Arrays::. d725 1 a725 1 24-31 Encoding The desired display representation of this integer. You d729 1 a729 1 16-23 Offset The offset of this integral type in bits from the start d734 1 a734 1 0-15 Bit-width The width of this integral type in bits. You can d770 1 a770 1 The GCC "‘Complex int’" and fixed-point extensions are not yet d792 1 a792 1 24-31 Encoding The desired display representation of this float. You can d795 1 a795 1 16-23 Offset The offset of this floating-point type in bits from the start of d800 1 a800 1 0-15 Bit-width The width of this floating-point type in bits. You can extract d823 1 a823 2 6 ‘CTF_FP_LDOUBLE’ This is a ‘long double’, or quad-precision IEEE 754-2008 ‘__float128’. d839 1 a839 1 of complex types, and ‘CTF_FP_IMAGRY’ et al for the imaginary part - but a945 5 SIMD vectors are also encoded as types of kind ‘CTF_K_ARRAY’ in a ‘ctf_stype_t’. Both size and kind for arrays are zero. The variable-length data is a ‘ctf_array_t’: ‘vlen’ in the info word should be disregarded and is always zero. d1033 1 a1033 1 perfectly allowed for "structs" to contain overlapping fields etc, so we d1047 1 a1047 1 compactness. It's inherited from v1, where the limits were much lower.) d1070 1 a1070 1 Here's what the fields of ‘ctf_member’ mean: d1082 1 a1082 1 Here's what the fields of the very similar ‘ctf_lmember’ mean: d1100 1 a1100 1 collapsing the unnamed field's members into the containing structure or d1102 1 a1102 1 end up being a "structure" with multiple members at the same offset. (A d1127 1 a1127 1 is no non-forward definition (maybe it's not visible from any TU at all) d1136 3 a1138 3 ‘ctf_stype_t’ but the ‘ctt_type’ is populated not with a type (if it's a forward, we don't have an underlying type yet: if we did, we'd have promoted it and this wouldn't be a forward any more) but with the ‘kind’ d1163 1 a1163 1 ‘CTF_F_IDXSORTED’ flag in the header): if it's sorted, it can be d1172 1 a1172 1 no name, undefined symbols and symbols named "‘_START_’" and "‘_END_’" d1185 1 a1185 1 having the compiler sort them either. The linker (actually, ‘libctf’'s d1191 3 a1193 3 mentioned in the child appear in the child's symtypetab: symbols that use only types in the parent appear in the parent's symtypetab instead. So the child's symtypetab will almost always be very sparse, and thus d1196 1 a1196 1 child dicts at once, since it's impossible to declare a function in C d1359 3 a1361 3 * cta_contents: Arrays. (line 25) * cta_index: Arrays. (line 27) * cta_nelems: Arrays. (line 34) d1366 6 d1375 4 a1378 4 * ctf_array_t: Arrays. (line 23) * ctf_array_t, cta_contents: Arrays. (line 25) * ctf_array_t, cta_index: Arrays. (line 27) * ctf_array_t, cta_nelems: Arrays. (line 34) d1383 15 a1406 15 * CTF_FP_BITS: Floating-point types. (line 28) * CTF_FP_CPLX: Floating-point types. (line 47) * CTF_FP_DCPLX: Floating-point types. (line 48) * CTF_FP_DIMAGRY: Floating-point types. (line 61) * CTF_FP_DINTRVL: Floating-point types. (line 55) * CTF_FP_DOUBLE: Floating-point types. (line 46) * CTF_FP_ENCODING: Floating-point types. (line 21) * CTF_FP_IMAGRY: Floating-point types. (line 59) * CTF_FP_INTRVL: Floating-point types. (line 53) * CTF_FP_LDCPLX: Floating-point types. (line 49) * CTF_FP_LDIMAGRY: Floating-point types. (line 63) * CTF_FP_LDINTRVL: Floating-point types. (line 57) * CTF_FP_LDOUBLE: Floating-point types. (line 51) * CTF_FP_OFFSET: Floating-point types. (line 25) * CTF_FP_SINGLE: Floating-point types. (line 45) a1504 6 * ctfa_ctfs: CTF archive. (line 76) * ctfa_magic: CTF archive. (line 63) * CTFA_MAGIC: CTF archive. (line 64) * ctfa_model: CTF archive. (line 66) * ctfa_names: CTF archive. (line 72) * ctfa_nfiles: CTF archive. (line 71) a1520 2 * ctl_label: The label section. (line 19) * ctl_type: The label section. (line 20) d1524 2 a1611 3 * struct ctf_archive_modent: CTF archive. (line 83) * struct ctf_archive_modent, ctf_offset: CTF archive. (line 88) * struct ctf_archive_modent, name_offset: CTF archive. (line 86) d1617 7 a1623 4 * struct ctf_array: Arrays. (line 23) * struct ctf_array, cta_contents: Arrays. (line 25) * struct ctf_array, cta_index: Arrays. (line 27) * struct ctf_array, cta_nelems: Arrays. (line 34) d1709 6 a1714 6 * Unused bits: Floating-point types. (line 53) * Unused bits <1>: Floating-point types. (line 55) * Unused bits <2>: Floating-point types. (line 57) * Unused bits <3>: Floating-point types. (line 59) * Unused bits <4>: Floating-point types. (line 61) * Unused bits <5>: Floating-point types. (line 63) d1722 27 a1748 27 Node: Top549 Node: Overview1419 Node: CTF archive4754 Node: CTF dictionaries9472 Node: CTF Preamble9889 Node: CTF file-wide flags12575 Node: CTF header14069 Node: The type section20061 Node: The info word24839 Node: Type indexes and type IDs27445 Node: Type kinds30857 Node: Integer types34249 Node: Floating-point types37897 Node: Slices42149 Node: Pointers typedefs and cvr-quals45713 Node: Arrays46932 Node: Function pointers48961 Node: Enums49650 Node: Structs and unions50960 Node: Forward declarations54933 Node: The symtypetab sections56532 Node: The variable section59638 Node: The label section60784 Node: The string section61771 Node: Data models63045 Node: Limits of CTF63718 Node: Index64795 @ 1.1.1.4 log @Import binutils-2.46.0 (previous was 2.45) Changes in 2.45: * New versioned release of libsframe: libsframe.so.2. This release introduces versioned symbols with version node name LIBSFRAME_2.0. Some new symbols have been added to support the new flag SFRAME_F_FDE_FUNC_START_PCREL and retrieving flags from SFrame decoder and encoder objects: - Addition of sframe_decoder_get_flags, sframe_decoder_get_offsetof_fde_start_addr, sframe_encoder_get_flags, sframe_encoder_get_offsetof_fde_start_addr. This release also includes backward-incompatible ABI changes: - Removal of sframe_get_funcdesc_with_addr. - Change in the behavior of sframe_decoder_get_funcdesc_v2, sframe_encoder_add_funcdesc_v2 and sframe_encoder_write. * On s390 64-bit (s390x), gas, ld, objdump, and readelf now support generating and processing SFrame V2 stack trace information (.sframe). The assembler generates SFrame info from CFI directives with option "--gsframe". The linker generates SFrame info for the linker-generated .plt section and merges all .sframe sections. Both objdump and readelf dump SFrame info with option "--sframe[=]". * For SFrame stack trace format, the function start address in each SFrame FDE has a changed encoding: The 32-bit signed integer now holds the offset of the start PC of the associated function from the sfde_func_start_address field itself (instead of the earlier where it was the offset from the start of the SFrame section itself). All SFrame sections generated by gas and ld now default to this new encoding, setting the (new) SFRAME_F_FDE_FUNC_START_PCREL flag. Relocatable SFrame links are now fixed. * Readelf now recognizes RISC-V GNU_PROPERTY_RISCV_FEATURE_1_CFI_SS and GNU_PROPERTY_RISCV_FEATURE_1_CFI_LP_UNLABELED for zicfiss and zicfilp extensions. * For RISC-V dis-assembler, the definition of mapping symbol $x is changed, so the file needs to be rebuilt since 2.45 once used .option arch directives. * The LoongArch disassembler now properly accepts multiple disassembly options given by -M, such as "-M no-aliases,numeric". (Previously only the first option took effect.) @ text @d1 1 a1 1 This is ctf-spec.info, produced by makeinfo version 7.2 from d4 1 a4 1 Copyright © 2021-2026 Free Software Foundation, Inc. d1758 1 d1761 27 a1787 27 Node: Top547 Node: Overview1417 Node: CTF archive4752 Node: CTF dictionaries9470 Node: CTF Preamble9887 Node: CTF file-wide flags12573 Node: CTF header14067 Node: The type section20059 Node: The info word24837 Node: Type indexes and type IDs27443 Node: Type kinds30855 Node: Integer types34247 Node: Floating-point types37895 Node: Slices42147 Node: Pointers typedefs and cvr-quals45711 Node: Arrays46930 Node: Function pointers48959 Node: Enums49648 Node: Structs and unions50958 Node: Forward declarations54931 Node: The symtypetab sections56530 Node: The variable section59636 Node: The label section60782 Node: The string section61769 Node: Data models63043 Node: Limits of CTF63716 Node: Index64793 @