[all-commits] [llvm/llvm-project] 27650e: Revert D81682 "[PGO] Extend the value profile buck...
Fangrui Song via All-commits
all-commits at lists.llvm.org
Wed Jul 22 16:08:46 PDT 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: 27650ec5541cd604a5027ad63895e0badfd35efe
https://github.com/llvm/llvm-project/commit/27650ec5541cd604a5027ad63895e0badfd35efe
Author: Fangrui Song <maskray at google.com>
Date: 2020-07-22 (Wed, 22 Jul 2020)
Changed paths:
M compiler-rt/include/profile/InstrProfData.inc
M compiler-rt/lib/profile/InstrProfilingValue.c
M llvm/include/llvm/ProfileData/InstrProf.h
M llvm/include/llvm/ProfileData/InstrProfData.inc
M llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
M llvm/lib/ProfileData/InstrProf.cpp
M llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
M llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
M llvm/test/Transforms/PGOProfile/memcpy.ll
M llvm/test/Transforms/PGOProfile/memop_profile_funclet.ll
M llvm/unittests/ProfileData/CMakeLists.txt
R llvm/unittests/ProfileData/InstrProfDataTest.cpp
Log Message:
-----------
Revert D81682 "[PGO] Extend the value profile buckets for mem op sizes."
This reverts commit 4a539faf74b9b4c25ee3b880e4007564bd5139b0.
There is a __llvm_profile_instrument_range related crash in PGO-instrumented clang:
```
(gdb) bt
llvm::ConstantRange const&, llvm::APInt const&, unsigned int, bool) ()
llvm::ScalarEvolution::getRangeForAffineAR(llvm::SCEV const*, llvm::SCEV
const*, llvm::SCEV const*, unsigned int) ()
```
(The body of __llvm_profile_instrument_range is inlined, so we can only find__llvm_profile_instrument_target in the trace)
```
23│ 0x000055555dba0961 <+65>: nopw %cs:0x0(%rax,%rax,1)
24│ 0x000055555dba096b <+75>: nopl 0x0(%rax,%rax,1)
25│ 0x000055555dba0970 <+80>: mov %rsi,%rbx
26│ 0x000055555dba0973 <+83>: mov 0x8(%rsi),%rsi # %rsi=-1 -> SIGSEGV
27│ 0x000055555dba0977 <+87>: cmp %r15,(%rbx)
28│ 0x000055555dba097a <+90>: je 0x55555dba0a76 <__llvm_profile_instrument_target+342>
```
More information about the All-commits
mailing list