Skip to content

Commit b7aa1cc

Browse files
committed
[ORC] Remove the JITDylib::SymbolTableEntry::isInMaterializingState() method.
It was being used inconsistently. Uses have been replaced with direct checks on the symbol state.
1 parent 828fb0c commit b7aa1cc

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

llvm/include/llvm/ExecutionEngine/Orc/Core.h

-5
Original file line numberDiff line numberDiff line change
@@ -1019,11 +1019,6 @@ class JITDylib {
10191019
JITSymbolFlags getFlags() const { return Flags; }
10201020
SymbolState getState() const { return static_cast<SymbolState>(State); }
10211021

1022-
bool isInMaterializationPhase() const {
1023-
return getState() == SymbolState::Materializing ||
1024-
getState() == SymbolState::Resolved;
1025-
}
1026-
10271022
bool hasMaterializerAttached() const { return MaterializerAttached; }
10281023
bool isPendingRemoval() const { return PendingRemoval; }
10291024

llvm/lib/ExecutionEngine/Orc/Core.cpp

+12-7
Original file line numberDiff line numberDiff line change
@@ -895,8 +895,8 @@ void JITDylib::replace(std::unique_ptr<MaterializationUnit> MU) {
895895
for (auto &KV : MU->getSymbols()) {
896896
auto SymI = Symbols.find(KV.first);
897897
assert(SymI != Symbols.end() && "Replacing unknown symbol");
898-
assert(SymI->second.isInMaterializationPhase() &&
899-
"Can not call replace on a symbol that is not materializing");
898+
assert(SymI->second.getState() == SymbolState::Materializing &&
899+
"Can not replace a symbol that ha is not materializing");
900900
assert(!SymI->second.hasMaterializerAttached() &&
901901
"Symbol should not have materializer attached already");
902902
assert(UnmaterializedInfos.count(KV.first) == 0 &&
@@ -943,7 +943,9 @@ JITDylib::getRequestedSymbols(const SymbolFlagsMap &SymbolFlags) const {
943943

944944
for (auto &KV : SymbolFlags) {
945945
assert(Symbols.count(KV.first) && "JITDylib does not cover this symbol?");
946-
assert(Symbols.find(KV.first)->second.isInMaterializationPhase() &&
946+
assert(Symbols.find(KV.first)->second.getState() !=
947+
SymbolState::NeverSearched &&
948+
Symbols.find(KV.first)->second.getState() != SymbolState::Ready &&
947949
"getRequestedSymbols can only be called for symbols that have "
948950
"started materializing");
949951
auto I = MaterializingInfos.find(KV.first);
@@ -961,7 +963,7 @@ JITDylib::getRequestedSymbols(const SymbolFlagsMap &SymbolFlags) const {
961963
void JITDylib::addDependencies(const SymbolStringPtr &Name,
962964
const SymbolDependenceMap &Dependencies) {
963965
assert(Symbols.count(Name) && "Name not in symbol table");
964-
assert(Symbols[Name].isInMaterializationPhase() &&
966+
assert(Symbols[Name].getState() < SymbolState::Emitted &&
965967
"Can not add dependencies for a symbol that is not materializing");
966968

967969
LLVM_DEBUG({
@@ -1432,7 +1434,8 @@ Error JITDylib::remove(const SymbolNameSet &Names) {
14321434
}
14331435

14341436
// Note symbol materializing.
1435-
if (I->second.isInMaterializationPhase()) {
1437+
if (I->second.getState() != SymbolState::NeverSearched &&
1438+
I->second.getState() != SymbolState::Ready) {
14361439
Materializing.insert(Name);
14371440
continue;
14381441
}
@@ -1600,7 +1603,8 @@ Error JITDylib::lodgeQueryImpl(MaterializationUnitList &MUs,
16001603

16011604
// Add the query to the PendingQueries list and continue, deleting the
16021605
// element.
1603-
assert(SymI->second.isInMaterializationPhase() &&
1606+
assert(SymI->second.getState() != SymbolState::NeverSearched &&
1607+
SymI->second.getState() != SymbolState::Ready &&
16041608
"By this line the symbol should be materializing");
16051609
auto &MI = MaterializingInfos[Name];
16061610
MI.addQuery(Q);
@@ -1720,7 +1724,8 @@ bool JITDylib::lookupImpl(
17201724
}
17211725

17221726
// Add the query to the PendingQueries list.
1723-
assert(SymI->second.isInMaterializationPhase() &&
1727+
assert(SymI->second.getState() != SymbolState::NeverSearched &&
1728+
SymI->second.getState() != SymbolState::Ready &&
17241729
"By this line the symbol should be materializing");
17251730
auto &MI = MaterializingInfos[Name];
17261731
MI.addQuery(Q);

llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ TEST_F(CoreAPIsStandardTest, RemoveSymbolsTest) {
166166
// Attempt 3: Search now that all symbols are fully materialized
167167
// (Foo, Baz), or not yet materialized (Bar).
168168
auto Err = JD.remove({Foo, Bar, Baz});
169-
EXPECT_FALSE(!!Err) << "Expected failure";
169+
EXPECT_FALSE(!!Err) << "Expected success";
170170
}
171171

172172
EXPECT_TRUE(BarDiscarded) << "\"Bar\" should have been discarded";

0 commit comments

Comments
 (0)