Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/lib/Fragment/
DRelocation.cpp49 Address pAddend) { in Create() argument
50 return g_RelocationFactory->produce(pType, pFragRef, pAddend); in Create()
68 Relocation::Address pAddend, in Relocation() argument
73 m_Addend(pAddend) { in Relocation()
130 void Relocation::setAddend(Address pAddend) { in setAddend() argument
131 m_Addend = pAddend; in setAddend()
DStub.cpp25 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) { in addFixup() argument
27 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType)); in addFixup()
/frameworks/compile/mclinker/include/mcld/Fragment/
DRelocation.h42 Address pAddend,
63 Address pAddend = 0);
104 void setAddend(Address pAddend);
DStub.h34 Fixup(DWord pOffset, SWord pAddend, Type pType) in Fixup() argument
35 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {} in Fixup()
111 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsLDBackend.h170 int32_t& pAddend) const;
183 int64_t& pAddend) const;
196 int32_t pAddend) const;
209 int64_t pAddend) const;
DMipsGOT.cpp218 Relocation::DWord pAddend) { in reserveLocalEntry() argument
219 LocalEntry entry(&pInfo, pAddend, reloc == llvm::ELF::R_MIPS_GOT16); in reserveLocalEntry()
337 Relocation::DWord pAddend, in recordLocalEntry() argument
342 key.m_Addend = pAddend; in recordLocalEntry()
347 Relocation::DWord pAddend) { in lookupLocalEntry() argument
351 key.m_Addend = pAddend; in lookupLocalEntry()
DMipsGOT.h51 Relocation::DWord pAddend);
69 Relocation::DWord pAddend,
72 Relocation::DWord pAddend);
DMipsLDBackend.cpp739 int32_t& pAddend) const { in readRelocation()
740 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend); in readRelocation()
769 int64_t& pAddend) const { in readRelocation()
774 pAddend = pRel.r_addend; in readRelocation()
778 pAddend = mcld::bswap64(pRel.r_addend); in readRelocation()
797 int32_t pAddend) const { in emitRelocation()
798 GNULDBackend::emitRelocation(pRel, pType, pSymIdx, pOffset, pAddend); in emitRelocation()
817 int64_t pAddend) const { in emitRelocation()
824 pRel.r_addend = pAddend; in emitRelocation()
DMipsRelocator.cpp103 Relocation::DWord pAddend, in MipsRelocationInfo() argument
107 m_Addend(pAddend), in MipsRelocationInfo()
/frameworks/compile/mclinker/lib/LD/
DRelocationFactory.cpp35 Address pAddend) { in produce() argument
73 new (result) Relocation(pType, &pFragRef, pAddend, target_data); in produce()
/frameworks/compile/mclinker/include/mcld/LD/
DBranchIsland.h104 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) in Key() argument
105 : m_pPrototype(pPrototype), m_pSymbol(pSymbol), m_Addend(pAddend) {} in Key()
DRelocationFactory.h43 Relocation* produce(Type pType, FragmentRef& pFragRef, Address pAddend = 0);
/frameworks/compile/mclinker/include/mcld/Target/
DGNULDBackend.h207 int32_t& pAddend) const;
220 int64_t& pAddend) const;
233 int32_t pAddend) const;
246 int64_t pAddend) const;
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp1640 int32_t& pAddend) const { in readRelocation()
1645 pAddend = pRel.r_addend; in readRelocation()
1649 pAddend = mcld::bswap32(pRel.r_addend); in readRelocation()
1681 int64_t& pAddend) const { in readRelocation()
1686 pAddend = pRel.r_addend; in readRelocation()
1690 pAddend = mcld::bswap64(pRel.r_addend); in readRelocation()
1712 int32_t pAddend) const { in emitRelocation()
1714 pRel.r_addend = pAddend; in emitRelocation()
1732 int64_t pAddend) const { in emitRelocation()
1734 pRel.r_addend = pAddend; in emitRelocation()
/frameworks/compile/mclinker/include/mcld/
DIRBuilder.h452 Relocation::Address pAddend = 0);
/frameworks/compile/mclinker/lib/Core/
DIRBuilder.cpp593 Relocation::Address pAddend) { in AddRelocation() argument
596 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend); in AddRelocation()