mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-11 15:07:58 +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
34 lines
1020 B
C++
34 lines
1020 B
C++
//===- LazyEmittingLayerTest.cpp - Unit tests for the lazy emitting layer -===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ExecutionEngine/RuntimeDyld.h"
|
|
#include "llvm/ExecutionEngine/Orc/LazyEmittingLayer.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace {
|
|
|
|
struct MockBaseLayer {
|
|
typedef int ModuleSetHandleT;
|
|
ModuleSetHandleT addModuleSet(
|
|
std::list<std::unique_ptr<llvm::Module>>,
|
|
std::unique_ptr<llvm::RuntimeDyld::MemoryManager> MemMgr,
|
|
std::unique_ptr<llvm::JITSymbolResolver> Resolver) {
|
|
EXPECT_FALSE(MemMgr);
|
|
return 42;
|
|
}
|
|
};
|
|
|
|
TEST(LazyEmittingLayerTest, Empty) {
|
|
MockBaseLayer M;
|
|
llvm::orc::LazyEmittingLayer<MockBaseLayer> L(M);
|
|
L.addModuleSet(std::list<std::unique_ptr<llvm::Module>>(), nullptr, nullptr);
|
|
}
|
|
|
|
}
|