blob: eba9b95952ad95a092bc7a7e27e44531b6f2c84d [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===------ 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
18#include "llvm/ExecutionEngine/Orc/Core.h"
19#include "llvm/ExecutionEngine/RuntimeDyld.h"
20
21namespace llvm {
22namespace orc {
23
24class NullResolver : public SymbolResolver {
25public:
26 SymbolNameSet lookupFlags(SymbolFlagsMap &Flags,
27 const SymbolNameSet &Symbols) override;
28
29 SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query,
30 SymbolNameSet Symbols) override;
31};
32
33/// SymbolResolver impliementation that rejects all resolution requests.
34/// Useful for clients that have no cross-object fixups.
35class NullLegacyResolver : public LegacyJITSymbolResolver {
36public:
37 JITSymbol findSymbol(const std::string &Name) final;
38
39 JITSymbol findSymbolInLogicalDylib(const std::string &Name) final;
40};
41
42} // End namespace orc.
43} // End namespace llvm.
44
45#endif // LLVM_EXECUTIONENGINE_ORC_NULLRESOLVER_H