This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from ef55e4c1a33 [DWARF] Added verification check for die ranges. If highPC [...] new 4114bcf1b9c [Analysis] Fix some Clang-tidy modernize-use-using and Incl [...] new c6f54fec9f2 Add an empty shell of llvm-rc. new bb030798323 llvm-rc: Fixup for r308940. This should use LLVMSupport. new cabe5b590eb llvm/test/CMakeLists.txt: Add llvm-rc to LLVM_TEST_DEPENDS. new 8e0c70de6e7 [DWARF] Modified test for die ranges verification so that i [...] new 977be98e0f3 [sanitizer-coverage] simplify the code, NFC new 74b6501bc4a [libFuzzer] make one test faster, fix compiler warnings in tests new 2250b309ad7 DWARFVerifier.cpp: Fix -m32 in r308928. Use PRIx64. new a663d7321b1 [AArch64] Reserve a 16 byte aligned amount of fixed stack f [...] new 9319e27ba72 [COFF] ARM64 support for COFFImportFile new e46d723b126 [ARM] Enable partial and runtime unrolling new 12b7f90cfcf Fix endianness bug in DAGCombiner::visitTRUNCATE and visitE [...] new ee5c36fd590 [X86] Add 24-byte memcmp tests (PR33914) new 8641ab97a49 [tests] Cleanup vect.omp.persistence.ll test. new 0000a717e90 This patch enables the usage of constant Enum identifiers w [...] new 2dcaf78ab6d [LIR] Teach LIR to avoid extending the BE count prior to ad [...] new b398702175d X86 Asm uses assertions instead of proper diagnostic. This [...]
The 17 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/AliasSetTracker.h | 68 ++++--- include/llvm/Analysis/CallGraph.h | 94 +++++---- include/llvm/Analysis/DominanceFrontier.h | 82 ++++---- include/llvm/Analysis/DominanceFrontierImpl.h | 13 +- include/llvm/Analysis/Interval.h | 26 ++- include/llvm/Analysis/IntervalIterator.h | 44 ++--- include/llvm/Analysis/IntervalPartition.h | 22 +-- include/llvm/MC/MCParser/MCAsmParser.h | 19 +- lib/Analysis/AliasSetTracker.cpp | 26 ++- lib/Analysis/CallGraph.cpp | 21 ++- lib/Analysis/DominanceFrontier.cpp | 12 +- lib/Analysis/Interval.cpp | 3 - lib/Analysis/IntervalPartition.cpp | 13 +- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 11 +- lib/DebugInfo/DWARF/DWARFVerifier.cpp | 3 +- lib/Fuzzer/test/SingleMemcmpTest.cpp | 2 +- lib/Fuzzer/test/StrcmpTest.cpp | 2 +- lib/Fuzzer/test/StrncmpTest.cpp | 2 +- lib/Fuzzer/test/value-profile-cmp2.test | 2 +- lib/Object/COFFImportFile.cpp | 3 + lib/Target/AArch64/AArch64ISelLowering.cpp | 7 +- lib/Target/ARM/ARMTargetTransformInfo.cpp | 32 ++++ lib/Target/ARM/ARMTargetTransformInfo.h | 3 + lib/Target/X86/AsmParser/X86AsmParser.cpp | 156 ++++++++++----- .../Instrumentation/SanitizerCoverage.cpp | 22 +-- lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 55 ++++-- test/CMakeLists.txt | 1 + test/CodeGen/AArch64/aarch64_win64cc_vararg.ll | 10 +- test/CodeGen/AArch64/win64_vararg.ll | 66 ++++++- test/CodeGen/Mips/pr33682.ll | 55 ++++++ test/CodeGen/X86/memcmp-minsize.ll | 87 +++++++++ test/CodeGen/X86/memcmp-optsize.ll | 76 ++++++++ test/CodeGen/X86/memcmp.ll | 158 ++++++++++++++-- test/MC/X86/intel-syntax-3.s | 46 +++++ test/MC/X86/intel-syntax-invalid-scale.s | 4 + test/MC/X86/intel-syntax.s | 45 ++++- test/Transforms/LoopIdiom/basic.ll | 69 +++++++ test/Transforms/LoopRotate/vect.omp.persistence.ll | 34 ++++ .../LoopUnroll}/ARM/lit.local.cfg | 0 test/Transforms/LoopUnroll/ARM/loop-unrolling.ll | 210 +++++++++++++++++++++ .../LoopVectorize/vect.omp.persistence.ll | 83 ++------ test/tools/llvm-dwarfdump/X86/verify_die_ranges.s | 4 +- test/tools/llvm-rc/helpmsg.test | 20 ++ tools/LLVMBuild.txt | 1 + tools/llvm-rc/CMakeLists.txt | 13 ++ tools/{ => llvm-rc}/LLVMBuild.txt | 43 +---- tools/llvm-rc/Opts.td | 53 ++++++ tools/llvm-rc/llvm-rc.cpp | 88 +++++++++ 48 files changed, 1506 insertions(+), 403 deletions(-) create mode 100644 test/CodeGen/Mips/pr33682.ll create mode 100644 test/MC/X86/intel-syntax-3.s create mode 100644 test/Transforms/LoopRotate/vect.omp.persistence.ll copy test/{Analysis/CostModel => Transforms/LoopUnroll}/ARM/lit.local.cfg (100%) create mode 100644 test/Transforms/LoopUnroll/ARM/loop-unrolling.ll create mode 100644 test/tools/llvm-rc/helpmsg.test create mode 100644 tools/llvm-rc/CMakeLists.txt copy tools/{ => llvm-rc}/LLVMBuild.txt (52%) create mode 100644 tools/llvm-rc/Opts.td create mode 100644 tools/llvm-rc/llvm-rc.cpp