• Home
  • Raw
  • Download

Lines Matching refs:pRel

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()
1648 r_info = mcld::bswap32(pRel.r_info); in readRelocation()
1649 pAddend = mcld::bswap32(pRel.r_addend); in readRelocation()
1658 bool GNULDBackend::readRelocation(const llvm::ELF::Elf64_Rel& pRel, in readRelocation() argument
1664 pOffset = pRel.r_offset; in readRelocation()
1665 r_info = pRel.r_info; in readRelocation()
1667 pOffset = mcld::bswap64(pRel.r_offset); in readRelocation()
1668 r_info = mcld::bswap64(pRel.r_info); in readRelocation()
1677 bool GNULDBackend::readRelocation(const llvm::ELF::Elf64_Rela& pRel, in readRelocation() argument
1684 pOffset = pRel.r_offset; in readRelocation()
1685 r_info = pRel.r_info; in readRelocation()
1686 pAddend = pRel.r_addend; in readRelocation()
1688 pOffset = mcld::bswap64(pRel.r_offset); in readRelocation()
1689 r_info = mcld::bswap64(pRel.r_info); in readRelocation()
1690 pAddend = mcld::bswap64(pRel.r_addend); in readRelocation()
1699 void GNULDBackend::emitRelocation(llvm::ELF::Elf32_Rel& pRel, in emitRelocation() argument
1703 pRel.r_offset = pOffset; in emitRelocation()
1704 pRel.setSymbolAndType(pSymIdx, pType); in emitRelocation()
1708 void GNULDBackend::emitRelocation(llvm::ELF::Elf32_Rela& pRel, in emitRelocation() argument
1713 pRel.r_offset = pOffset; in emitRelocation()
1714 pRel.r_addend = pAddend; in emitRelocation()
1715 pRel.setSymbolAndType(pSymIdx, pType); in emitRelocation()
1719 void GNULDBackend::emitRelocation(llvm::ELF::Elf64_Rel& pRel, in emitRelocation() argument
1723 pRel.r_offset = pOffset; in emitRelocation()
1724 pRel.setSymbolAndType(pSymIdx, pType); in emitRelocation()
1728 void GNULDBackend::emitRelocation(llvm::ELF::Elf64_Rela& pRel, in emitRelocation() argument
1733 pRel.r_offset = pOffset; in emitRelocation()
1734 pRel.r_addend = pAddend; in emitRelocation()
1735 pRel.setSymbolAndType(pSymIdx, pType); in emitRelocation()