llvm/unittests/ExecutionEngine/Orc/GlobalMappingLayerTest.cpp
Lang Hames 075c1e2e1a [ExecutionEngine][MCJIT][Orc] Replace RuntimeDyld::SymbolInfo with JITSymbol.
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
2016-08-01 20:49:11 +00:00

56 lines
1.6 KiB
C++

//===--- GlobalMappingLayerTest.cpp - Unit test the global mapping 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/Orc/GlobalMappingLayer.h"
#include "gtest/gtest.h"
using namespace llvm;
using namespace llvm::orc;
namespace {
struct MockBaseLayer {
typedef int ModuleSetHandleT;
JITSymbol findSymbol(const std::string &Name, bool ExportedSymbolsOnly) {
if (Name == "bar")
return llvm::JITSymbol(0x4567, JITSymbolFlags::Exported);
return nullptr;
}
};
TEST(GlobalMappingLayerTest, Empty) {
MockBaseLayer M;
GlobalMappingLayer<MockBaseLayer> L(M);
// Test fall-through for missing symbol.
auto FooSym = L.findSymbol("foo", true);
EXPECT_FALSE(FooSym) << "Found unexpected symbol.";
// Test fall-through for symbol in base layer.
auto BarSym = L.findSymbol("bar", true);
EXPECT_EQ(BarSym.getAddress(), static_cast<JITTargetAddress>(0x4567))
<< "Symbol lookup fall-through failed.";
// Test setup of a global mapping.
L.setGlobalMapping("foo", 0x0123);
auto FooSym2 = L.findSymbol("foo", true);
EXPECT_EQ(FooSym2.getAddress(), static_cast<JITTargetAddress>(0x0123))
<< "Symbol mapping setup failed.";
// Test removal of a global mapping.
L.eraseGlobalMapping("foo");
auto FooSym3 = L.findSymbol("foo", true);
EXPECT_FALSE(FooSym3) << "Symbol mapping removal failed.";
}
}