mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-04 01:43:06 +00:00
075c1e2e1a
This patch replaces RuntimeDyld::SymbolInfo with JITSymbol: A symbol class that is capable of lazy materialization (i.e. the symbol definition needn't be emitted until the address is requested). This can be used to support common and weak symbols in the JIT (though this is not implemented in this patch). For consistency, RuntimeDyld::SymbolResolver is renamed to JITSymbolResolver. For space efficiency a new class, JITEvaluatedSymbol, is introduced that behaves like the old RuntimeDyld::SymbolInfo - i.e. it is just a pair of an address and symbol flags. Instances of JITEvaluatedSymbol can be used in symbol-tables to avoid paying the space cost of the materializer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277386 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
790 B
C++
27 lines
790 B
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 {
|
|
|
|
JITSymbol NullResolver::findSymbol(const std::string &Name) {
|
|
llvm_unreachable("Unexpected cross-object symbol reference");
|
|
}
|
|
|
|
JITSymbol NullResolver::findSymbolInLogicalDylib(const std::string &Name) {
|
|
llvm_unreachable("Unexpected cross-object symbol reference");
|
|
}
|
|
|
|
} // End namespace orc.
|
|
} // End namespace llvm.
|