DIEHash: Summary hashing of member functions
authorDavid Blaikie <dblaikie@gmail.com>
Fri, 25 Oct 2013 20:04:25 +0000 (20:04 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Fri, 25 Oct 2013 20:04:25 +0000 (20:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193432 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DIEHash.cpp
unittests/CodeGen/DIEHashTest.cpp

index 18264672ed2c0af3de0c03680475920b20756eec..85761c6ec55d451ae72f9615e5a443c905ec1227 100644 (file)
@@ -413,7 +413,7 @@ void DIEHash::computeHash(const DIE &Die) {
        I != E; ++I) {
     // 7.27 Step 7
     // If C is a nested type entry or a member function entry, ...
-    if (isType((*I)->getTag())) {
+    if (isType((*I)->getTag()) || (*I)->getTag() == dwarf::DW_TAG_subprogram) {
       StringRef Name = getDIEStringAttr(**I, dwarf::DW_AT_name);
       // ... and has a DW_AT_name attribute
       if (!Name.empty()) {
index fb6f4b3640a1b5b5b18e4f9623ab5d481385a530..8d8fc39a30f58318333e77e53b7fe4b2d1edf658 100644 (file)
@@ -496,4 +496,22 @@ TEST(DIEHashTest, NestedType) {
   // The exact same hash GCC produces for this DIE.
   ASSERT_EQ(0xde8a3b7b43807f4aULL, MD5Res);
 }
+
+// struct { static void func(); };
+TEST(DIEHashTest, MemberFunc) {
+  DIE Unnamed(dwarf::DW_TAG_structure_type);
+  DIEInteger One(1);
+  Unnamed.addValue(dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, &One);
+
+  DIE *Func = new DIE(dwarf::DW_TAG_subprogram);
+  DIEString FuncStr(&One, "func");
+  Func->addValue(dwarf::DW_AT_name, dwarf::DW_FORM_strp, &FuncStr);
+
+  Unnamed.addChild(Func);
+
+  uint64_t MD5Res = DIEHash().computeTypeSignature(Unnamed);
+
+  // The exact same hash GCC produces for this DIE.
+  ASSERT_EQ(0xd36a1b6dfb604ba0ULL, MD5Res);
+}
 }