/netbsd-src/external/gpl3/binutils.old/dist/gas/ |
H A D | ehopt.c | 108 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 D | ehopt.c | 106 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 D | elf-eh-frame.c | 36 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 D | elf-eh-frame.c | 36 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 D | aarch64-unwind.h | 45 char *aug_str = cie->augmentation; in aarch64_cie_signed_with_b_key()
|
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/aarch64/ |
H A D | aarch64-unwind.h | 45 char *aug_str = cie->augmentation; in aarch64_cie_signed_with_b_key()
|
/netbsd-src/external/gpl3/gcc/dist/libgcc/ |
H A D | unwind-dw2-fde.h | 139 unsigned char augmentation[]; member
|
H A D | unwind-dw2-fde.c | 301 aug = cie->augmentation; in get_cie_encoding()
|
H A D | unwind-dw2.c | 422 const unsigned char *aug = cie->augmentation; in extract_cie_info()
|
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/ |
H A D | unwind-dw2-fde.h | 139 unsigned char augmentation[]; member
|
H A D | unwind-dw2-fde.c | 301 aug = cie->augmentation; in get_cie_encoding()
|
H A D | unwind-dw2.c | 422 const unsigned char *aug = cie->augmentation; in extract_cie_info()
|
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/xtensa/ |
H A D | unwind-dw2-xtensa.c | 220 const unsigned char *aug = cie->augmentation; in extract_cie_info()
|
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/xtensa/ |
H A D | unwind-dw2-xtensa.c | 220 const unsigned char *aug = cie->augmentation; in extract_cie_info()
|
/netbsd-src/external/gpl3/binutils/dist/binutils/ |
H A D | ChangeLog-2014 | 13 * 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 D | dwarf.c | 8483 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 D | ChangeLog-2019 | 605 for augmentation data length. 748 augmentation string, if it is printable.
|
H A D | ChangeLog-2010 | 890 'z' augmentation strings.
|
/netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
H A D | ChangeLog-2014 | 13 * 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 D | dwarf.c | 8383 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 D | ChangeLog-2019 | 605 for augmentation data length. 748 augmentation string, if it is printable.
|
H A D | ChangeLog-2010 | 890 'z' augmentation strings.
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst | 376 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 D | unwind-cr16.c | 395 const unsigned char *aug = cie->augmentation; in extract_cie_info()
|
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/cr16/ |
H A D | unwind-cr16.c | 395 const unsigned char *aug = cie->augmentation; in extract_cie_info()
|