Home
last modified time | relevance | path

Searched refs:pFDE (Results 1 – 6 of 6) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
DEhFrame.h112 void add(FDE& pFDE) { m_FDEs.push_back(&pFDE); } in add() argument
113 void remove(FDE& pFDE) { m_FDEs.remove(&pFDE); } in remove() argument
191 void addFDE(FDE& pFDE, bool pAlsoAddFragment = true);
DEhFrameHdr.h52 uint32_t computePCBegin(const EhFrame::FDE& pFDE,
/frameworks/compile/mclinker/lib/LD/
DEhFrameHdr.cpp141 uint32_t EhFrameHdr::computePCBegin(const EhFrame::FDE& pFDE, in computePCBegin() argument
143 uint8_t fde_encoding = pFDE.getCIE().getFDEEncode(); in computePCBegin()
169 pFDE.getOffset() + EhFrame::getDataStartOffset<32>(); in computePCBegin()
182 pc += m_EhFrame.addr() + pFDE.getOffset() + in computePCBegin()
DEhFrame.cpp145 void EhFrame::addFDE(EhFrame::FDE& pFDE, bool pAlsoAddFragment) { in addFDE() argument
146 pFDE.getCIE().add(pFDE); in addFDE()
148 addFragment(pFDE); in addFDE()
/frameworks/compile/mclinker/lib/Core/
DIRBuilder.cpp382 uint64_t IRBuilder::AppendEhFrame(EhFrame::FDE& pFDE, EhFrame& pEhFrame) { in AppendEhFrame() argument
383 pEhFrame.addFDE(pFDE); in AppendEhFrame()
384 pEhFrame.getSection().setSize(pEhFrame.getSection().size() + pFDE.size()); in AppendEhFrame()
385 return pFDE.size(); in AppendEhFrame()
/frameworks/compile/mclinker/include/mcld/
DIRBuilder.h342 static uint64_t AppendEhFrame(EhFrame::FDE& pFDE, EhFrame& pEhFrame);