Home
last modified time | relevance | path

Searched refs:JITLinkerBase (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.h29 class JITLinkerBase {
31 JITLinkerBase(std::unique_ptr<JITLinkContext> Ctx, in JITLinkerBase() function
38 virtual ~JITLinkerBase();
66 void linkPhase1(std::unique_ptr<JITLinkerBase> Self);
72 void linkPhase2(std::unique_ptr<JITLinkerBase> Self, AllocResult AR);
80 void linkPhase3(std::unique_ptr<JITLinkerBase> Self,
85 void linkPhase4(std::unique_ptr<JITLinkerBase> Self, FinalizeResult FR);
98 void abandonAllocAndBailOut(std::unique_ptr<JITLinkerBase> Self, Error Err);
106 template <typename LinkerImpl> class JITLinker : public JITLinkerBase {
108 using JITLinkerBase::JITLinkerBase;
H A DJITLinkGeneric.cpp23 JITLinkerBase::~JITLinkerBase() = default;
25 void JITLinkerBase::linkPhase1(std::unique_ptr<JITLinkerBase> Self) { in linkPhase1()
70 void JITLinkerBase::linkPhase2(std::unique_ptr<JITLinkerBase> Self, in linkPhase2()
134 void JITLinkerBase::linkPhase3(std::unique_ptr<JITLinkerBase> Self, in linkPhase3()
189 void JITLinkerBase::linkPhase4(std::unique_ptr<JITLinkerBase> Self, in linkPhase4()
204 Error JITLinkerBase::runPasses(LinkGraphPassList &Passes) { in runPasses()
211 JITLinkContext::LookupMap JITLinkerBase::getExternalSymbolNames() const { in getExternalSymbolNames()
227 void JITLinkerBase::applyLookupResult(AsyncLookupResult Result) { in applyLookupResult()
271 void JITLinkerBase::abandonAllocAndBailOut(std::unique_ptr<JITLinkerBase> Self, in abandonAllocAndBailOut()
H A DELF_ppc64.cpp404 using JITLinkerBase = JITLinker<ELFJITLinker_ppc64<Endianness>>; typedef in llvm::jitlink::ELFJITLinker_ppc64
405 friend JITLinkerBase;
410 : JITLinkerBase(std::move(Ctx), std::move(G), std::move(PassConfig)) { in ELFJITLinker_ppc64()
411 JITLinkerBase::getPassConfig().PostAllocationPasses.push_back( in ELFJITLinker_ppc64()