Searched defs:pRel (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp686 bool MipsGNULDBackend::relaxRelocation(IRBuilder& pBuilder, Relocation& pRel) argument
690 LDSymbol* symbol = pRel.symInfo()->outSymbol();
698 getStubFactory()->create(pRel, sym_value, pBuilder, *getBRIslandFactory());
787 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rel& pRel, argument
792 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset);
795 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rela& pRel, argument
801 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend);
804 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf64_Rel& pRel, argument
811 pOffset = pRel.r_offset;
812 r_info = pRel
828 readRelocation(const llvm::ELF::Elf64_Rela& pRel, Relocation::Type& pType, uint32_t& pSymIdx, uint64_t& pOffset, int64_t& pAddend) const argument
851 emitRelocation(llvm::ELF::Elf32_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset) const argument
859 emitRelocation(llvm::ELF::Elf32_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset, int32_t pAddend) const argument
868 emitRelocation(llvm::ELF::Elf64_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset) const argument
881 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 DGNULDBackend.cpp1691 bool GNULDBackend::readRelocation(const llvm::ELF::Elf32_Rel& pRel, argument
1698 pOffset = pRel.r_offset;
1699 r_info = pRel.r_info;
1702 pOffset = mcld::bswap32(pRel.r_offset);
1703 r_info = mcld::bswap32(pRel.r_info);
1712 bool GNULDBackend::readRelocation(const llvm::ELF::Elf32_Rela& pRel, argument
1720 pOffset = pRel.r_offset;
1721 r_info = pRel.r_info;
1722 pAddend = pRel.r_addend;
1725 pOffset = mcld::bswap32(pRel
1736 readRelocation(const llvm::ELF::Elf64_Rel& pRel, Relocation::Type& pType, uint32_t& pSymIdx, uint64_t& pOffset) const argument
1757 readRelocation(const llvm::ELF::Elf64_Rela& pRel, Relocation::Type& pType, uint32_t& pSymIdx, uint64_t& pOffset, int64_t& pAddend) const argument
1781 emitRelocation(llvm::ELF::Elf32_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset) const argument
1791 emitRelocation(llvm::ELF::Elf32_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset, int32_t pAddend) const argument
1803 emitRelocation(llvm::ELF::Elf64_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset) const argument
1813 emitRelocation(llvm::ELF::Elf64_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset, int64_t pAddend) const argument
[all...]

Completed in 574 milliseconds