Searched refs:fde (Results 1 - 16 of 16) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dunwind-dw2-fde-compat.c35 #include "unwind-dw2-fde.h"
38 extern const fde * __libunwind__Unwind_Find_FDE
41 const fde *
H A Dunwind-dw2-fde-darwin.c38 #include "unwind-dw2-fde.h"
45 static const fde * _Unwind_Find_registered_FDE (void *pc,
49 #include "unwind-dw2-fde.c"
82 void *fde; member in struct:live_images
122 __deregister_frame_info_bases (image->fde);
133 free (image->fde);
134 image->fde = NULL;
145 static inline const fde *
148 const fde *result = NULL;
156 char *fde
155 char *fde = NULL; local
[all...]
H A Dunwind-dw2-fde.h157 typedef struct dwarf_fde fde;
167 static inline const fde *
168 next_fde (const fde *f)
170 return (const fde *) ((char *) f + f->length + sizeof (f->length));
173 extern const fde * _Unwind_Find_FDE (void *, struct dwarf_eh_bases *);
176 last_fde (struct object *obj __attribute__ ((__unused__)), const fde *f)
189 #endif /* unwind-dw2-fde.h */
156 typedef struct dwarf_fde fde; typedef in typeref:struct:dwarf_fde
H A Dunwind-dw2-fde.c41 #include "unwind-dw2-fde.h"
326 const fde *x, const fde *y)
339 fde_single_encoding_compare (struct object *ob, const fde *x, const fde *y)
355 fde_mixed_encoding_compare (struct object *ob, const fde *x, const fde *y)
375 typedef int (*fde_compare_t) (struct object *, const fde *, const fde *);
402 size = sizeof (struct fde_vector) + sizeof (const fde *) * coun
[all...]
H A Dunwind-dw2-fde-glibc.c47 #include "unwind-dw2-fde.h"
59 static const fde * _Unwind_Find_registered_FDE (void *pc, struct dwarf_eh_bases *bases);
62 #include "unwind-dw2-fde.c"
75 const fde *ret;
337 signed fde __attribute__ ((mode (SI))); member in struct:fde_table
342 fde *f;
368 f = (fde *) (table[mid].fde + data_base);
386 ob.u.single = (fde *) eh_frame;
389 data->ret = linear_search_fdes (&ob, (fde *) eh_fram
[all...]
H A Ddwarf2out.c615 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
623 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
628 if (fde->dw_fde_current_label == NULL
629 || strcmp (label, fde->dw_fde_current_label) != 0)
639 xcfi->dw_cfi_opc = fde->dw_fde_current_label
643 add_cfi (&fde->dw_fde_cfi, xcfi);
645 fde->dw_fde_current_label = label;
648 add_cfi (&fde->dw_fde_cfi, cfi);
706 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
707 for (cfi = fde
622 dw_fde_ref fde = &fde_table[fde_table_in_use - 1]; local
705 dw_fde_ref fde = &fde_table[fde_table_in_use - 1]; local
2045 output_cfi(dw_cfi_ref cfi, dw_fde_ref fde, int for_eh) argument
2173 dw_fde_ref fde; local
2532 dw_fde_ref fde; local
2610 dw_fde_ref fde; local
6987 dw_fde_ref fde; local
10543 dw_fde_ref fde; local
[all...]
H A Dunwind-dw2.c41 #include "unwind-dw2-fde.h"
319 const struct dwarf_fde *fde = _Unwind_Find_FDE (pc-1, &bases);
320 if (fde)
1100 const struct dwarf_fde *fde;
1111 fde = _Unwind_Find_FDE (context->ra + _Unwind_IsSignalFrame (context) - 1,
1113 if (fde == NULL)
1127 cie = get_cie (fde);
1137 /* Locate augmentation for the fde. */
1138 aug = (unsigned char *) fde + sizeof (*fde);
316 const struct dwarf_fde *fde = _Unwind_Find_FDE (pc-1, &bases); local
1095 const struct dwarf_fde *fde; local
[all...]
H A Dvmsdbgout.c799 vms_func_ref fde = &func_table[rtnnum];
801 rtnname = (char *)fde->vms_func_name;
872 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_PROLOG_LABEL, fde->funcdef_number);
890 vms_func_ref fde = &func_table[rtnnum];
891 int corrected_rtnnum = fde->funcdef_number;
1383 vms_func_ref fde;
1397 fde = &func_table[func_table_in_use++];
1398 fde->vms_func_name = xstrdup (name);
1399 fde->funcdef_number = current_function_funcdef_no;
798 vms_func_ref fde = &func_table[rtnnum]; local
889 vms_func_ref fde = &func_table[rtnnum]; local
1381 vms_func_ref fde; local
/freebsd-9.3-release/contrib/binutils/gas/
H A Ddw2gencfi.c136 /* Construct a new FDE structure and add it to the end of the fde list. */
141 struct fde_entry *fde = xcalloc (1, sizeof (struct fde_entry));
144 frchain_now->frch_cfi_data->cur_fde_data = fde;
145 *last_fde_data = fde;
146 last_fde_data = &fde->next;
148 fde->last = &fde->data;
149 fde->return_column = DWARF2_DEFAULT_RETURN_COLUMN;
150 fde->per_encoding = DW_EH_PE_omit;
151 fde
140 struct fde_entry *fde = xcalloc (1, sizeof (struct fde_entry)); local
178 struct fde_entry *fde = alloc_fde_entry (); local
629 struct fde_entry *fde; local
699 struct fde_entry *fde; local
1116 output_fde(struct fde_entry *fde, struct cie_entry *cie, struct cfi_insn_data *first, int align) argument
1187 select_cie_for_fde(struct fde_entry *fde, struct cfi_insn_data **pfirst) argument
1315 struct fde_entry *fde; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Ddwarf2-frame.c585 struct dwarf2_fde *fde;
617 fde = dwarf2_frame_find_fde (&fs->pc);
618 gdb_assert (fde != NULL);
621 fs->data_align = fde->cie->data_alignment_factor;
622 fs->code_align = fde->cie->code_alignment_factor;
623 fs->retaddr_column = fde->cie->return_address_register;
626 execute_cfa_program (fde->cie->initial_instructions,
627 fde->cie->end, next_frame, fs);
634 execute_cfa_program (fde->instructions, fde
580 struct dwarf2_fde *fde; local
1187 struct dwarf2_fde *fde; local
1214 add_fde(struct comp_unit *unit, struct dwarf2_fde *fde) argument
1389 struct dwarf2_fde *fde; local
[all...]
/freebsd-9.3-release/contrib/gcc/config/
H A Ddarwin-crt2.c80 void *fde; member in struct:live_images
/freebsd-9.3-release/sys/dev/fdc/
H A Dfdc_acpi.c46 void *fde);
148 fdc_acpi_probe_children(device_t bus, device_t dev, void *fde) argument
160 bcopy(fde, ctx->fd_present, sizeof(ctx->fd_present));
/freebsd-9.3-release/contrib/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp140 const FunctionDifferenceEngine &fde; member in struct:__anon3544::FunctionDifferenceEngine::QueueSorter
141 explicit QueueSorter(const FunctionDifferenceEngine &fde) : fde(fde) {} argument
144 return fde.getUnprocPredCount(Old.first)
145 < fde.getUnprocPredCount(New.first);
/freebsd-9.3-release/gnu/lib/libgcc/
H A DMakefile64 LIB2ADDEH = unwind-dw2.c unwind-dw2-fde-glibc.c unwind-sjlj.c gthr-gnat.c \
/freebsd-9.3-release/contrib/binutils/bfd/
H A Delf-eh-frame.c822 (_("%P: fde encoding in %B(%A) prevents .eh_frame_hdr"
1417 hdr_info->array[hdr_info->array_count++].fde
1524 fde_count x [encoded] initial_loc, fde
1593 hdr_info->array[i].fde - sec->output_section->vma,
H A Delf-bfd.h295 bfd_vma fde;
294 bfd_vma fde; member in struct:eh_frame_array_ent

Completed in 224 milliseconds