Home
last modified time | relevance | path

Searched refs:augmentation (Results 1 – 25 of 88) sorted by relevance

1234

/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Dehopt.c108 char augmentation[10]; in get_cie_info() local
169 if ((size_t) iaug < (sizeof augmentation) - 1) in get_cie_info()
171 augmentation[iaug] = f->fr_literal[offset]; in get_cie_info()
188 augmentation[iaug] = '\0'; in get_cie_info()
189 if (augmentation[0] == '\0') in get_cie_info()
193 else if (strcmp (augmentation, "eh") == 0) in get_cie_info()
212 else if (augmentation[0] != 'z') in get_cie_info()
223 info->z_augmentation = (augmentation[0] == 'z'); in get_cie_info()
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Dehopt.c106 char augmentation[10]; in get_cie_info() local
167 if ((size_t) iaug < (sizeof augmentation) - 1) in get_cie_info()
169 augmentation[iaug] = f->fr_literal[offset]; in get_cie_info()
186 augmentation[iaug] = '\0'; in get_cie_info()
187 if (augmentation[0] == '\0') in get_cie_info()
191 else if (strcmp (augmentation, "eh") == 0) in get_cie_info()
210 else if (augmentation[0] != 'z') in get_cie_info()
221 info->z_augmentation = (augmentation[0] == 'z'); in get_cie_info()
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Delf-eh-frame.c36 char augmentation[20]; member
226 && strcmp (c1->augmentation, c2->augmentation) == 0 in cie_eq()
227 && strcmp (c1->augmentation, "eh") != 0 in cie_eq()
263 h = iterative_hash (c->augmentation, strlen (c->augmentation) + 1, h); in cie_compute_hash()
752 REQUIRE (strlen ((char *) buf) < sizeof (cie->augmentation)); in _bfd_elf_parse_eh_frame()
754 strcpy (cie->augmentation, (char *) buf); in _bfd_elf_parse_eh_frame()
787 aug = cie->augmentation; in _bfd_elf_parse_eh_frame()
865 if (*cie->augmentation == 0) in _bfd_elf_parse_eh_frame()
950 if (cie->augmentation[0] == 'z') in _bfd_elf_parse_eh_frame()
966 if (cie->augmentation[0] != 'z') in _bfd_elf_parse_eh_frame()
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Delf-eh-frame.c36 char augmentation[20]; member
226 && strcmp (c1->augmentation, c2->augmentation) == 0 in cie_eq()
227 && strcmp (c1->augmentation, "eh") != 0 in cie_eq()
263 h = iterative_hash (c->augmentation, strlen (c->augmentation) + 1, h); in cie_compute_hash()
753 REQUIRE (strlen ((char *) buf) < sizeof (cie->augmentation)); in _bfd_elf_parse_eh_frame()
755 strcpy (cie->augmentation, (char *) buf); in _bfd_elf_parse_eh_frame()
788 aug = cie->augmentation; in _bfd_elf_parse_eh_frame()
866 if (*cie->augmentation == 0) in _bfd_elf_parse_eh_frame()
951 if (cie->augmentation[0] == 'z') in _bfd_elf_parse_eh_frame()
967 if (cie->augmentation[0] != 'z') in _bfd_elf_parse_eh_frame()
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/aarch64/
H A Daarch64-unwind.h45 char *aug_str = cie->augmentation; in aarch64_cie_signed_with_b_key()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/aarch64/
H A Daarch64-unwind.h45 char *aug_str = cie->augmentation; in aarch64_cie_signed_with_b_key()
/netbsd-src/external/gpl3/gcc/dist/libgcc/
H A Dunwind-dw2-fde.h139 unsigned char augmentation[]; member
H A Dunwind-dw2-fde.c301 aug = cie->augmentation; in get_cie_encoding()
H A Dunwind-dw2.c422 const unsigned char *aug = cie->augmentation; in extract_cie_info()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dunwind-dw2-fde.h139 unsigned char augmentation[]; member
H A Dunwind-dw2-fde.c301 aug = cie->augmentation; in get_cie_encoding()
H A Dunwind-dw2.c422 const unsigned char *aug = cie->augmentation; in extract_cie_info()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/xtensa/
H A Dunwind-dw2-xtensa.c220 const unsigned char *aug = cie->augmentation; in extract_cie_info()
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/xtensa/
H A Dunwind-dw2-xtensa.c220 const unsigned char *aug = cie->augmentation; in extract_cie_info()
/netbsd-src/external/gpl3/binutils/dist/binutils/
H A DChangeLog-201413 * dwarf.c (read_cie): Revert check for unused augmentation data -
87 augmentation data length.
212 (read_cie): Fail if the augmentation data extends off the end of
249 (display_debug_frames): Check for corrupt augmentation data.
H A Ddwarf.c8483 char *augmentation; member
9004 fc->augmentation = (char *) start; in read_cie()
9016 if (strcmp (fc->augmentation, "eh") == 0) in read_cie()
9065 if (fc->augmentation[0] == 'z') in read_cie()
9088 p = (unsigned char *) fc->augmentation + 1; in read_cie()
9262 printf ("CIE \"%s\" cf=%d df=%d ra=%d\n", fc->augmentation, in display_debug_frames()
9269 printf (" Augmentation: \"%s\"\n", fc->augmentation); in display_debug_frames()
9382 fc->augmentation = ""; in display_debug_frames()
9396 fc->augmentation = cie->augmentation; in display_debug_frames()
9439 if (cie->augmentation[0] == 'z') in display_debug_frames()
H A DChangeLog-2019605 for augmentation data length.
748 augmentation string, if it is printable.
H A DChangeLog-2010890 'z' augmentation strings.
/netbsd-src/external/gpl3/binutils.old/dist/binutils/
H A DChangeLog-201413 * dwarf.c (read_cie): Revert check for unused augmentation data -
87 augmentation data length.
212 (read_cie): Fail if the augmentation data extends off the end of
249 (display_debug_frames): Check for corrupt augmentation data.
H A Ddwarf.c8383 char *augmentation; member
8895 fc->augmentation = (char *) start; in read_cie()
8907 if (strcmp (fc->augmentation, "eh") == 0) in read_cie()
8956 if (fc->augmentation[0] == 'z') in read_cie()
8979 p = (unsigned char *) fc->augmentation + 1; in read_cie()
9156 printf ("CIE \"%s\" cf=%d df=%d ra=%d\n", fc->augmentation, in display_debug_frames()
9163 printf (" Augmentation: \"%s\"\n", fc->augmentation); in display_debug_frames()
9276 fc->augmentation = ""; in display_debug_frames()
9288 fc->augmentation = cie->augmentation; in display_debug_frames()
9331 if (cie->augmentation[0] == 'z') in display_debug_frames()
H A DChangeLog-2019605 for augmentation data length.
748 augmentation string, if it is printable.
H A DChangeLog-2010890 'z' augmentation strings.
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DAMDGPUDwarfExtensionsForHeterogeneousDebugging.rst376 in the debugger information entries as is possible with the augmentation
377 string of other sections. The format that should be used for the augmentation
445 ``DW_AT_LLVM_augmentation`` Compilation unit augmentation string
3222 augmentation string.
3224 *The augmentation string allows producers to indicate that there is
3230 augmentation string.
3232 The format for the augmentation string is:
3318 A null-terminated UTF-8 vendor specific augmentation string, which provides
3320 recommended format for augmentation string is:
3340 the other augmentation strings and allows multiple vendor extensions to be
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/cr16/
H A Dunwind-cr16.c395 const unsigned char *aug = cie->augmentation; in extract_cie_info()
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/cr16/
H A Dunwind-cr16.c395 const unsigned char *aug = cie->augmentation; in extract_cie_info()

1234