Searched defs:FDE (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrameReader.h24 * the corresponding CIE and FDE entries.
45 FDE, enumerator in enum:mcld::EhFrameReader::TokenKind
H A DEhFrame.h55 class FDE;
61 typedef std::list<FDE*> FDEList;
67 // A super class of CIE and FDE, containing the same part
113 void add(FDE& pFDE) { m_FDEs.push_back(&pFDE); }
114 void remove(FDE& pFDE) { m_FDEs.remove(&pFDE); }
133 /** \class FDE
135 * The FDE structure refers to LSB Core Spec 4.1, chap.10.6. Exception Frames.
137 class FDE : public Record class in class:mcld::EhFrame
140 FDE(llvm::StringRef pRegion, CIE& pCIE);
141 ~FDE();
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DEhFrame.cpp54 // EhFrame::FDE
56 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE) function in class:EhFrame::FDE
60 EhFrame::FDE::~FDE()
64 void EhFrame::FDE::setCIE(EhFrame::CIE& pCIE)
85 : EhFrame::FDE(pRegion, pCIE) {
158 void EhFrame::addFDE(EhFrame::FDE& pFDE, bool pAlsoAddFragment)
167 // FDE number only used by .eh_frame_hdr computation, and the number of CIE
264 typedef std::vector<FDE*> FDERemoveLis
[all...]

Completed in 76 milliseconds