OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pfde
(Results
1 - 8
of
8
) sorted by null
/frameworks/compile/mclinker/include/mcld/LD/
EhFrame.h
112
void add(FDE&
pFDE
) { m_FDEs.push_back(&
pFDE
); }
113
void remove(FDE&
pFDE
) { m_FDEs.remove(&
pFDE
); }
191
void addFDE(FDE&
pFDE
, bool pAlsoAddFragment = true);
EhFrameHdr.h
52
uint32_t computePCBegin(const EhFrame::FDE&
pFDE
,
/toolchain/binutils/binutils-2.27/gold/
ehframe.cc
197
unsigned char*
pfde
= oview + 12;
local
202
elfcpp::Swap<32, big_endian>::writeval(
pfde
,
204
elfcpp::Swap<32, big_endian>::writeval(
pfde
+ 4,
206
pfde
+= 8;
209
gold_assert(
pfde
- oview == oview_size);
981
const unsigned char*
pfde
,
986
// OFFSET is the distance between the 4 bytes before
PFDE
to the
989
unsigned int cie_offset = (
pfde
- 4 - pcontents) - offset + 8;
1018
if (relocs->advance(
pfde
- pcontents) > 0)
1020
if (relocs->next_offset() !=
pfde
- pcontents
[
all
...]
ehframe.h
499
const unsigned char*
pfde
,
/frameworks/compile/mclinker/lib/LD/
EhFrameHdr.cpp
141
uint32_t EhFrameHdr::computePCBegin(const EhFrame::FDE&
pFDE
,
143
uint8_t fde_encoding =
pFDE
.getCIE().getFDEEncode();
169
pFDE
.getOffset() + EhFrame::getDataStartOffset<32>();
182
pc += m_EhFrame.addr() +
pFDE
.getOffset() +
EhFrame.cpp
145
void EhFrame::addFDE(EhFrame::FDE&
pFDE
, bool pAlsoAddFragment) {
146
pFDE
.getCIE().add(
pFDE
);
148
addFragment(
pFDE
);
/frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp
382
uint64_t IRBuilder::AppendEhFrame(EhFrame::FDE&
pFDE
, EhFrame& pEhFrame) {
383
pEhFrame.addFDE(
pFDE
);
384
pEhFrame.getSection().setSize(pEhFrame.getSection().size() +
pFDE
.size());
385
return
pFDE
.size();
/frameworks/compile/mclinker/include/mcld/
IRBuilder.h
339
/// @param [in, out]
pFDE
The appended FDE entry.
342
static uint64_t AppendEhFrame(EhFrame::FDE&
pFDE
, EhFrame& pEhFrame);
Completed in 518 milliseconds