Skip to content

[DebugInfo] Make DISubprogram's hashing always produce the same result #8681

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions llvm/lib/IR/LLVMContextImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -843,19 +843,26 @@ template <> struct MDNodeKeyImpl<DISubprogram> {
bool isDefinition() const { return SPFlags & DISubprogram::SPFlagDefinition; }

unsigned getHashValue() const {
// Use the Scope's linkage name instead of using the scope directly, as the
// scope may be a temporary one which can replaced, which would produce a
// different hash for the same DISubprogram.
llvm::StringRef ScopeLinkageName;
if (auto *CT = dyn_cast_or_null<DICompositeType>(Scope))
if (auto *ID = CT->getRawIdentifier())
ScopeLinkageName = ID->getString();

// If this is a declaration inside an ODR type, only hash the type and the
// name. Otherwise the hash will be stronger than
// MDNodeSubsetEqualImpl::isDeclarationOfODRMember().
if (!isDefinition() && LinkageName)
if (auto *CT = dyn_cast_or_null<DICompositeType>(Scope))
if (CT->getRawIdentifier())
return hash_combine(LinkageName, Scope);
if (!isDefinition() && LinkageName &&
isa_and_nonnull<DICompositeType>(Scope))
return hash_combine(LinkageName, ScopeLinkageName);

// Intentionally computes the hash on a subset of the operands for
// performance reason. The subset has to be significant enough to avoid
// collision "most of the time". There is no correctness issue in case of
// collision because of the full check above.
return hash_combine(Name, Scope, File, Type, Line);
return hash_combine(Name, ScopeLinkageName, File, Type, Line);
}
};

Expand Down
51 changes: 50 additions & 1 deletion llvm/unittests/IR/DebugInfoTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//===----------------------------------------------------------------------===//

#include "llvm/IR/DebugInfo.h"
#include "../lib/IR/LLVMContextImpl.h"
#include "llvm/ADT/APSInt.h"
#include "llvm/AsmParser/Parser.h"
#include "llvm/IR/DIBuilder.h"
Expand All @@ -19,6 +20,7 @@
#include "llvm/IR/Verifier.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Transforms/Utils/Local.h"

#include "gtest/gtest.h"

using namespace llvm;
Expand Down Expand Up @@ -231,7 +233,7 @@ TEST(DbgVariableIntrinsic, EmptyMDIsKillLocation) {
EXPECT_TRUE(DbgDeclare->isKillLocation());
}

TEST(DIBuiler, CreateFile) {
TEST(DIBuilder, CreateFile) {
LLVMContext Ctx;
std::unique_ptr<Module> M(new Module("MyModule", Ctx));
DIBuilder DIB(*M);
Expand Down Expand Up @@ -730,4 +732,51 @@ TEST(AssignmentTrackingTest, InstrMethods) {
}
}

// Test that the hashing function for DISubprograms produce the same result
// after replacing the temporary scope.
TEST(DIBuilder, HashingDISubprogram) {
LLVMContext Ctx;
std::unique_ptr<Module> M = std::make_unique<Module>("MyModule", Ctx);
DIBuilder DIB(*M);

DIFile *F = DIB.createFile("main.c", "/");
DICompileUnit *CU =
DIB.createCompileUnit(dwarf::DW_LANG_C, F, "Test", false, "", 0);

llvm::TempDIType ForwardDeclaredType =
llvm::TempDIType(DIB.createReplaceableCompositeType(
llvm::dwarf::DW_TAG_structure_type, "MyType", CU, F, 0, 0, 8, 8, {},
"UniqueIdentifier"));

// The hashing function is different for declarations and definitions, so
// create one of each.
DISubprogram *Declaration =
DIB.createMethod(ForwardDeclaredType.get(), "MethodName", "LinkageName",
F, 0, DIB.createSubroutineType({}));

DISubprogram *Definition = DIB.createFunction(
ForwardDeclaredType.get(), "MethodName", "LinkageName", F, 0,
DIB.createSubroutineType({}), 0, DINode::FlagZero,
llvm::DISubprogram::SPFlagDefinition, nullptr, Declaration);

// Produce the hash with the temporary scope.
unsigned HashDeclaration =
MDNodeKeyImpl<DISubprogram>(Declaration).getHashValue();
unsigned HashDefinition =
MDNodeKeyImpl<DISubprogram>(Definition).getHashValue();

// Instantiate the real scope and replace the temporary one with it.
DICompositeType *Type = DIB.createStructType(CU, "MyType", F, 0, 8, 8, {}, {},
{}, 0, {}, "UniqueIdentifier");
DIB.replaceTemporary(std::move(ForwardDeclaredType), Type);

// Now make sure the hashing is consistent.
unsigned HashDeclarationAfter =
MDNodeKeyImpl<DISubprogram>(Declaration).getHashValue();
unsigned HashDefinitionAfter =
MDNodeKeyImpl<DISubprogram>(Definition).getHashValue();

EXPECT_EQ(HashDeclaration, HashDeclarationAfter);
EXPECT_EQ(HashDefinition, HashDefinitionAfter);
}
} // end namespace