blob: 03fefb69a9289b90cfe94b9b8ab4f7cf96de8d35 [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
Andrew Scullcdfcccc2018-10-05 20:58:37 +010018#include "llvm/ExecutionEngine/Orc/Legacy.h"
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010019#include "llvm/ExecutionEngine/RuntimeDyld.h"
20
21namespace llvm {
22namespace orc {
23
24class NullResolver : public SymbolResolver {
25public:
Andrew Scull0372a572018-11-16 15:47:06 +000026 SymbolNameSet getResponsibilitySet(const SymbolNameSet &Symbols) final;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010027
28 SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query,
Andrew Scull0372a572018-11-16 15:47:06 +000029 SymbolNameSet Symbols) final;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010030};
31
32/// SymbolResolver impliementation that rejects all resolution requests.
33/// Useful for clients that have no cross-object fixups.
34class NullLegacyResolver : public LegacyJITSymbolResolver {
35public:
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