Searched refs:RelSect (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | ELFLinkGraphBuilder.h | 136 Error forEachRelaRelocation(const typename ELFT::Shdr &RelSect, 145 Error forEachRelRelocation(const typename ELFT::Shdr &RelSect, 152 Error forEachRelaRelocation(const typename ELFT::Shdr &RelSect, in forEachRelaRelocation() argument 155 RelSect, in forEachRelaRelocation() 165 Error forEachRelRelocation(const typename ELFT::Shdr &RelSect, in forEachRelRelocation() argument 168 RelSect, in forEachRelRelocation() 596 const typename ELFT::Shdr &RelSect, RelocHandlerFunction &&Func) { in forEachRelaRelocation() argument 598 if (RelSect.sh_type != ELF::SHT_RELA) in forEachRelaRelocation() 603 auto FixupSection = Obj.getSection(RelSect.sh_info); in forEachRelaRelocation() 624 auto *BlockToFix = getGraphBlock(RelSect.sh_info); in forEachRelaRelocation() [all …]
|
H A D | ELF_i386.cpp | 147 for (const auto &RelSect : Base::Sections) { in addRelocations() local 149 if (RelSect.sh_type == ELF::SHT_RELA) in addRelocations() 154 if (Error Err = Base::forEachRelRelocation(RelSect, this, in addRelocations()
|
H A D | ELF_x86_64.cpp | 111 for (const auto &RelSect : Base::Sections) { in addRelocations() local 113 if (RelSect.sh_type == ELF::SHT_REL) in addRelocations() 118 if (Error Err = Base::forEachRelaRelocation(RelSect, this, in addRelocations()
|
H A D | ELF_loongarch.cpp | 83 for (const auto &RelSect : Base::Sections) in addRelocations() local 84 if (Error Err = Base::forEachRelaRelocation(RelSect, this, in addRelocations()
|
H A D | ELF_ppc64.cpp | 209 for (const auto &RelSect : Base::Sections) { in addSingleRelocation() 211 if (RelSect.sh_type == ELF::SHT_REL) in addSingleRelocation() 217 if (Error Err = Base::forEachRelaRelocation(RelSect, this, in addSingleRelocation() 141 for (const auto &RelSect : Base::Sections) { addRelocations() local
|
H A D | COFF_x86_64.cpp | 57 for (const auto &RelSect : sections()) in addRelocations() local 59 RelSect, this, &COFFLinkGraphBuilder_x86_64::addSingleRelocation)) in addRelocations()
|
H A D | ELF_aarch32.cpp | 150 for (const auto &RelSect : Base::Sections) { in addRelocations() local 151 if (Error Err = Base::forEachRelRelocation(RelSect, this, in addRelocations()
|
H A D | ELF_aarch64.cpp | 148 for (const auto &RelSect : Base::Sections) in addRelocations() local 149 if (Error Err = Base::forEachRelaRelocation(RelSect, this, in addRelocations()
|
H A D | ELF_riscv.cpp | 869 for (const auto &RelSect : Base::Sections) in addRelocations() local 870 if (Error Err = Base::forEachRelaRelocation(RelSect, this, in addRelocations()
|