In particular this patch switches RTDyldObjectLinkingLayer to use
orc::SymbolResolver and threads the requried changse (ExecutionSession
references and VModuleKeys) through the existing layer APIs.
The purpose of the new resolver interface is to improve query performance and
better support parallelism, both in JIT'd code and within the compiler itself.
The most visibile change is switch of the <Layer>::addModule signatures from:
Expected<Handle> addModule(std::shared_ptr<ModuleType> Mod,
std::shared_ptr<JITSymbolResolver> Resolver)
to:
Expected<Handle> addModule(VModuleKey K, std::shared_ptr<ModuleType> Mod);
Typical usage of addModule will now look like:
auto K = ES.allocateVModuleKey();
Resolvers[K] = createSymbolResolver(...);
Layer.addModule(K, std::move(Mod));
See the BuildingAJIT tutorial code for example usage.
llvm-svn: 324405
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
//===---------- NullResolver.cpp - Reject symbol lookup requests ----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ExecutionEngine/Orc/NullResolver.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
namespace llvm {
|
|
namespace orc {
|
|
|
|
SymbolNameSet NullResolver::lookupFlags(SymbolFlagsMap &Flags,
|
|
const SymbolNameSet &Symbols) {
|
|
return Symbols;
|
|
}
|
|
|
|
SymbolNameSet NullResolver::lookup(AsynchronousSymbolQuery &Query,
|
|
SymbolNameSet Symbols) {
|
|
assert(Symbols.empty() && "Null resolver: Symbols must be empty");
|
|
return Symbols;
|
|
}
|
|
|
|
JITSymbol NullLegacyResolver::findSymbol(const std::string &Name) {
|
|
llvm_unreachable("Unexpected cross-object symbol reference");
|
|
}
|
|
|
|
JITSymbol
|
|
NullLegacyResolver::findSymbolInLogicalDylib(const std::string &Name) {
|
|
llvm_unreachable("Unexpected cross-object symbol reference");
|
|
}
|
|
|
|
} // End namespace orc.
|
|
} // End namespace llvm.
|