mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 13:05:52 -04:00

materializing function definitions. MaterializationUnit instances are responsible for resolving and finalizing symbol definitions when their materialize method is called. By contract, the MaterializationUnit must materialize all definitions it is responsible for and no others. If it can not materialize all definitions (because of some error) then it must notify the associated VSO about each definition that could not be materialized. The MaterializationResponsibility class tracks this responsibility, asserting that all required symbols are resolved and finalized, and that no extraneous symbols are resolved or finalized. In the event of an error it provides a convenience method for notifying the VSO about each definition that could not be materialized. llvm-svn: 330142
144 lines
5.2 KiB
C++
144 lines
5.2 KiB
C++
//===----------- CoreAPIsTest.cpp - Unit tests for Core ORC APIs ----------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "OrcTestCommon.h"
|
|
#include "llvm/ExecutionEngine/Orc/Legacy.h"
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace llvm;
|
|
using namespace llvm::orc;
|
|
|
|
namespace {
|
|
|
|
TEST(LegacyAPIInteropTest, QueryAgainstVSO) {
|
|
|
|
ExecutionSession ES(std::make_shared<SymbolStringPool>());
|
|
auto Foo = ES.getSymbolStringPool().intern("foo");
|
|
|
|
VSO V;
|
|
SymbolMap Defs;
|
|
JITEvaluatedSymbol FooSym(0xdeadbeef, JITSymbolFlags::Exported);
|
|
Defs[Foo] = FooSym;
|
|
cantFail(V.define(std::move(Defs)));
|
|
|
|
auto LookupFlags = [&](SymbolFlagsMap &SymbolFlags,
|
|
const SymbolNameSet &Names) {
|
|
return V.lookupFlags(SymbolFlags, Names);
|
|
};
|
|
|
|
auto Lookup = [&](std::shared_ptr<AsynchronousSymbolQuery> Query,
|
|
SymbolNameSet Symbols) {
|
|
auto R = V.lookup(std::move(Query), Symbols);
|
|
EXPECT_TRUE(R.Materializers.empty())
|
|
<< "Query resulted in unexpected materialization work";
|
|
return std::move(R.UnresolvedSymbols);
|
|
};
|
|
|
|
auto UnderlyingResolver =
|
|
createSymbolResolver(std::move(LookupFlags), std::move(Lookup));
|
|
JITSymbolResolverAdapter Resolver(ES, *UnderlyingResolver);
|
|
|
|
JITSymbolResolver::LookupSet Names{StringRef("foo")};
|
|
|
|
auto LFR = Resolver.lookupFlags(Names);
|
|
EXPECT_TRUE(!!LFR) << "lookupFlags failed";
|
|
EXPECT_EQ(LFR->size(), 1U)
|
|
<< "lookupFlags returned the wrong number of results";
|
|
EXPECT_EQ(LFR->count(*Foo), 1U)
|
|
<< "lookupFlags did not contain a result for 'foo'";
|
|
EXPECT_EQ((*LFR)[*Foo], FooSym.getFlags())
|
|
<< "lookupFlags contained the wrong result for 'foo'";
|
|
|
|
auto LR = Resolver.lookup(Names);
|
|
EXPECT_TRUE(!!LR) << "lookup failed";
|
|
EXPECT_EQ(LR->size(), 1U) << "lookup returned the wrong number of results";
|
|
EXPECT_EQ(LR->count(*Foo), 1U) << "lookup did not contain a result for 'foo'";
|
|
EXPECT_EQ((*LR)[*Foo].getFlags(), FooSym.getFlags())
|
|
<< "lookup returned the wrong result for flags of 'foo'";
|
|
EXPECT_EQ((*LR)[*Foo].getAddress(), FooSym.getAddress())
|
|
<< "lookup returned the wrong result for address of 'foo'";
|
|
}
|
|
|
|
TEST(LegacyAPIInteropTset, LegacyLookupHelpersFn) {
|
|
constexpr JITTargetAddress FooAddr = 0xdeadbeef;
|
|
JITSymbolFlags FooFlags = JITSymbolFlags::Exported;
|
|
|
|
bool BarMaterialized = false;
|
|
constexpr JITTargetAddress BarAddr = 0xcafef00d;
|
|
JITSymbolFlags BarFlags = static_cast<JITSymbolFlags::FlagNames>(
|
|
JITSymbolFlags::Exported | JITSymbolFlags::Weak);
|
|
|
|
auto LegacyLookup = [&](const std::string &Name) -> JITSymbol {
|
|
if (Name == "foo")
|
|
return {FooAddr, FooFlags};
|
|
|
|
if (Name == "bar") {
|
|
auto BarMaterializer = [&]() -> Expected<JITTargetAddress> {
|
|
BarMaterialized = true;
|
|
return BarAddr;
|
|
};
|
|
|
|
return {BarMaterializer, BarFlags};
|
|
}
|
|
|
|
return nullptr;
|
|
};
|
|
|
|
SymbolStringPool SP;
|
|
auto Foo = SP.intern("foo");
|
|
auto Bar = SP.intern("bar");
|
|
auto Baz = SP.intern("baz");
|
|
|
|
SymbolNameSet Symbols({Foo, Bar, Baz});
|
|
|
|
SymbolFlagsMap SymbolFlags;
|
|
auto SymbolsNotFound =
|
|
lookupFlagsWithLegacyFn(SymbolFlags, Symbols, LegacyLookup);
|
|
|
|
EXPECT_TRUE(!!SymbolsNotFound) << "lookupFlagsWithLegacy failed unexpectedly";
|
|
EXPECT_EQ(SymbolFlags.size(), 2U) << "Wrong number of flags returned";
|
|
EXPECT_EQ(SymbolFlags.count(Foo), 1U) << "Flags for foo missing";
|
|
EXPECT_EQ(SymbolFlags.count(Bar), 1U) << "Flags for foo missing";
|
|
EXPECT_EQ(SymbolFlags[Foo], FooFlags) << "Wrong flags for foo";
|
|
EXPECT_EQ(SymbolFlags[Bar], BarFlags) << "Wrong flags for foo";
|
|
EXPECT_EQ(SymbolsNotFound->size(), 1U) << "Expected one symbol not found";
|
|
EXPECT_EQ(SymbolsNotFound->count(Baz), 1U)
|
|
<< "Expected symbol baz to be not found";
|
|
EXPECT_FALSE(BarMaterialized)
|
|
<< "lookupFlags should not have materialized bar";
|
|
|
|
bool OnResolvedRun = false;
|
|
bool OnReadyRun = false;
|
|
auto OnResolved = [&](Expected<SymbolMap> Result) {
|
|
OnResolvedRun = true;
|
|
EXPECT_TRUE(!!Result) << "lookuWithLegacy failed to resolve";
|
|
EXPECT_EQ(Result->size(), 2U) << "Wrong number of symbols resolved";
|
|
EXPECT_EQ(Result->count(Foo), 1U) << "Result for foo missing";
|
|
EXPECT_EQ(Result->count(Bar), 1U) << "Result for bar missing";
|
|
EXPECT_EQ((*Result)[Foo].getAddress(), FooAddr) << "Wrong address for foo";
|
|
EXPECT_EQ((*Result)[Foo].getFlags(), FooFlags) << "Wrong flags for foo";
|
|
EXPECT_EQ((*Result)[Bar].getAddress(), BarAddr) << "Wrong address for bar";
|
|
EXPECT_EQ((*Result)[Bar].getFlags(), BarFlags) << "Wrong flags for bar";
|
|
};
|
|
auto OnReady = [&](Error Err) {
|
|
EXPECT_FALSE(!!Err) << "Finalization unexpectedly failed";
|
|
OnReadyRun = true;
|
|
};
|
|
|
|
AsynchronousSymbolQuery Q({Foo, Bar}, OnResolved, OnReady);
|
|
auto Unresolved = lookupWithLegacyFn(Q, Symbols, LegacyLookup);
|
|
|
|
EXPECT_TRUE(OnResolvedRun) << "OnResolved was not run";
|
|
EXPECT_TRUE(OnReadyRun) << "OnReady was not run";
|
|
EXPECT_EQ(Unresolved.size(), 1U) << "Expected one unresolved symbol";
|
|
EXPECT_EQ(Unresolved.count(Baz), 1U) << "Expected baz to be unresolved";
|
|
}
|
|
|
|
} // namespace
|