LLVM  8.0.1
LambdaResolver.h
Go to the documentation of this file.
1 //===- LambdaResolverMM - Redirect symbol lookup via a functor --*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Defines a RuntimeDyld::SymbolResolver subclass that uses a user-supplied
11 // functor for symbol resolution.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_EXECUTIONENGINE_ORC_LAMBDARESOLVER_H
16 #define LLVM_EXECUTIONENGINE_ORC_LAMBDARESOLVER_H
17 
18 #include "llvm/ADT/STLExtras.h"
20 #include <memory>
21 
22 namespace llvm {
23 namespace orc {
24 
25 template <typename DylibLookupFtorT, typename ExternalLookupFtorT>
27 public:
28  LambdaResolver(DylibLookupFtorT DylibLookupFtor,
29  ExternalLookupFtorT ExternalLookupFtor)
30  : DylibLookupFtor(DylibLookupFtor),
31  ExternalLookupFtor(ExternalLookupFtor) {}
32 
33  JITSymbol findSymbolInLogicalDylib(const std::string &Name) final {
34  return DylibLookupFtor(Name);
35  }
36 
37  JITSymbol findSymbol(const std::string &Name) final {
38  return ExternalLookupFtor(Name);
39  }
40 
41 private:
42  DylibLookupFtorT DylibLookupFtor;
43  ExternalLookupFtorT ExternalLookupFtor;
44 };
45 
46 template <typename DylibLookupFtorT,
47  typename ExternalLookupFtorT>
48 std::shared_ptr<LambdaResolver<DylibLookupFtorT, ExternalLookupFtorT>>
49 createLambdaResolver(DylibLookupFtorT DylibLookupFtor,
50  ExternalLookupFtorT ExternalLookupFtor) {
52  return make_unique<LR>(std::move(DylibLookupFtor),
53  std::move(ExternalLookupFtor));
54 }
55 
56 } // end namespace orc
57 } // end namespace llvm
58 
59 #endif // LLVM_EXECUTIONENGINE_ORC_LAMBDARESOLVER_H
Represents a symbol in the JIT.
Definition: JITSymbol.h:238
This class represents lattice values for constants.
Definition: AllocatorList.h:24
Legacy symbol resolution interface.
Definition: JITSymbol.h:371
amdgpu Simplify well known AMD library false Value Value const Twine & Name
LambdaResolver(DylibLookupFtorT DylibLookupFtor, ExternalLookupFtorT ExternalLookupFtor)
JITSymbol findSymbolInLogicalDylib(const std::string &Name) final
This method returns the address of the specified symbol if it exists within the logical dynamic libra...
JITSymbol findSymbol(const std::string &Name) final
This method returns the address of the specified function or variable.
std::shared_ptr< LambdaResolver< DylibLookupFtorT, ExternalLookupFtorT > > createLambdaResolver(DylibLookupFtorT DylibLookupFtor, ExternalLookupFtorT ExternalLookupFtor)