Searched refs:pRel (Results 1 – 4 of 4) sorted by relevance
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsLDBackend.h | 144 bool relaxRelocation(IRBuilder& pBuilder, Relocation& pRel); 170 bool readRelocation(const llvm::ELF::Elf32_Rel& pRel, 176 bool readRelocation(const llvm::ELF::Elf32_Rela& pRel, 183 bool readRelocation(const llvm::ELF::Elf64_Rel& pRel, 189 bool readRelocation(const llvm::ELF::Elf64_Rela& pRel, 196 void emitRelocation(llvm::ELF::Elf32_Rel& pRel, 202 void emitRelocation(llvm::ELF::Elf32_Rela& pRel, 209 void emitRelocation(llvm::ELF::Elf64_Rel& pRel, 215 void emitRelocation(llvm::ELF::Elf64_Rela& pRel,
|
D | MipsLDBackend.cpp | 766 bool MipsGNULDBackend::relaxRelocation(IRBuilder& pBuilder, Relocation& pRel) { in relaxRelocation() argument 769 LDSymbol* symbol = pRel.symInfo()->outSymbol(); in relaxRelocation() 777 pRel, sym_value, pBuilder, *getBRIslandFactory()); in relaxRelocation() 784 pRel.setSymInfo(stub->symInfo()); in relaxRelocation() 898 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rel& pRel, in readRelocation() argument 902 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset); in readRelocation() 905 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rela& pRel, in readRelocation() argument 910 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend); in readRelocation() 913 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf64_Rel& pRel, in readRelocation() argument 919 pOffset = pRel.r_offset; in readRelocation() [all …]
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | GNULDBackend.h | 200 virtual bool readRelocation(const llvm::ELF::Elf32_Rel& pRel, 206 virtual bool readRelocation(const llvm::ELF::Elf32_Rela& pRel, 213 virtual bool readRelocation(const llvm::ELF::Elf64_Rel& pRel, 219 virtual bool readRelocation(const llvm::ELF::Elf64_Rela& pRel, 226 virtual void emitRelocation(llvm::ELF::Elf32_Rel& pRel, 232 virtual void emitRelocation(llvm::ELF::Elf32_Rela& pRel, 239 virtual void emitRelocation(llvm::ELF::Elf64_Rel& pRel, 245 virtual void emitRelocation(llvm::ELF::Elf64_Rela& pRel,
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 1617 bool GNULDBackend::readRelocation(const llvm::ELF::Elf32_Rel& pRel, in readRelocation() argument 1623 pOffset = pRel.r_offset; in readRelocation() 1624 r_info = pRel.r_info; in readRelocation() 1626 pOffset = mcld::bswap32(pRel.r_offset); in readRelocation() 1627 r_info = mcld::bswap32(pRel.r_info); in readRelocation() 1636 bool GNULDBackend::readRelocation(const llvm::ELF::Elf32_Rela& pRel, in readRelocation() argument 1643 pOffset = pRel.r_offset; in readRelocation() 1644 r_info = pRel.r_info; in readRelocation() 1645 pAddend = pRel.r_addend; in readRelocation() 1647 pOffset = mcld::bswap32(pRel.r_offset); in readRelocation() [all …]
|