From: Paul Robinson Date: Fri, 25 May 2018 22:35:59 +0000 (+0000) Subject: Revert "[DebugInfo] Don't bother with MD5 checksums of preprocessed files." X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=401f26547f8621ee12214e2d8c4e7e02290c47c3;p=clang Revert "[DebugInfo] Don't bother with MD5 checksums of preprocessed files." This reverts commit d734f2aa3f76fbf355ecd2bbe081d0c1f49867ab. Also known as r333311. A very small but nonzero number of bots fail. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@333319 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 8cf37f48a2..9e99a646b0 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -67,8 +67,6 @@ CGDebugInfo::CGDebugInfo(CodeGenModule &CGM) DBuilder(CGM.getModule()) { for (const auto &KV : CGM.getCodeGenOpts().DebugPrefixMap) DebugPrefixMap[KV.first] = KV.second; - EmitFileChecksums = CGM.getCodeGenOpts().EmitCodeView || - CGM.getCodeGenOpts().DwarfVersion >= 5; CreateCompileUnit(); } @@ -367,21 +365,15 @@ Optional CGDebugInfo::computeChecksum(FileID FID, SmallString<32> &Checksum) const { Checksum.clear(); - if (!EmitFileChecksums) + if (!CGM.getCodeGenOpts().EmitCodeView && + CGM.getCodeGenOpts().DwarfVersion < 5) return None; SourceManager &SM = CGM.getContext().getSourceManager(); bool Invalid; - const SrcMgr::SLocEntry &Entry = SM.getSLocEntry(FID, &Invalid); - if (Invalid || !Entry.isFile()) + llvm::MemoryBuffer *MemBuffer = SM.getBuffer(FID, &Invalid); + if (Invalid) return None; - if (Entry.getFile().hasLineDirectives()) { - // This must be a preprocessed file; its content won't match the original - // source; therefore checksumming the text we have is pointless or wrong. - EmitFileChecksums = false; - return None; - } - llvm::MemoryBuffer *MemBuffer = SM.getBuffer(FID); llvm::MD5 Hash; llvm::MD5::MD5Result Result; diff --git a/lib/CodeGen/CGDebugInfo.h b/lib/CodeGen/CGDebugInfo.h index ec7b046c8f..a692babef5 100644 --- a/lib/CodeGen/CGDebugInfo.h +++ b/lib/CodeGen/CGDebugInfo.h @@ -57,7 +57,6 @@ class CGDebugInfo { CodeGenModule &CGM; const codegenoptions::DebugInfoKind DebugKind; bool DebugTypeExtRefs; - mutable bool EmitFileChecksums; llvm::DIBuilder DBuilder; llvm::DICompileUnit *TheCU = nullptr; ModuleMap *ClangModuleMap = nullptr; diff --git a/test/CodeGen/md5-checksum-crash.c b/test/CodeGen/md5-checksum-crash.c deleted file mode 100644 index 7a4d48757c..0000000000 --- a/test/CodeGen/md5-checksum-crash.c +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %clang_cc1 -triple %itanium_abi_triple -debug-info-kind=limited -dwarf-version=5 %s -emit-llvm -o- | FileCheck %s -// RUN: %clang_cc1 -triple %ms_abi_triple -gcodeview -debug-info-kind=limited %s -emit-llvm -o- | FileCheck %s - -// This had been crashing, no MD5 checksum for string.h. -// Now if there are #line directives, don't bother with checksums -// as a preprocessed file won't properly reflect the original source. -#define __NTH fct -void fn1() {} -# 7 "/usr/include/string.h" -void __NTH() {} -// Verify no checksum attributes on these files. -// CHECK-DAG: DIFile(filename: "{{.*}}.c", directory: "{{[^"]*}}") -// CHECK-DAG: DIFile(filename: "{{.*}}string.h", directory: "{{[^"]*}}")