mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-11 20:22:02 +00:00

VSOs now track dependencies for materializing symbols. Each symbol must have its dependencies registered with the VSO prior to finalization. Usually this will involve registering the dependencies returned in AsynchronousSymbolQuery::ResolutionResults for queries made while linking the symbols being materialized. Queries against symbols are notified that a symbol is ready once it and all of its transitive dependencies are finalized, allowing compilation work to be broken up and moved between threads without queries returning until their symbols fully safe to access / execute. Related utilities (VSO, MaterializationUnit, MaterializationResponsibility) are updated to support dependence tracking and more explicitly track responsibility for symbols from the point of definition until they are finalized. llvm-svn: 332541
144 lines
5.3 KiB
C++
144 lines
5.3 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");
|
|
|
|
auto &V = ES.createVSO("V");
|
|
JITEvaluatedSymbol FooSym(0xdeadbeef, JITSymbolFlags::Exported);
|
|
cantFail(V.define(absoluteSymbols({{Foo, FooSym}})));
|
|
|
|
auto LookupFlags = [&](SymbolFlagsMap &SymbolFlags,
|
|
const SymbolNameSet &Names) {
|
|
return V.lookupFlags(SymbolFlags, Names);
|
|
};
|
|
|
|
auto Lookup = [&](std::shared_ptr<AsynchronousSymbolQuery> Query,
|
|
SymbolNameSet Symbols) {
|
|
return V.lookup(std::move(Query), Symbols);
|
|
};
|
|
|
|
auto UnderlyingResolver =
|
|
createSymbolResolver(std::move(LookupFlags), std::move(Lookup));
|
|
JITSymbolResolverAdapter Resolver(ES, *UnderlyingResolver, nullptr);
|
|
|
|
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;
|
|
};
|
|
|
|
ExecutionSession ES;
|
|
auto Foo = ES.getSymbolStringPool().intern("foo");
|
|
auto Bar = ES.getSymbolStringPool().intern("bar");
|
|
auto Baz = ES.getSymbolStringPool().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<AsynchronousSymbolQuery::ResolutionResult> Result) {
|
|
OnResolvedRun = true;
|
|
EXPECT_TRUE(!!Result) << "lookuWithLegacy failed to resolve";
|
|
|
|
auto &Resolved = Result->Symbols;
|
|
EXPECT_EQ(Resolved.size(), 2U) << "Wrong number of symbols resolved";
|
|
EXPECT_EQ(Resolved.count(Foo), 1U) << "Result for foo missing";
|
|
EXPECT_EQ(Resolved.count(Bar), 1U) << "Result for bar missing";
|
|
EXPECT_EQ(Resolved[Foo].getAddress(), FooAddr)
|
|
<< "Wrong address for foo";
|
|
EXPECT_EQ(Resolved[Foo].getFlags(), FooFlags) << "Wrong flags for foo";
|
|
EXPECT_EQ(Resolved[Bar].getAddress(), BarAddr)
|
|
<< "Wrong address for bar";
|
|
EXPECT_EQ(Resolved[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(ES, 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
|