Home
last modified time | relevance | path

Searched refs:CIE (Results 1 – 10 of 10) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
DEhFrame.h45 class CIE; variable
48 typedef std::vector<CIE*> CIEList;
56 typedef std::map</*offset*/ size_t, CIE*> CIEMap;
79 class CIE : public Record {
81 explicit CIE(llvm::StringRef pRegion);
82 ~CIE();
139 FDE(llvm::StringRef pRegion, CIE& pCIE);
142 void setCIE(CIE& pCIE);
143 const CIE& getCIE() const { return *m_pCIE; } in getCIE()
144 CIE& getCIE() { return *m_pCIE; } in getCIE()
[all …]
DEhFrameReader.h43 enum TokenKind { CIE, FDE, Terminator, Unknown, NumOfTokenKinds }; enumerator
DDiagCommonKinds.inc156 "CIE length: %0, aug_string: %1, fde_encodeing: %2",
157 "CIE length: %0, aug_string: %1, fde_encodeing: %2")
/frameworks/compile/mclinker/lib/LD/
DEhFrame.cpp43 EhFrame::CIE::CIE(llvm::StringRef pRegion) in CIE() function in mcld::EhFrame::CIE
51 EhFrame::CIE::~CIE() { in ~CIE()
57 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE) in FDE()
64 void EhFrame::FDE::setCIE(EhFrame::CIE& pCIE) { in setCIE()
73 : EhFrame::CIE(pRegion) { in GeneratedCIE()
82 EhFrame::GeneratedFDE::GeneratedFDE(llvm::StringRef pRegion, CIE& pCIE) in GeneratedFDE()
139 void EhFrame::addCIE(EhFrame::CIE& pCIE, bool pAlsoAddFragment) { in addCIE()
184 CIE& input_cie = **i; in merge()
194 CIE& output_cie = **out_i; in merge()
212 CIE* cie = *i; in setupAttributes()
[all …]
DEhFrameReader.cpp81 result.kind = CIE; in scan()
209 EhFrame::CIE* cie = new EhFrame::CIE(pRegion); in addCIE()
319 EhFrame::CIE* cie = new EhFrame::CIE(pRegion); in addCIE()
DEhFrameHdr.cpp83 EhFrame::CIE& cie = **i; in emitOutput()
DELFObjectWriter.cpp410 EhFrame::CIE& cie = **i; in emitEhFrame()
/frameworks/compile/mclinker/include/mcld/
DIRBuilder.h354 static uint64_t AppendEhFrame(EhFrame::CIE& pCIE, EhFrame& pEhFrame);
/frameworks/compile/mclinker/lib/Target/X86/
DX86LDBackend.cpp285 EhFrame::CIE* cie = new EhFrame::GeneratedCIE(cie_region); in addEhFrameForPLT()
295 EhFrame::CIE& exist_cie = **i; in addEhFrameForPLT()
/frameworks/compile/mclinker/lib/Core/
DIRBuilder.cpp389 uint64_t IRBuilder::AppendEhFrame(EhFrame::CIE& pCIE, EhFrame& pEhFrame) { in AppendEhFrame()