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

/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp766 bool MipsGNULDBackend::relaxRelocation(IRBuilder& pBuilder, Relocation& pRel) { argument
769 LDSymbol* symbol = pRel.symInfo()->outSymbol();
777 pRel, sym_value, pBuilder, *getBRIslandFactory());
784 pRel.setSymInfo(stub->symInfo());
898 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rel& pRel, argument
902 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset);
905 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf32_Rela& pRel, argument
910 return GNULDBackend::readRelocation(pRel, pType, pSymIdx, pOffset, pAddend);
913 bool MipsGNULDBackend::readRelocation(const llvm::ELF::Elf64_Rel& pRel, argument
919 pOffset = pRel
935 readRelocation(const llvm::ELF::Elf64_Rela& pRel, Relocation::Type& pType, uint32_t& pSymIdx, uint64_t& pOffset, int64_t& pAddend) const argument
956 emitRelocation(llvm::ELF::Elf32_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset) const argument
963 emitRelocation(llvm::ELF::Elf32_Rela& pRel, Relocation::Type pType, uint32_t pSymIdx, uint32_t pOffset, int32_t pAddend) const argument
971 emitRelocation(llvm::ELF::Elf64_Rel& pRel, Relocation::Type pType, uint32_t pSymIdx, uint64_t pOffset) const argument
983 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.cpp1617 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 80 milliseconds