[llvm] 3e89cbf - [PGO] Enable the extended value profile buckets for mem op sizes.

Hiroshi Yamauchi via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 3 12:25:44 PDT 2020


Author: Hiroshi Yamauchi
Date: 2020-08-03T12:25:11-07:00
New Revision: 3e89cbf38e76d0d0ac75fe77d318a5cfeac512f5

URL: https://github.com/llvm/llvm-project/commit/3e89cbf38e76d0d0ac75fe77d318a5cfeac512f5
DIFF: https://github.com/llvm/llvm-project/commit/3e89cbf38e76d0d0ac75fe77d318a5cfeac512f5.diff

LOG: [PGO] Enable the extended value profile buckets for mem op sizes.

Following up D81682 and enable the new, extended value profile buckets for mem
op sizes.

Differential Revision: https://reviews.llvm.org/D83903

Added: 
    

Modified: 
    llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
index 3ab697d6cc321..75988893fdb85 100644
--- a/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
+++ b/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
@@ -78,7 +78,7 @@ cl::opt<bool> UseOldMemOpValueProf(
     "use-old-memop-value-prof",
     cl::desc("Use the old memop value profiling buckets. This is "
              "transitional and to be removed after switching. "),
-    cl::init(true));
+    cl::init(false));
 
 namespace {
 


        


More information about the llvm-commits mailing list