Searched defs:CIE (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.h45 class CIE;
48 typedef std::vector<CIE*> CIEList;
56 typedef std::map</*offset*/ size_t, CIE*> CIEMap;
58 // A super class of CIE and FDE, containing the same part
74 /** \class CIE
76 * The CIE structure refers to LSB Core Spec 4.1, chap.10.6. Exception
79 class CIE : public Record { class in class:mcld::EhFrame
81 explicit CIE(llvm::StringRef pRegion);
82 ~CIE();
139 FDE(llvm::StringRef pRegion, CIE
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DEhFrame.cpp41 // EhFrame::CIE
43 EhFrame::CIE::CIE(llvm::StringRef pRegion) function in class:mcld::EhFrame::CIE
51 EhFrame::CIE::~CIE() {
57 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE)
64 void EhFrame::FDE::setCIE(EhFrame::CIE& pCIE) {
73 : EhFrame::CIE(pRegion) {
82 EhFrame::GeneratedFDE::GeneratedFDE(llvm::StringRef pRegion, CIE& pCIE)
139 void EhFrame::addCIE(EhFrame::CIE
[all...]

Completed in 87 milliseconds