Searched refs:augmentation (Results 1 - 18 of 18) sorted by relevance

/openbsd-current/gnu/usr.bin/binutils/gas/
H A Dehopt.c108 char augmentation[10]; local
161 /* Skip the augmentation (a null terminated string). */
177 if ((size_t) iaug < (sizeof augmentation) - 1)
179 augmentation[iaug] = f->fr_literal[offset];
196 augmentation[iaug] = '\0';
197 if (augmentation[0] == '\0')
199 /* No augmentation. */
201 else if (strcmp (augmentation, "eh") == 0)
220 else if (augmentation[0] != 'z')
231 info->z_augmentation = (augmentation[
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Dehopt.c108 char augmentation[10]; local
153 /* Skip the augmentation (a null terminated string). */
169 if ((size_t) iaug < (sizeof augmentation) - 1)
171 augmentation[iaug] = f->fr_literal[offset];
188 augmentation[iaug] = '\0';
189 if (augmentation[0] == '\0')
191 /* No augmentation. */
193 else if (strcmp (augmentation, "eh") == 0)
212 else if (augmentation[0] != 'z')
223 info->z_augmentation = (augmentation[
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dunwind-dw2-fde.h146 unsigned char augmentation[];
145 unsigned char augmentation[]; member in struct:dwarf_cie
H A Dunwind-dw2-fde.c273 aug = cie->augmentation;
277 p = aug + strlen ((const char *)aug) + 1; /* Skip the augmentation string. */
286 p = read_uleb128 (p, &utmp); /* Skip augmentation length. */
303 /* Otherwise end of string, or unknown augmentation. */
H A Ddwarf2out.c2177 char augmentation[6];
2260 augmentation[0] = 0;
2268 augmentation section.
2270 an LSDA pointer in the FDE augmentation.
2274 personality routine in the CIE augmentation. */
2280 p = augmentation + 1;
2296 if (p > augmentation + 1)
2298 augmentation[0] = 'z';
2308 + strlen (augmentation) + 1 /* Augmentation */
2324 dw2_asm_output_nstring (augmentation,
2176 char augmentation[6]; local
[all...]
H A Dunwind-dw2.c373 unit F belongs to. Return a pointer to the byte after the augmentation,
374 or NULL if we encountered an undecipherable augmentation. */
380 const unsigned char *aug = cie->augmentation;
385 /* g++ v2 "eh" has pointer immediately following augmentation string,
394 /* Immediately following the augmentation are the code and
404 /* If the augmentation starts with 'z', then a uleb128 immediately
405 follows containing the length of the augmentation field following
416 /* Iterate over recognized augmentation subsequences. */
433 /* "P" indicates a personality routine in the CIE augmentation. */
450 /* Otherwise we have an unknown augmentation strin
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Ddwarf2-frame.c69 /* True if a 'z' augmentation existed. */
1044 augmentation in the associated CIE. The argument of this
1045 augmentation is a single byte.
1302 char *augmentation;
1328 /* Interpret the interesting bits of the augmentation. */
1329 augmentation = buf;
1330 buf = augmentation + strlen (augmentation) + 1;
1332 /* The GCC 2.x "eh" augmentation has a pointer immediately
1333 following the augmentation strin
1293 char *augmentation; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dunwind-dw2-fde.h140 unsigned char augmentation[];
139 unsigned char augmentation[]; member in struct:dwarf_cie
H A Dunwind-dw2-fde.c271 aug = cie->augmentation;
275 p = aug + strlen (aug) + 1; /* Skip the augmentation string. */
281 p = read_uleb128 (p, &utmp); /* Skip augmentation length. */
298 /* Otherwise end of string, or unknown augmentation. */
H A Dunwind-dw2.c279 unit F belongs to. Return a pointer to the byte after the augmentation,
280 or NULL if we encountered an undecipherable augmentation. */
286 const unsigned char *aug = cie->augmentation;
291 /* g++ v2 "eh" has pointer immediately following augmentation string,
300 /* Immediately following the augmentation are the code and
307 /* If the augmentation starts with 'z', then a uleb128 immediately
308 follows containing the length of the augmentation field following
319 /* Iterate over recognized augmentation subsequences. */
336 /* "P" indicates a personality routine in the CIE augmentation. */
344 /* Otherwise we have an unknown augmentation strin
[all...]
H A Ddwarf2out.c1826 char augmentation[6];
1881 augmentation[0] = 0;
1889 augmentation section.
1891 an LSDA pointer in the FDE augmentation.
1895 personality routine in the CIE augmentation. */
1901 p = augmentation + 1;
1917 if (p > augmentation + 1)
1919 augmentation[0] = 'z';
1929 + strlen (augmentation) + 1 /* Augmentation */
1946 dw2_asm_output_nstring (augmentation,
1825 char augmentation[6]; local
[all...]
/openbsd-current/gnu/llvm/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp280 cie_sp->augmentation[i] = m_cfi_data.GetU8(&offset);
281 if (cie_sp->augmentation[i] == '\0') {
282 // Zero out remaining bytes in augmentation string
284 cie_sp->augmentation[j] = '\0';
291 cie_sp->augmentation[CFI_AUG_MAX_SIZE - 1] != '\0') {
293 "CIE parse error: CIE augmentation string was too large "
314 if (cie_sp->augmentation[0]) {
315 // Get the length of the eh_frame augmentation data which starts with a
319 const size_t aug_str_len = strlen(cie_sp->augmentation);
324 if (cie_sp->augmentation[
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Delf-eh-frame.c34 char augmentation[20]; member in struct:cie
218 && strcmp (c1->augmentation, c2->augmentation) == 0
219 && strcmp (c1->augmentation, "eh") != 0
251 h = iterative_hash (c->augmentation, strlen (c->augmentation) + 1, h);
268 ENTRY's augmentation string. */
284 /* Likewise ENTRY's augmentation data. */
606 REQUIRE (strlen ((char *) buf) < sizeof (cie->augmentation));
608 strcpy (cie->augmentation, (cha
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h90 char augmentation[CFI_AUG_MAX_SIZE]; // This is typically empty or very member in struct:lldb_private::DWARFCallFrameInfo::CIE
102 // augmentation data
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Delf-eh-frame.c184 && strcmp (c1->augmentation, c2->augmentation) == 0
185 && strcmp (c1->augmentation, "eh") != 0
415 if (strlen (buf) > sizeof (cie.augmentation) - 1)
418 strcpy (cie.augmentation, buf);
442 aug = cie.augmentation;
513 /* Unrecognized augmentation. Better bail out. */
589 if (cie.augmentation[0] == 'z')
591 /* If some new augmentation data is added before LSDA
592 in FDE augmentation are
[all...]
H A Delf-bfd.h258 unsigned char augmentation[20];
257 unsigned char augmentation[20]; member in struct:cie
/openbsd-current/gnu/usr.bin/binutils-2.17/binutils/
H A Ddwarf.c2757 char *augmentation; member in struct:Frame_Chunk
2972 fc->augmentation = (char *) start;
2975 if (fc->augmentation[0] == 'z')
2991 else if (strcmp (fc->augmentation, "eh") == 0)
3023 fc->augmentation, fc->code_factor, fc->data_factor,
3030 printf (" Augmentation: \"%s\"\n", fc->augmentation);
3049 p = (unsigned char *) fc->augmentation + 1;
3095 fc->augmentation = "";
3105 fc->augmentation = cie->augmentation;
[all...]
/openbsd-current/gnu/usr.bin/binutils/binutils/
H A Dreadelf.c8544 char *augmentation;
8754 fc->augmentation = start;
8757 if (fc->augmentation[0] == 'z')
8766 else if (strcmp (fc->augmentation, "eh") == 0)
8784 fc->augmentation, fc->code_factor, fc->data_factor,
8791 printf (" Augmentation: \"%s\"\n", fc->augmentation);
8810 p = fc->augmentation + 1;
8856 fc->augmentation = "";
8866 fc->augmentation = cie->augmentation;
8542 char *augmentation; member in struct:Frame_Chunk
[all...]

Completed in 404 milliseconds