Lines Matching refs:cfi
34 #include "cfi.h"
43 if (dbg->cfi == NULL && dbg->sectiondata[IDX_debug_frame] != NULL)
45 Dwarf_CFI *cfi = libdw_typed_alloc (dbg, Dwarf_CFI);
47 cfi->dbg = dbg;
48 cfi->data = (Elf_Data_Scn *) dbg->sectiondata[IDX_debug_frame];
50 cfi->search_table = NULL;
51 cfi->search_table_vaddr = 0;
52 cfi->search_table_entries = 0;
53 cfi->search_table_encoding = DW_EH_PE_omit;
55 cfi->frame_vaddr = 0;
56 cfi->textrel = 0;
57 cfi->datarel = 0;
59 cfi->e_ident = (unsigned char *) elf_getident (dbg->elf, NULL);
63 cfi->e_machine = ehdr.e_machine;
65 cfi->other_byte_order = dbg->other_byte_order;
66 cfi->default_same_value = false;
68 cfi->next_offset = 0;
69 cfi->cie_tree = cfi->fde_tree = cfi->expr_tree = NULL;
71 cfi->ebl = NULL;
73 dbg->cfi = cfi;
76 return dbg->cfi;