LLVM  8.0.1
NullResolver.h
Go to the documentation of this file.
1 //===------ NullResolver.h - Reject symbol lookup requests ------*- 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 rejects all symbol
11 // resolution requests, for clients that have no cross-object fixups.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H
16 #define LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H
17 
20 
21 namespace llvm {
22 namespace orc {
23 
24 class NullResolver : public SymbolResolver {
25 public:
26  SymbolNameSet getResponsibilitySet(const SymbolNameSet &Symbols) final;
27 
28  SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query,
29  SymbolNameSet Symbols) final;
30 };
31 
32 /// SymbolResolver impliementation that rejects all resolution requests.
33 /// Useful for clients that have no cross-object fixups.
35 public:
36  JITSymbol findSymbol(const std::string &Name) final;
37 
38  JITSymbol findSymbolInLogicalDylib(const std::string &Name) final;
39 };
40 
41 } // End namespace orc.
42 } // End namespace llvm.
43 
44 #endif // LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_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
SymbolNameSet getResponsibilitySet(const SymbolNameSet &Symbols) final
Returns the subset of the given symbols that the caller is responsible for materializing.
SymbolResolver impliementation that rejects all resolution requests.
Definition: NullResolver.h:34
SymbolResolver is a composable interface for looking up symbol flags and addresses using the Asynchro...
Definition: Legacy.h:30
static void Query(const MachineInstr &MI, AliasAnalysis &AA, bool &Read, bool &Write, bool &Effects, bool &StackPointer)
SymbolNameSet lookup(std::shared_ptr< AsynchronousSymbolQuery > Query, SymbolNameSet Symbols) final
For each symbol in Symbols that can be found, assigns that symbols value in Query.