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

/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrameReader.h25 * the corresponding CIE and FDE entries.
43 enum TokenKind { CIE, FDE, Terminator, Unknown, NumOfTokenKinds }; enumerator in enum:mcld::EhFrameReader::TokenKind
H A DEhFrame.h46 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 { class in class:mcld::EhFrame
139 FDE(llvm::StringRef pRegion, CIE& pCIE);
140 ~FDE();
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DEhFrame.cpp55 // EhFrame::FDE
57 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE) function in class:mcld::EhFrame::FDE
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*> FDERemoveLis
[all...]

Completed in 82 milliseconds