This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f4beb75be0f Recommit r317351 : Add CallSiteSplitting pass new 79eed6909a1 [cfi-verify] Add blacklist parsing for result filtering. new 352adf2ec9c llvm-objdump: Fix unused-lambda-capture warning by removing [...] new 7711c315b29 GCOV: Move GCOV from IR & Support into ProfileData to fix layering
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/{Support => ProfileData}/GCOV.h | 4 +- include/llvm/ProfileData/SampleProfReader.h | 2 +- lib/IR/CMakeLists.txt | 1 - lib/ProfileData/CMakeLists.txt | 1 + lib/{IR => ProfileData}/GCOV.cpp | 2 +- .../X86/{ => Inputs}/protected-lineinfo.s | 8 - .../X86/Inputs/unprotected-fullinfo.s | 380 +++++++++++++++++++++ .../X86/{ => Inputs}/unprotected-lineinfo.s | 8 - .../X86/{ => Inputs}/unprotected-nolineinfo.s | 5 - .../X86/blacklist-expected-unprotected.s | 17 + .../llvm-cfi-verify/X86/blacklist-match-fun.s | 17 + .../X86/blacklist-unexpected-protected.s | 17 + .../llvm-cfi-verify/X86/indirect-cf-elimination.s | 5 +- .../tools/llvm-cfi-verify/X86/protected-lineinfo.s | 204 +---------- .../llvm-cfi-verify/X86/unprotected-lineinfo.s | 168 +-------- .../llvm-cfi-verify/X86/unprotected-nolineinfo.s | 91 +---- tools/llvm-cfi-verify/CMakeLists.txt | 2 +- tools/llvm-cfi-verify/LLVMBuild.txt | 2 +- tools/llvm-cfi-verify/lib/CMakeLists.txt | 3 +- tools/llvm-cfi-verify/lib/FileAnalysis.cpp | 49 +-- tools/llvm-cfi-verify/lib/FileAnalysis.h | 9 +- tools/llvm-cfi-verify/lib/LLVMBuild.txt | 2 +- tools/llvm-cfi-verify/llvm-cfi-verify.cpp | 133 ++++++-- tools/llvm-cov/gcov.cpp | 2 +- tools/llvm-objcopy/llvm-objcopy.cpp | 2 +- unittests/tools/llvm-cfi-verify/CMakeLists.txt | 1 + unittests/tools/llvm-cfi-verify/FileAnalysis.cpp | 1 + unittests/tools/llvm-cfi-verify/GraphBuilder.cpp | 1 + 28 files changed, 603 insertions(+), 534 deletions(-) rename include/llvm/{Support => ProfileData}/GCOV.h (99%) rename lib/{IR => ProfileData}/GCOV.cpp (99%) copy test/tools/llvm-cfi-verify/X86/{ => Inputs}/protected-lineinfo.s (94%) create mode 100644 test/tools/llvm-cfi-verify/X86/Inputs/unprotected-fullinfo.s copy test/tools/llvm-cfi-verify/X86/{ => Inputs}/unprotected-lineinfo.s (95%) copy test/tools/llvm-cfi-verify/X86/{ => Inputs}/unprotected-nolineinfo.s (91%) create mode 100644 test/tools/llvm-cfi-verify/X86/blacklist-expected-unprotected.s create mode 100644 test/tools/llvm-cfi-verify/X86/blacklist-match-fun.s create mode 100644 test/tools/llvm-cfi-verify/X86/blacklist-unexpected-protected.s