Searched refs:eh_frame (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h170 const EhFrame* getEhFrame() const { return m_Data.eh_frame; }
171 EhFrame* getEhFrame() { return m_Data.eh_frame; }
173 void setEhFrame(EhFrame* pEhFrame) { m_Data.eh_frame = pEhFrame; }
193 EhFrame* eh_frame; member in union:mcld::LDSection::SectOrRelocData
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp75 EhFrame* eh_frame = NULL; local
77 eh_frame = target->getEhFrame();
79 eh_frame = IRBuilder::CreateEhFrame(*target);
81 eh_frame->merge(*pInputSection.getEhFrame());
/frameworks/compile/mclinker/lib/LD/
H A DLDSection.cpp107 return (NULL != m_Data.eh_frame);
H A DELFObjectReader.cpp213 EhFrame* eh_frame = IRBuilder::CreateEhFrame(**section); local
218 // if --eh-frame-hdr option is given, parse .eh_frame.
219 if (!m_pEhFrameReader->read<32, true>(pInput, *eh_frame)) {
220 // if we failed to parse a .eh_frame, we should not parse the rest
221 // .eh_frame.
227 *eh_frame->getSectionData())) {
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp44 if (name.startswith(".eh_frame"))
343 /// CreateEhFrame - To create a eh_frame for given pSection
346 assert(!pSection.hasEhFrame() && "pSection already has eh_frame.");
348 EhFrame* eh_frame = EhFrame::Create(pSection); local
349 pSection.setEhFrame(eh_frame);
350 return eh_frame;

Completed in 137 milliseconds