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

/freebsd-11-stable/contrib/binutils/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...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddwarf2-frame.c69 /* True if a 'z' augmentation existed. */
1031 augmentation in the associated CIE. The argument of this
1032 augmentation is a single byte.
1289 char *augmentation;
1314 /* Interpret the interesting bits of the augmentation. */
1315 augmentation = buf;
1316 buf = augmentation + strlen (augmentation) + 1;
1318 /* The GCC 2.x "eh" augmentation has a pointer immediately
1319 following the augmentation strin
1280 char *augmentation; local
[all...]
/freebsd-11-stable/contrib/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.c2178 char augmentation[6];
2264 augmentation[0] = 0;
2272 augmentation section.
2274 an LSDA pointer in the FDE augmentation.
2278 personality routine in the CIE augmentation. */
2284 p = augmentation + 1;
2300 if (p > augmentation + 1)
2302 augmentation[0] = 'z';
2312 + strlen (augmentation) + 1 /* Augmentation */
2328 dw2_asm_output_nstring (augmentation,
2177 char augmentation[6]; local
[all...]
H A Dunwind-dw2.c346 unit F belongs to. Return a pointer to the byte after the augmentation,
347 or NULL if we encountered an undecipherable augmentation. */
353 const unsigned char *aug = cie->augmentation;
358 /* g++ v2 "eh" has pointer immediately following augmentation string,
367 /* Immediately following the augmentation are the code and
377 /* If the augmentation starts with 'z', then a uleb128 immediately
378 follows containing the length of the augmentation field following
389 /* Iterate over recognized augmentation subsequences. */
406 /* "P" indicates a personality routine in the CIE augmentation. */
423 /* Otherwise we have an unknown augmentation strin
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp276 cie_sp->augmentation[i] = m_cfi_data.GetU8(&offset);
277 if (cie_sp->augmentation[i] == '\0') {
278 // Zero out remaining bytes in augmentation string
280 cie_sp->augmentation[j] = '\0';
287 cie_sp->augmentation[CFI_AUG_MAX_SIZE - 1] != '\0') {
289 "CIE parse error: CIE augmentation string was too large "
310 if (cie_sp->augmentation[0]) {
311 // Get the length of the eh_frame augmentation data which starts with a
315 const size_t aug_str_len = strlen(cie_sp->augmentation);
320 if (cie_sp->augmentation[
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf-eh-frame.c36 char augmentation[20]; member in struct:cie
224 && strcmp (c1->augmentation, c2->augmentation) == 0
225 && strcmp (c1->augmentation, "eh") != 0
258 h = iterative_hash (c->augmentation, strlen (c->augmentation) + 1, h);
275 ENTRY's augmentation string. */
291 /* Likewise ENTRY's augmentation data. */
613 REQUIRE (strlen ((char *) buf) < sizeof (cie->augmentation));
615 strcpy (cie->augmentation, (cha
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDWARFCallFrameInfo.h89 char augmentation[CFI_AUG_MAX_SIZE]; // This is typically empty or very member in struct:lldb_private::DWARFCallFrameInfo::CIE
101 // augmentation data
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddwarf.c2819 char *augmentation; member in struct:Frame_Chunk
3035 fc->augmentation = (char *) start;
3038 if (fc->augmentation[0] == 'z')
3054 else if (strcmp (fc->augmentation, "eh") == 0)
3086 fc->augmentation, fc->code_factor, fc->data_factor,
3093 printf (" Augmentation: \"%s\"\n", fc->augmentation);
3112 p = (unsigned char *) fc->augmentation + 1;
3157 fc->augmentation = "";
3167 fc->augmentation = cie->augmentation;
[all...]

Completed in 269 milliseconds