/frameworks/compile/mclinker/lib/Fragment/ |
D | Relocation.cpp | 49 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()
|
D | Stub.cpp | 75 void Stub::addFixup(DWord pOffset, SWord pAddend, Type pType) { in addFixup() argument 77 m_FixupList.push_back(new Fixup(pOffset, pAddend, pType)); in addFixup()
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
D | Relocation.h | 42 Address pAddend, 63 Address pAddend = 0); 104 void setAddend(Address pAddend);
|
D | Stub.h | 36 Fixup(DWord pOffset, SWord pAddend, Type pType) in Fixup() argument 37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {} in Fixup() 129 void addFixup(DWord pOffset, SWord pAddend, Type pType);
|
/frameworks/compile/mclinker/lib/LD/ |
D | RelocationFactory.cpp | 35 Address pAddend) { in produce() argument 73 new (result) Relocation(pType, &pFragRef, pAddend, target_data); in produce()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.h | 180 int32_t& pAddend) const; 193 int64_t& pAddend) const; 206 int32_t pAddend) const; 219 int64_t pAddend) const;
|
D | MipsGOT.h | 51 Relocation::DWord pAddend); 77 Relocation::DWord pAddend, 80 Relocation::DWord pAddend);
|
D | MipsGOT.cpp | 241 Relocation::DWord pAddend) { in reserveLocalEntry() argument 242 LocalEntry entry(&pInfo, pAddend, reloc == llvm::ELF::R_MIPS_GOT16); in reserveLocalEntry() 449 Relocation::DWord pAddend, in recordLocalEntry() argument 454 key.m_Addend = pAddend; in recordLocalEntry() 459 Relocation::DWord pAddend) { in lookupLocalEntry() argument 463 key.m_Addend = pAddend; in lookupLocalEntry()
|
D | MipsLDBackend.cpp | 909 int32_t& pAddend) const { in readRelocation() 910 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend); in readRelocation() 939 int64_t& pAddend) const { in readRelocation() 944 pAddend = pRel.r_addend; in readRelocation() 948 pAddend = mcld::bswap64(pRel.r_addend); in readRelocation() 967 int32_t pAddend) const { in emitRelocation() 968 GNULDBackend::emitRelocation(pRel, pType, pSymIdx, pOffset, pAddend); in emitRelocation() 987 int64_t pAddend) const { in emitRelocation() 994 pRel.r_addend = pAddend; in emitRelocation()
|
D | MipsRelocator.cpp | 82 Relocation::DWord pResult, Relocation::DWord pAddend) in MipsRelocationInfo() argument 85 m_Addend(pAddend), in MipsRelocationInfo()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | GNULDBackend.h | 210 int32_t& pAddend) const; 223 int64_t& pAddend) const; 236 int32_t pAddend) const; 249 int64_t pAddend) const;
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | BranchIsland.h | 108 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend) in Key() argument 109 : m_pPrototype(pPrototype), m_pSymbol(pSymbol), m_Addend(pAddend) {} in Key()
|
D | RelocationFactory.h | 43 Relocation* produce(Type pType, FragmentRef& pFragRef, Address pAddend = 0);
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 1640 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/ |
D | IRBuilder.h | 455 Relocation::Address pAddend = 0);
|
/frameworks/compile/mclinker/lib/Core/ |
D | IRBuilder.cpp | 593 Relocation::Address pAddend) { in AddRelocation() argument 596 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend); in AddRelocation()
|