| /src/external/bsd/elftoolchain/dist/libdwarf/ |
| dwarf_pro_frame.c | 59 Dwarf_P_Cie cie; local 66 if ((cie = calloc(1, sizeof(struct _Dwarf_Cie))) == NULL) { 70 STAILQ_INSERT_TAIL(&dbg->dbgp_cielist, cie, cie_next); 72 cie->cie_index = dbg->dbgp_cielen++; 75 cie->cie_augment = (uint8_t *) strdup(augmenter); 76 if (cie->cie_augment == NULL) { 82 cie->cie_caf = caf; 83 cie->cie_daf = (int8_t) daf; /* daf is signed. */ 84 cie->cie_ra = ra; 86 cie->cie_initinst = malloc((size_t) inst_len) [all...] |
| libdwarf_frame.c | 38 Dwarf_Cie cie; local 40 STAILQ_FOREACH(cie, &fs->fs_cielist, cie_next) { 41 if (cie->cie_offset == offset) 45 if (cie == NULL) 49 *ret_cie = cie; 55 _dwarf_frame_read_lsb_encoded(Dwarf_Debug dbg, Dwarf_Cie cie, uint64_t *val, 69 *val = dbg->read(data, offsetp, cie->cie_addrsize); 129 _dwarf_frame_parse_lsb_cie_augment(Dwarf_Debug dbg, Dwarf_Cie cie, 137 assert(cie->cie_augment != NULL && *cie->cie_augment == 'z') 182 Dwarf_Cie cie; local 309 Dwarf_Cie cie; local 421 Dwarf_Cie cie, tcie; local 447 Dwarf_Cie cie; local 1198 Dwarf_Cie cie; local 1546 Dwarf_P_Cie cie; local 1589 Dwarf_P_Cie cie, tcie; local [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/aarch64/ |
| aarch64-unwind.h | 40 const struct dwarf_cie *cie = get_cie (fde); local 41 if (cie != NULL) 43 const unsigned char *aug_str = cie->augmentation;
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/aarch64/ |
| aarch64-unwind.h | 42 const struct dwarf_cie *cie = get_cie (fde); local 43 if (cie != NULL) 45 char *aug_str = cie->augmentation;
|
| /src/external/gpl3/gcc/dist/libgcc/config/xtensa/ |
| unwind-dw2-xtensa.c | 41 /* The standard CIE and FDE structures work fine for Xtensa but the 216 /* Extract any interesting information from the CIE for the translation 221 extract_cie_info (const struct dwarf_cie *cie, struct _Unwind_Context *context, 224 const unsigned char *aug = cie->augmentation; 243 if (cie->version == 1) 281 /* "P" indicates a personality routine in the CIE augmentation. */ 317 const struct dwarf_cie *cie; 344 cie = get_cie (fde); 345 if (extract_cie_info (cie, context, fs) == NULL) 346 /* CIE contained unknown augmentation. * 312 const struct dwarf_cie *cie; local [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/xtensa/ |
| unwind-dw2-xtensa.c | 41 /* The standard CIE and FDE structures work fine for Xtensa but the 216 /* Extract any interesting information from the CIE for the translation 221 extract_cie_info (const struct dwarf_cie *cie, struct _Unwind_Context *context, 224 const unsigned char *aug = cie->augmentation; 243 if (cie->version == 1) 281 /* "P" indicates a personality routine in the CIE augmentation. */ 317 const struct dwarf_cie *cie; 344 cie = get_cie (fde); 345 if (extract_cie_info (cie, context, fs) == NULL) 346 /* CIE contained unknown augmentation. * 312 const struct dwarf_cie *cie; local [all...] |
| /src/sys/dev/pci/ |
| cs4280.c | 663 uint32_t cctl, cie; local 705 /* set CIE */ 706 cie = BA1READ4(sc, CS4280_CIE) & ~CIE_CI_MASK; 707 BA1WRITE4(sc, CS4280_CIE, cie | CIE_CI_ENABLE); 741 sc->sc_suspend_state.cs4280.cie = BA1READ4(sc, CS4280_CIE); 743 DPRINTF(("cctl=0x%08x cie=0x%08x cba=0x%08x\n", 745 sc->sc_suspend_state.cs4280.cie, 786 DPRINTF(("cctl=0x%08x cie=0x%08x cba=0x%08x\n", 788 sc->sc_suspend_state.cs4280.cie, 792 BA1WRITE4(sc, CS4280_CIE, sc->sc_suspend_state.cs4280.cie); [all...] |
| cs428x.h | 151 uint32_t cie; member in struct:cs428x_softc::__anon3248::__anon3249
|
| /src/sbin/ifconfig/ |
| ieee80211.c | 1231 const struct ieee80211_country_ie *cie = local 1235 printf("%s<%c%c%c", tag, cie->cc[0], cie->cc[1], cie->cc[2]); 1236 nbands = (cie->len - 3) / sizeof(cie->band[0]); 1238 schan = cie->band[i].schan; 1239 nchan = cie->band[i].nchan; 1242 cie->band[i].maxtxpwr); 1244 printf(" %u,%u", schan, cie->band[i].maxtxpwr) [all...] |
| /src/external/gpl3/gcc/dist/libgcc/ |
| unwind-dw2.c | 416 /* Extract any interesting information from the CIE for the translation 421 extract_cie_info (const struct dwarf_cie *cie, struct _Unwind_Context *context, 424 const unsigned char *aug = cie->augmentation; 440 follows for CIE version >= 4 address size byte and 442 if (__builtin_expect (cie->version >= 4, 0)) 454 if (cie->version == 1) 492 /* "P" indicates a personality routine in the CIE augmentation. */ 949 CIE info, and the PC range to evaluate. */ 999 const struct dwarf_cie *cie; 1026 cie = get_cie (fde) 994 const struct dwarf_cie *cie; local [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/cr16/ |
| unwind-cr16.c | 391 /* Extract any interesting information from the CIE for the translation 396 extract_cie_info (const struct dwarf_cie *cie, struct _Unwind_Context *context, 399 const unsigned char *aug = cie->augmentation; 415 follows for CIE version >= 4 address size byte and 417 if (__builtin_expect (cie->version >= 4, 0)) 429 if (cie->version == 1) 467 /* "P" indicates a personality routine in the CIE augmentation. */ 919 CIE info, and the PC range to evaluate. */ 929 /* Don't allow remember/restore between CIE and FDE programs. */ 1000 /* FIXME, this is wrong; the CIE might have said that th 1178 const struct dwarf_cie *cie; local [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| unwind-dw2.c | 418 /* Extract any interesting information from the CIE for the translation 423 extract_cie_info (const struct dwarf_cie *cie, struct _Unwind_Context *context, 426 const unsigned char *aug = cie->augmentation; 442 follows for CIE version >= 4 address size byte and 444 if (__builtin_expect (cie->version >= 4, 0)) 456 if (cie->version == 1) 494 /* "P" indicates a personality routine in the CIE augmentation. */ 951 CIE info, and the PC range to evaluate. */ 961 /* Don't allow remember/restore between CIE and FDE programs. */ 1040 /* FIXME, this is wrong; the CIE might have said that th 1253 const struct dwarf_cie *cie; local [all...] |
| /src/external/gpl3/binutils/dist/bfd/ |
| elf-eh-frame.c | 30 struct cie struct 219 const struct cie *c1 = (const struct cie *) e1; 220 const struct cie *c2 = (const struct cie *) e2; 234 && (c1->cie_inf->u.cie.u.sec->output_section 235 == c2->cie_inf->u.cie.u.sec->output_section) 252 const struct cie *c = (const struct cie *) e; 257 cie_compute_hash (struct cie *c 593 struct cie *cie, *local_cies = NULL; local 1183 struct eh_cie_fde *fde, *cie; local 1217 struct cie *cie, *new_cie; local 1372 struct eh_cie_fde *cie = ent->u.cie.u.merged_with; local 2148 struct eh_cie_fde *cie; local [all...] |
| elf-bfd.h | 350 /* If REMOVED == 1, this is the CIE that the FDE originally used. 351 The CIE belongs to the same .eh_frame input section as the FDE. 353 If REMOVED == 0, this is the CIE that we have chosen to use for 354 the output FDE. The CIE's REMOVED field is also 0, but the CIE 366 more detailed information about the CIE. 368 - REMOVED && MERGED: We have merged this CIE with MERGED_WITH, 371 - !REMOVED: We have decided to keep this CIE. SEC is the 372 .eh_frame input section that contains the CIE. */ 374 struct cie *full_cie 417 } cie; member in union:eh_cie_fde::__anon9673 428 unsigned int cie : 1; member in struct:eh_cie_fde [all...] |
| /src/external/gpl3/binutils/dist/gas/ |
| dw2gencfi.c | 48 of the CIE. Default to 1 if not otherwise specified. */ 1914 output_cie (struct cie_entry *cie, bool eh_frame, int align) 1923 cie->start_address = symbol_temp_new_now (); 1942 out_four (0); /* CIE id. */ 1945 out_four (-1); /* CIE id. */ 1953 if (cie->per_encoding != DW_EH_PE_omit) 1955 if (cie->lsda_encoding != DW_EH_PE_omit) 1959 tc_output_cie_extra (cie); 1962 if (cie->signal_frame) 1977 if ((cie->return_column & 0xff) != cie->return_column 2212 struct cie_entry *cie; local 2387 struct cie_entry *cie, *cie_next; local [all...] |
| /src/external/gpl3/binutils.old/dist/bfd/ |
| elf-eh-frame.c | 30 struct cie struct 219 const struct cie *c1 = (const struct cie *) e1; 220 const struct cie *c2 = (const struct cie *) e2; 234 && (c1->cie_inf->u.cie.u.sec->output_section 235 == c2->cie_inf->u.cie.u.sec->output_section) 252 const struct cie *c = (const struct cie *) e; 257 cie_compute_hash (struct cie *c 593 struct cie *cie, *local_cies = NULL; local 1178 struct eh_cie_fde *fde, *cie; local 1212 struct cie *cie, *new_cie; local 1370 struct eh_cie_fde *cie = ent->u.cie.u.merged_with; local 2121 struct eh_cie_fde *cie; local [all...] |
| elf-bfd.h | 344 /* If REMOVED == 1, this is the CIE that the FDE originally used. 345 The CIE belongs to the same .eh_frame input section as the FDE. 347 If REMOVED == 0, this is the CIE that we have chosen to use for 348 the output FDE. The CIE's REMOVED field is also 0, but the CIE 360 more detailed information about the CIE. 362 - REMOVED && MERGED: We have merged this CIE with MERGED_WITH, 365 - !REMOVED: We have decided to keep this CIE. SEC is the 366 .eh_frame input section that contains the CIE. */ 368 struct cie *full_cie 411 } cie; member in union:eh_cie_fde::__anon11158 422 unsigned int cie : 1; member in struct:eh_cie_fde [all...] |
| /src/external/gpl3/binutils.old/dist/gas/ |
| dw2gencfi.c | 48 of the CIE. Default to 1 if not otherwise specified. */ 1915 output_cie (struct cie_entry *cie, bool eh_frame, int align) 1924 cie->start_address = symbol_temp_new_now (); 1943 out_four (0); /* CIE id. */ 1946 out_four (-1); /* CIE id. */ 1954 if (cie->per_encoding != DW_EH_PE_omit) 1956 if (cie->lsda_encoding != DW_EH_PE_omit) 1960 tc_output_cie_extra (cie); 1963 if (cie->signal_frame) 1978 if ((cie->return_column & 0xff) != cie->return_column 2213 struct cie_entry *cie; local 2388 struct cie_entry *cie, *cie_next; local [all...] |
| /src/external/gpl3/gdb/dist/bfd/ |
| elf-eh-frame.c | 30 struct cie struct 219 const struct cie *c1 = (const struct cie *) e1; 220 const struct cie *c2 = (const struct cie *) e2; 234 && (c1->cie_inf->u.cie.u.sec->output_section 235 == c2->cie_inf->u.cie.u.sec->output_section) 252 const struct cie *c = (const struct cie *) e; 257 cie_compute_hash (struct cie *c 592 struct cie *cie, *local_cies = NULL; local 1172 struct eh_cie_fde *fde, *cie; local 1206 struct cie *cie, *new_cie; local 1364 struct eh_cie_fde *cie = ent->u.cie.u.merged_with; local 2111 struct eh_cie_fde *cie; local [all...] |
| elf-bfd.h | 344 /* If REMOVED == 1, this is the CIE that the FDE originally used. 345 The CIE belongs to the same .eh_frame input section as the FDE. 347 If REMOVED == 0, this is the CIE that we have chosen to use for 348 the output FDE. The CIE's REMOVED field is also 0, but the CIE 360 more detailed information about the CIE. 362 - REMOVED && MERGED: We have merged this CIE with MERGED_WITH, 365 - !REMOVED: We have decided to keep this CIE. SEC is the 366 .eh_frame input section that contains the CIE. */ 368 struct cie *full_cie 411 } cie; member in union:eh_cie_fde::__anon17605 422 unsigned int cie : 1; member in struct:eh_cie_fde [all...] |
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| frame.c | 54 /* Common Information Entry (CIE). */ 58 /* Computation Unit for this CIE. */ 61 /* Offset into the .debug_frame section where this CIE was found. 62 Used to identify this CIE. */ 97 /* The version recorded in the CIE. */ 104 /* The CIE table is used to find CIEs during parsing, but then 105 discarded. It maps from the CIE's offset to the CIE. */ 119 /* CIE for this FDE. */ 120 struct dwarf2_cie *cie; member in struct:dwarf2_fde 532 struct dwarf2_cie cie; local 1757 struct dwarf2_cie *cie; local [all...] |
| /src/external/gpl3/gdb.old/dist/bfd/ |
| elf-eh-frame.c | 30 struct cie struct 219 const struct cie *c1 = (const struct cie *) e1; 220 const struct cie *c2 = (const struct cie *) e2; 234 && (c1->cie_inf->u.cie.u.sec->output_section 235 == c2->cie_inf->u.cie.u.sec->output_section) 252 const struct cie *c = (const struct cie *) e; 257 cie_compute_hash (struct cie *c 592 struct cie *cie, *local_cies = NULL; local 1172 struct eh_cie_fde *fde, *cie; local 1206 struct cie *cie, *new_cie; local 1364 struct eh_cie_fde *cie = ent->u.cie.u.merged_with; local 2111 struct eh_cie_fde *cie; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| frame.c | 56 /* Common Information Entry (CIE). */ 60 /* Computation Unit for this CIE. */ 63 /* Offset into the .debug_frame section where this CIE was found. 64 Used to identify this CIE. */ 99 /* The version recorded in the CIE. */ 106 /* The CIE table is used to find CIEs during parsing, but then 107 discarded. It maps from the CIE's offset to the CIE. */ 121 /* CIE for this FDE. */ 122 struct dwarf2_cie *cie; member in struct:dwarf2_fde 534 struct dwarf2_cie cie; local 1759 struct dwarf2_cie *cie; local [all...] |
| /src/external/gpl3/binutils/dist/binutils/ |
| dwarf.c | 9248 warn (_("Invalid pointer size (%d) in CIE data\n"), fc->ptr_size); 9256 warn (_("Invalid segment size (%d) in CIE data\n"), fc->segment_size); 9327 Padding may have been inserted to align the end of the CIE. */ 9663 Frame_Chunk *cie; local 9714 start = read_cie (start, block_end, &cie, &version, 9717 if (cie == NULL) 9720 fc = cie; 9738 printf ("CIE \"%s\" cf=%d df=%d ra=%d\n", fc->augmentation, 9743 printf ("CIE\n"); 9778 for (cie = chunks; cie ; cie = cie->next [all...] |
| /src/external/gpl3/binutils.old/dist/binutils/ |
| dwarf.c | 9165 warn (_("Invalid pointer size (%d) in CIE data\n"), fc->ptr_size); 9173 warn (_("Invalid segment size (%d) in CIE data\n"), fc->segment_size); 9244 Padding may have been inserted to align the end of the CIE. */ 9580 Frame_Chunk *cie; local 9631 start = read_cie (start, block_end, &cie, &version, 9634 if (cie == NULL) 9637 fc = cie; 9655 printf ("CIE \"%s\" cf=%d df=%d ra=%d\n", fc->augmentation, 9660 printf ("CIE\n"); 9695 for (cie = chunks; cie ; cie = cie->next [all...] |