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

/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp46 /// @param pAddend [in] the addend of the relocation entry
49 Address pAddend) {
50 return g_RelocationFactory->produce(pType, pFragRef, pAddend);
68 Relocation::Address pAddend,
73 m_Addend(pAddend) {
130 void Relocation::setAddend(Address pAddend) { argument
131 m_Addend = pAddend;
47 Create(Type pType, FragmentRef& pFragRef, Address pAddend) argument
66 Relocation(Relocation::Type pType, FragmentRef* pTargetRef, Relocation::Address pAddend, Relocation::DWord pTargetData) argument
H A DStub.cpp75 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) { argument
77 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType));
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h42 Address pAddend,
60 /// @param pAddend [in] the addend of the relocation entry
63 Address pAddend = 0);
104 void setAddend(Address pAddend);
H A DStub.h36 Fixup(DWord pOffset, SWord pAddend, Type pType) argument
37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {}
129 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocationFactory.h42 /// @param pAddend - the addend of the relocation entry
43 Relocation* produce(Type pType, FragmentRef& pFragRef, 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/LD/
H A DRelocationFactory.cpp35 Address pAddend) {
73 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
33 produce(RelocationFactory::Type pType, FragmentRef& pFragRef, Address pAddend) argument
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.h180 int32_t& pAddend) const;
193 int64_t& pAddend) const;
206 int32_t pAddend) const;
219 int64_t pAddend) const;
H A DMipsGOT.h51 Relocation::DWord pAddend);
77 Relocation::DWord pAddend,
80 Relocation::DWord pAddend);
H A DMipsGOT.cpp241 Relocation::DWord pAddend) {
242 LocalEntry entry(&pInfo, pAddend, reloc == llvm::ELF::R_MIPS_GOT16);
449 Relocation::DWord pAddend,
454 key.m_Addend = pAddend;
459 Relocation::DWord pAddend) {
463 key.m_Addend = pAddend;
239 reserveLocalEntry(ResolveInfo& pInfo, int reloc, Relocation::DWord pAddend) argument
448 recordLocalEntry(const ResolveInfo* pInfo, Relocation::DWord pAddend, Fragment* pEntry) argument
458 lookupLocalEntry(const ResolveInfo* pInfo, Relocation::DWord pAddend) argument
H A DMipsLDBackend.cpp909 int32_t& pAddend) const {
910 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend);
939 int64_t& pAddend) const {
944 pAddend = pRel.r_addend;
948 pAddend = mcld::bswap64(pRel.r_addend);
967 int32_t pAddend) const {
968 GNULDBackend::emitRelocation(pRel, pType, pSymIdx, pOffset, pAddend);
987 int64_t pAddend) const {
994 pRel.r_addend = pAddend;
H A DMipsRelocator.cpp82 Relocation::DWord pResult, Relocation::DWord pAddend)
85 m_Addend(pAddend),
81 MipsRelocationInfo(Relocation& pParent, Relocation::Type pType, Relocation::DWord pResult, Relocation::DWord pAddend) argument
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNULDBackend.h210 int32_t& pAddend) const;
223 int64_t& pAddend) const;
236 int32_t pAddend) const;
249 int64_t pAddend) const;
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h450 /// @param [in] pAddend Tthe addend value for applying relocation
455 Relocation::Address pAddend = 0);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1640 int32_t& pAddend) const {
1645 pAddend = pRel.r_addend;
1649 pAddend = mcld::bswap32(pRel.r_addend);
1681 int64_t& pAddend) const {
1686 pAddend = pRel.r_addend;
1690 pAddend = mcld::bswap64(pRel.r_addend);
1712 int32_t pAddend) const {
1714 pRel.r_addend = pAddend;
1732 int64_t pAddend) const {
1734 pRel.r_addend = pAddend;
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp593 Relocation::Address pAddend) {
596 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend);
589 AddRelocation(LDSection& pSection, Relocation::Type pType, LDSymbol& pSym, uint32_t pOffset, Relocation::Address pAddend) argument

Completed in 5255 milliseconds