HomeSort by relevance Sort by last modified time
    Searched defs:fde (Results 1 - 15 of 15) sorted by null

  /external/elfutils/libdw/
dwarf_cfi_addrframe.c 42 struct dwarf_fde *fde = __libdw_find_fde (cache, address); local
43 if (fde == NULL)
46 int error = __libdw_frame_at_address (cache, fde, address, frame);
fde.c 0 /* FDE reading.
73 struct dwarf_fde *fde = malloc (sizeof (struct dwarf_fde)); local
74 if (fde == NULL)
80 fde->instructions = entry->start;
81 fde->instructions_end = entry->end;
83 &fde->instructions, &fde->start))
85 &fde->instructions, &fde->end)))
87 free (fde);
162 struct dwarf_fde *fde = intern_fde (cache, &entry.fde); local
217 Dwarf_Addr fde; local
262 struct dwarf_fde *fde = __libdw_fde_by_offset (cache, offset); local
307 struct dwarf_fde *fde = intern_fde (cache, &entry.fde); local
    [all...]
cfi.h 54 uint8_t lsda_encoding; /* DW_EH_PE_* for LSDA in FDE augmentation. */
57 bool signal_frame; /* Saw 'S': FDE is for a signal frame. */
60 /* Cached FDE representation. */
65 /* This FDE describes PC values in [start, end). */
155 described by an FDE. */
168 /* The FDE that generated this frame state. This points to its CIE,
170 struct dwarf_fde *fde; member in struct:Dwarf_Frame_s
205 /* Look for an FDE covering the given PC address. */
210 /* Look for an FDE by its offset in the section. */
215 /* Process the FDE that contains the given PC address
    [all...]
libdw.h 187 /* Section offset of CIE this FDE refers to. This will never be
188 DW_CIE_ID_64 in an FDE. If this value is DW_CIE_ID_64, this is
195 then the instruction stream. This FDE describes PC locations in
206 an FDE described by Dward_FDE. Check CIE_id to see which you have. */
211 Dwarf_FDE fde; member in union:__anon21864
316 /* Decode one DWARF CFI entry (CIE or FDE) from the raw section data.
325 see whether ENTRY->cie or ENTRY->fde is valid.
    [all...]
  /external/libunwind_llvm/src/
EHHeaderParser.hpp 84 // Have to decode the whole FDE for the PC range anyway, so just throw away
87 pint_t fde = local
90 CFI_Parser<A>::decodeFDE(addressSpace, fde, fdeInfo, cieInfo);
92 _LIBUNWIND_DEBUG_LOG("EHHeaderParser::decodeTableEntry: bad fde: %s",
Unwind_AppleExtras.cpp 27 void *fde; member in struct:libgcc_object
148 bool checkKeyMgrRegisteredFDEs(uintptr_t pc, void *&fde) {
155 // look at each FDE in keymgr
161 (uintptr_t)ob->fde, &fdeInfo, &cieInfo);
163 // Check if this FDE is for a function that includes the pc
165 fde = (void*)fdeInfo.pcStart;
177 (void)fde;
UnwindCursor.hpp 85 static void add(pint_t mh, pint_t ip_start, pint_t ip_end, pint_t fde);
89 unw_word_t fde, unw_word_t mh));
97 pint_t fde; member in struct:libunwind::DwarfFDECache::entry
143 result = p->fde;
154 pint_t fde) {
172 _bufferUsed->fde = fde;
208 unw_word_t ip_start, unw_word_t ip_end, unw_word_t fde, unw_word_t mh)) {
211 (*func)(p->ip_start, p->ip_end, p->fde, p->mh);
1927 pint_t fde; local
    [all...]
  /external/ltp/testcases/kernel/tracing/pt_test/
pt_test.c 39 int fde = -1; variable
44 static uint64_t **create_map(int fde, long bufsize)
53 MAP_SHARED, fde, 0);
59 MAP_SHARED, fde, INTEL_PT_MEMSIZE);
97 SAFE_IOCTL(fde, PERF_EVENT_IOC_RESET);
98 SAFE_IOCTL(fde, PERF_EVENT_IOC_ENABLE);
101 SAFE_IOCTL(fde, PERF_EVENT_IOC_DISABLE);
138 fde = tst_syscall(__NR_perf_event_open, &attr, 0, -1, -1, 0);
139 if (fde < 0) {
145 bufm = create_map(fde, buhsz)
    [all...]
  /art/libelffile/elf/
elf_debug_reader.h 57 struct FDE : public CFI {
139 const FDE* fde = Read<FDE>(debug_frame->sh_offset + offset); local
140 visit_fde(fde, Read<CIE>(debug_frame->sh_offset + fde->cie_pointer));
  /bionic/libc/bionic/
fdsan.cpp 270 FdEntry* fde = GetFdEntry(fd); local
271 if (!fde) {
276 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, 0)) {
311 FdEntry* fde = GetFdEntry(fd); local
312 if (!fde) {
315 return fde->close_tag;
319 FdEntry* fde = GetFdEntry(fd); local
320 if (!fde) {
325 if (!atomic_compare_exchange_strong(&fde->close_tag, &tag, new_tag)) {
  /external/clang/test/CodeGen/
2009-01-21-InvalidIterator.c 55 typedef struct dwarf_fde fde; typedef in typeref:struct:dwarf_fde
58 const fde *ret;
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 139 const FunctionDifferenceEngine &fde; member in struct:__anon31925::FunctionDifferenceEngine::QueueSorter
140 explicit QueueSorter(const FunctionDifferenceEngine &fde) : fde(fde) {}
143 return fde.getUnprocPredCount(Old.first)
144 < fde.getUnprocPredCount(New.first);
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
DifferenceEngine.cpp 142 const FunctionDifferenceEngine &fde; member in struct:__anon41027::FunctionDifferenceEngine::QueueSorter
143 explicit QueueSorter(const FunctionDifferenceEngine &fde) : fde(fde) {}
146 return fde.getUnprocPredCount(Old.first)
147 < fde.getUnprocPredCount(New.first);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-diff/
DifferenceEngine.cpp 139 const FunctionDifferenceEngine &fde; member in struct:__anon43123::FunctionDifferenceEngine::QueueSorter
140 explicit QueueSorter(const FunctionDifferenceEngine &fde) : fde(fde) {}
143 return fde.getUnprocPredCount(Old.first)
144 < fde.getUnprocPredCount(New.first);
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.cc 2098 FDE fde; local
    [all...]

Completed in 1338 milliseconds