This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 25d9f11 [RegAllocGreedy] Attempt to split unspillable live intervals new a0151b6 [libFuzzer] add switch tests new bb0318a [libFuzzer] implement value profile for switch, increase the [...] new be53d7c Codegen: Tail-duplicate during placement.
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/Analysis/LoopInfoImpl.h | 9 +- include/llvm/CodeGen/TailDuplicator.h | 26 +- lib/CodeGen/MachineBlockPlacement.cpp | 306 +++++++++++++++++++-- lib/CodeGen/TailDuplication.cpp | 2 +- lib/CodeGen/TailDuplicator.cpp | 63 ++++- lib/Fuzzer/FuzzerTracePC.cpp | 11 +- lib/Fuzzer/FuzzerTracePC.h | 2 +- lib/Fuzzer/test/Switch2Test.cpp | 35 +++ lib/Fuzzer/test/trace-pc/CMakeLists.txt | 2 + lib/Fuzzer/test/value-profile-switch.test | 3 + test/CodeGen/AArch64/arm64-extload-knownzero.ll | 1 - test/CodeGen/AArch64/machine_cse.ll | 6 +- test/CodeGen/AArch64/tail-dup-repeat-worklist.ll | 69 +++++ test/CodeGen/ARM/2011-03-23-PeepholeBug.ll | 1 - test/CodeGen/PowerPC/branch-opt.ll | 16 +- test/CodeGen/PowerPC/sjlj.ll | 18 +- .../PowerPC/tail-dup-branch-to-fallthrough.ll | 65 +++++ test/CodeGen/PowerPC/tail-dup-layout.ll | 100 +++++++ test/CodeGen/WebAssembly/cfg-stackify.ll | 2 +- test/CodeGen/WebAssembly/mem-intrinsics.ll | 2 +- test/CodeGen/X86/block-placement.ll | 10 +- test/CodeGen/X86/cmov-into-branch.ll | 4 +- test/CodeGen/X86/fma-intrinsics-phi-213-to-231.ll | 24 +- test/CodeGen/X86/fp-une-cmp.ll | 4 +- test/CodeGen/X86/pr11202.ll | 5 +- test/CodeGen/X86/ragreedy-bug.ll | 22 +- test/CodeGen/X86/sse1.ll | 28 +- test/CodeGen/X86/tail-dup-merge-loop-headers.ll | 190 +++++++++++++ test/CodeGen/X86/tail-dup-repeat.ll | 53 ++++ test/CodeGen/X86/update-terminator.mir | 22 ++ 30 files changed, 1002 insertions(+), 99 deletions(-) create mode 100644 lib/Fuzzer/test/Switch2Test.cpp create mode 100644 lib/Fuzzer/test/value-profile-switch.test create mode 100644 test/CodeGen/AArch64/tail-dup-repeat-worklist.ll create mode 100644 test/CodeGen/PowerPC/tail-dup-branch-to-fallthrough.ll create mode 100644 test/CodeGen/PowerPC/tail-dup-layout.ll create mode 100644 test/CodeGen/X86/tail-dup-merge-loop-headers.ll create mode 100644 test/CodeGen/X86/tail-dup-repeat.ll