Searched defs:CIE (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp186 /// \brief DWARF Common Information Entry (CIE)
187 class CIE : public FrameEntry { class in namespace:__anon11878
191 CIE(uint64_t Offset, uint64_t Length, uint8_t Version, function in class:__anon11878::CIE
203 ~CIE() override {}
209 OS << format("%08x %08x %08x CIE",
248 // Each FDE has a CIE it's "linked to". Our FDE contains is constructed with
249 // an offset to the CIE (provided by parsing the FDE header). The CIE itself
253 CIE *Cie)
260 CIE *getLinkedCI
[all...]
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2reader.h595 // information entry headers. The distinguished CIE id, the way FDEs
604 // - Linux C++ exception handling data uses CIE augmentation strings
606 // the CIE and FDE headers and special encodings used for addresses in
659 struct CIE;
661 // A CFI entry, either an FDE or a CIE.
690 // For both DWARF CFI and .eh_frame sections, this is the CIE id in a
691 // CIE, and the offset of the associated CIE in an FDE.
694 // The CIE that applies to this entry, if we've parsed it. If this is a
695 // CIE, the
700 struct CIE: public Entry { struct in class:dwarf2reader::CallFrameInfo
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dreaddwarf.c204 applies for initial lengths for CIE/FDEs and probably in zillions
1619 > If a CIE does not have an "augmentation string" (typically "zR") then
1622 > is specified by the CIE itself, which works fine with GCC compiled code
1931 /* Read-only fields (set by the CIE) */
3676 /* This gives the CIE an identity to which FDEs will refer. */
3690 CIE; typedef in typeref:struct:__anon19399
3692 static void init_CIE ( CIE* cie )
3704 static CIE *the_CIEs = NULL;
3762 of which is either a FDE (usually) or a CIE (occasionally).
3763 Each FDE has a field indicating which CIE i
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp6801 /// A few fields of the CIE are used when decoding the FDE's. This struct
6810 // Map from the start offset of the CIE to the cached data for that CIE.
6831 // This is a CIE.
6895 outs() << "CIE:\n";
6897 outs() << " CIE ID: " << ID << "\n";
6936 // The CIE pointer for an FDE is the same location as the ID which we
6942 "FDE points to CIE before the __eh_frame start");
6947 llvm_unreachable("Couldn't find CIE at offset in to __eh_frame section");
6949 const DecodedCIE &CIE local
[all...]

Completed in 1208 milliseconds