This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1c740fb8861 [SLP] Update test checks, NFC. new d6352cad987 [llvm-cov] Multi-threaded implementation of prepareFileRepo [...] new 3b86f03288b [SLP] Update more test checks, NFC. new 4b913c23b6b [BasicAA] Fix linearization of shifts beyond the bitwidth.
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: lib/Analysis/BasicAliasAnalysis.cpp | 13 ++ test/Analysis/BasicAA/pr35821.ll | 11 ++ .../X86/insert-element-build-vector.ll | 204 ++++++++++----------- test/Transforms/SLPVectorizer/X86/value-bug.ll | 50 ++++- .../llvm-cov/Inputs/multithreaded_report/abs.h | 7 + .../llvm-cov/Inputs/multithreaded_report/bytes.cc | 15 ++ .../llvm-cov/Inputs/multithreaded_report/bytes.h | 8 + .../llvm-cov/Inputs/multithreaded_report/main.cc | 15 ++ .../Inputs/multithreaded_report/main.covmapping | Bin 0 -> 1428 bytes .../Inputs/multithreaded_report/main.profdata | Bin 0 -> 1416 bytes .../llvm-cov/Inputs/multithreaded_report/pow.h | 11 ++ .../llvm-cov/Inputs/multithreaded_report/words.cc | 15 ++ .../llvm-cov/Inputs/multithreaded_report/words.h | 8 + test/tools/llvm-cov/multithreaded-report.test | 93 ++++++++++ tools/llvm-cov/CodeCoverage.cpp | 17 +- tools/llvm-cov/CoverageReport.cpp | 72 +++++--- tools/llvm-cov/CoverageReport.h | 8 + tools/llvm-cov/CoverageSummaryInfo.h | 14 ++ tools/llvm-cov/CoverageViewOptions.h | 1 + 19 files changed, 418 insertions(+), 144 deletions(-) create mode 100644 test/Analysis/BasicAA/pr35821.ll create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/abs.h create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/bytes.cc create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/bytes.h create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/main.cc create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/main.covmapping create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/main.profdata create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/pow.h create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/words.cc create mode 100644 test/tools/llvm-cov/Inputs/multithreaded_report/words.h create mode 100644 test/tools/llvm-cov/multithreaded-report.test