Searched defs:pRel (Results 1 - 2 of 2) sorted by relevance
/frameworks/compile/mclinker/lib/Target/Mips/ |
H A D | MipsLDBackend.cpp | 626 bool MipsGNULDBackend::relaxRelocation(IRBuilder& pBuilder, Relocation& pRel) { argument 629 LDSymbol* symbol = pRel.symInfo()->outSymbol(); 637 pRel, sym_value, pBuilder, *getBRIslandFactory()); 728 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rel& pRel, argument 732 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset); 735 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rela& pRel, argument 740 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend); 743 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf64_Rel& pRel, argument 749 pOffset = pRel.r_offset; 750 r_info = pRel 765 readRelocation(const llvm::ELF::Elf64_Rela& pRel, Relocation::Type& pType, uint32_t& pSymIdx, uint64_t& pOffset, int64_t& pAddend) const argument 786 emitRelocation(llvm::ELF::Elf32_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset) const argument 793 emitRelocation(llvm::ELF::Elf32_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset, int32_t pAddend) const argument 801 emitRelocation(llvm::ELF::Elf64_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset) const argument 813 emitRelocation(llvm::ELF::Elf64_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset, int64_t pAddend) const argument [all...] |
/frameworks/compile/mclinker/lib/Target/ |
H A D | GNULDBackend.cpp | 1617 bool GNULDBackend::readRelocation(const llvm::ELF::Elf32_Rel& pRel, argument 1623 pOffset = pRel.r_offset; 1624 r_info = pRel.r_info; 1626 pOffset = mcld::bswap32(pRel.r_offset); 1627 r_info = mcld::bswap32(pRel.r_info); 1636 bool GNULDBackend::readRelocation(const llvm::ELF::Elf32_Rela& pRel, argument 1643 pOffset = pRel.r_offset; 1644 r_info = pRel.r_info; 1645 pAddend = pRel.r_addend; 1647 pOffset = mcld::bswap32(pRel 1658 readRelocation(const llvm::ELF::Elf64_Rel& pRel, Relocation::Type& pType, uint32_t& pSymIdx, uint64_t& pOffset) const argument 1677 readRelocation(const llvm::ELF::Elf64_Rela& pRel, Relocation::Type& pType, uint32_t& pSymIdx, uint64_t& pOffset, int64_t& pAddend) const argument 1699 emitRelocation(llvm::ELF::Elf32_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset) const argument 1708 emitRelocation(llvm::ELF::Elf32_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset, int32_t pAddend) const argument 1719 emitRelocation(llvm::ELF::Elf64_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset) const argument 1728 emitRelocation(llvm::ELF::Elf64_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset, int64_t pAddend) const argument [all...] |
Completed in 394 milliseconds