[PATCH] D51193: [PGO] Print target md5sum in missed optimization message

David Li via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 24 14:39:26 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL340657: [PGO] add target md5sum in warning message for icall (authored by davidxl, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D51193?vs=162285&id=162483#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D51193

Files:
  llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
  llvm/trunk/test/Transforms/PGOProfile/icp_mismatch_msg.ll


Index: llvm/trunk/test/Transforms/PGOProfile/icp_mismatch_msg.ll
===================================================================
--- llvm/trunk/test/Transforms/PGOProfile/icp_mismatch_msg.ll
+++ llvm/trunk/test/Transforms/PGOProfile/icp_mismatch_msg.ll
@@ -2,7 +2,7 @@
 ; RUN: opt < %s -passes=pgo-icall-prom -pass-remarks-missed=pgo-icall-prom -S 2>& 1 | FileCheck %s
 
 ; CHECK: remark: <unknown>:0:0: Cannot promote indirect call to func4 with count of 1234: The number of arguments mismatch
-; CHECK: remark: <unknown>:0:0: Cannot promote indirect call: target not found
+; CHECK: remark: <unknown>:0:0: Cannot promote indirect call: target with md5sum{{.*}} not found
 ; CHECK: remark: <unknown>:0:0: Cannot promote indirect call to func2 with count of 7890: Return type mismatch
 
 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
Index: llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
+++ llvm/trunk/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
@@ -269,7 +269,8 @@
       LLVM_DEBUG(dbgs() << " Not promote: Cannot find the target\n");
       ORE.emit([&]() {
         return OptimizationRemarkMissed(DEBUG_TYPE, "UnableToFindTarget", Inst)
-               << "Cannot promote indirect call: target not found";
+               << "Cannot promote indirect call: target with md5sum "
+               << ore::NV("target md5sum", Target) << " not found";
       });
       break;
     }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D51193.162483.patch
Type: text/x-patch
Size: 1576 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180824/33cc378a/attachment.bin>


More information about the llvm-commits mailing list