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

  /frameworks/compile/mclinker/include/mcld/LD/
EhFrameReader.h 25 * the corresponding CIE and FDE entries.
43 enum TokenKind { CIE, FDE, Terminator, Unknown, NumOfTokenKinds };
EhFrame.h 46 class FDE;
52 typedef std::list<FDE*> FDEList;
58 // A super class of CIE and FDE, containing the same part
112 void add(FDE& pFDE) { m_FDEs.push_back(&pFDE); }
113 void remove(FDE& pFDE) { m_FDEs.remove(&pFDE); }
132 /** \class FDE
134 * The FDE structure refers to LSB Core Spec 4.1, chap.10.6. Exception
137 class FDE : public Record {
139 FDE(llvm::StringRef pRegion, CIE& pCIE);
140 ~FDE();
    [all...]
  /frameworks/compile/mclinker/lib/LD/
EhFrame.cpp 55 // EhFrame::FDE
57 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE)
61 EhFrame::FDE::~FDE() {
64 void EhFrame::FDE::setCIE(EhFrame::CIE& pCIE) {
83 : EhFrame::FDE(pRegion, pCIE) {
145 void EhFrame::addFDE(EhFrame::FDE& pFDE, bool pAlsoAddFragment) {
152 // FDE number only used by .eh_frame_hdr computation, and the number of CIE
250 typedef std::vector<FDE*> FDERemoveList
254 FDE& fde = **i; local
276 FDE& fde = **i; local
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugFrame.cpp 278 /// \brief DWARF Frame Description Entry (FDE)
279 class FDE : public FrameEntry {
281 // Each FDE has a CIE it's "linked to". Our FDE contains is constructed with
282 // an offset to the CIE (provided by parsing the FDE header). The CIE itself
284 FDE(uint64_t Offset, uint64_t Length, int64_t LinkedCIEOffset,
291 ~FDE() override {}
296 OS << format("%08x %08x %08x FDE ",
441 Cie = cast<FDE>(this)->getLinkedCIE();
623 // FDE
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.h 606 // the CIE and FDE headers and special encodings used for addresses in
661 // A CFI entry, either an FDE or a CIE.
691 // CIE, and the offset of the associated CIE in an FDE.
729 // This is the encoding used for addresses in the FDE header and
736 // A frame description entry (FDE).
737 struct FDE: public Entry {
    [all...]

Completed in 293 milliseconds