Searched refs:pAddend (Results 1 - 16 of 16) sorted by relevance

/frameworks/compile/mclinker/lib/Fragment/
H A DStub.cpp31 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) argument
34 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
H A DRelocation.cpp48 /// @param pAddend [in] the addend of the relocation entry
49 Relocation* Relocation::Create(Type pType, FragmentRef& pFragRef, Address pAddend) argument
51 return g_RelocationFactory->produce(pType, pFragRef, pAddend);
70 Relocation::Address pAddend,
75 m_Addend(pAddend)
138 void Relocation::setAddend(Address pAddend) argument
140 m_Addend = pAddend;
68 Relocation(Relocation::Type pType, FragmentRef* pTargetRef, Relocation::Address pAddend, Relocation::DWord pTargetData) argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h42 Address pAddend,
60 /// @param pAddend [in] the addend of the relocation entry
62 Address pAddend = 0);
105 void setAddend(Address pAddend);
H A DStub.h35 Fixup(DWord pOffset, SWord pAddend, Type pType) argument
36 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType)
114 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/mclinker/lib/LD/
H A DRelocationFactory.cpp35 Address pAddend)
75 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
33 produce(RelocationFactory::Type pType, FragmentRef& pFragRef, Address pAddend) argument
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocationFactory.h42 /// @param pAddend - the addend of the relocation entry
45 Address pAddend = 0);
H A DBranchIsland.h108 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) argument
109 : m_pPrototype(pPrototype), m_pSymbol(pSymbol), m_Addend(pAddend)
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.h171 int32_t& pAddend) const;
184 int64_t& pAddend) const;
197 int32_t pAddend) const;
210 int64_t pAddend) const;
H A DMipsGOT.cpp239 Relocation::DWord pAddend)
241 LocalEntry entry(&pInfo, pAddend, reloc == llvm::ELF::R_MIPS_GOT16);
363 Relocation::DWord pAddend,
369 key.m_Addend = pAddend;
374 Relocation::DWord pAddend)
379 key.m_Addend = pAddend;
238 reserveLocalEntry(ResolveInfo& pInfo, int reloc, Relocation::DWord pAddend) argument
H A DMipsGOT.h51 Relocation::DWord pAddend);
69 Relocation::DWord pAddend,
72 Relocation::DWord pAddend);
H A DMipsLDBackend.cpp799 int32_t& pAddend) const
801 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend);
832 int64_t& pAddend) const
838 pAddend = pRel.r_addend;
843 pAddend = mcld::bswap64(pRel.r_addend);
863 int32_t pAddend) const
865 GNULDBackend::emitRelocation(pRel, pType, pSymIdx, pOffset, pAddend);
885 int64_t pAddend) const
893 pRel.r_addend = pAddend;
H A DMipsRelocator.cpp135 Relocation::DWord pAddend, Relocation::DWord pSymbol)
138 m_Addend(pAddend),
133 MipsRelocationInfo(Relocation& pParent, Relocation::Type pType, Relocation::DWord pResult, Relocation::DWord pAddend, Relocation::DWord pSymbol) argument
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNULDBackend.h208 int32_t& pAddend) const;
221 int64_t& pAddend) const;
234 int32_t pAddend) const;
247 int64_t pAddend) const;
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h452 /// @param [in] pAddend Tthe addend value for applying relocation
457 Relocation::Address pAddend = 0);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1716 int32_t& pAddend) const
1722 pAddend = pRel.r_addend;
1727 pAddend = mcld::bswap32(pRel.r_addend);
1761 int64_t& pAddend) const
1767 pAddend = pRel.r_addend;
1772 pAddend = mcld::bswap64(pRel.r_addend);
1795 int32_t pAddend) const
1798 pRel.r_addend = pAddend;
1817 int64_t pAddend) const
1820 pRel.r_addend = pAddend;
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp601 Relocation::Address pAddend)
605 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend);
597 AddRelocation(LDSection& pSection, Relocation::Type pType, LDSymbol& pSym, uint32_t pOffset, Relocation::Address pAddend) argument

Completed in 355 milliseconds