This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/llvm-master-arm-spec2k6-Os in repository toolchain/ci/llvm-project.
from 18bc982c066 [TSan][libdispatch] Remove Darwin-only version of fully-por [...] adds cb300f12436 [Symbolize] Uniquify sorted vector<pair<SymbolDesc, StringRef>> adds 4be8629e493 [DWARF] Simplify DWARFDebugAranges::findAddress adds 5182302a376 [AMDGPU] Sort out and rename multiple CI/VI predicates adds 1db96ac88b6 [clang-format] BreakAfterReturnType ignored on functions wi [...] adds 2ea8dbf5642 [CostModel][X86] Add more exhaustive masked load/store/gath [...] adds 18a8a64c9f3 [X86][SSE] Add more exhaustive masked load/store tests adds d23611f9ad9 [X86] Split expandload and compressstore tests adds 404bdb1c9ef [llvm-exegesis][X86] Handle CMOVcc/SETcc OPERAND_COND_CODE [...] adds ec28615f7fc [X86] Add AVX-target expandload and compressstore tests adds af1cbdd3bac Fix spelling mistake. NFCI. adds 9d7379c2503 [X86] Autogenerate complete checks. NFC adds 82448bc09ef [X86] Add test cases to show missed opportunities to use a [...] adds f9b9f8d2e43 [X86] Use a signed mask in foldMaskedShiftToScaledMask to e [...] adds d0a53d49149 [X86] combineBitcastvxi1 - provide dst VT and src SDValue d [...] adds 399102b4647 [X86] When converting (x << C1) AND C2 to (x AND (C2>>C1)) [...] adds 383419f7078 [NFC] Fix typo in comment. adds bcb29cb7486 [gn] Support for per-target runtime directory layout adds fca07890a99 [clang-format] Fix Bug 41407 Differential Revision: https:/ [...]
No new revisions were added by this update.
Summary of changes: clang/lib/Format/ContinuationIndenter.cpp | 2 +- clang/lib/Format/TokenAnnotator.cpp | 2 +- clang/unittests/Format/FormatTest.cpp | 43 + llvm/include/llvm/ADT/BreadthFirstIterator.h | 2 +- .../llvm/DebugInfo/DWARF/DWARFDebugAranges.h | 4 - llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp | 21 +- .../DebugInfo/Symbolize/SymbolizableObjectFile.cpp | 23 +- .../DebugInfo/Symbolize/SymbolizableObjectFile.h | 3 - llvm/lib/Target/AMDGPU/AMDGPU.td | 17 +- llvm/lib/Target/AMDGPU/BUFInstructions.td | 16 +- llvm/lib/Target/AMDGPU/DSInstructions.td | 4 +- .../AMDGPU/Disassembler/AMDGPUDisassembler.cpp | 4 +- llvm/lib/Target/AMDGPU/FLATInstructions.td | 10 +- llvm/lib/Target/AMDGPU/MIMGInstructions.td | 4 +- llvm/lib/Target/AMDGPU/SIInstrInfo.td | 16 +- llvm/lib/Target/AMDGPU/SMInstructions.td | 18 +- llvm/lib/Target/AMDGPU/SOPInstructions.td | 6 +- llvm/lib/Target/AMDGPU/VOP1Instructions.td | 18 +- llvm/lib/Target/AMDGPU/VOP2Instructions.td | 18 +- llvm/lib/Target/AMDGPU/VOP3Instructions.td | 30 +- llvm/lib/Target/AMDGPU/VOP3PInstructions.td | 2 +- llvm/lib/Target/AMDGPU/VOPCInstructions.td | 4 +- llvm/lib/Target/X86/X86ISelDAGToDAG.cpp | 27 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 38 +- .../CostModel/X86/masked-intrinsic-cost-widen.ll | 1061 +++- .../CostModel/X86/masked-intrinsic-cost.ll | 1061 +++- llvm/test/CodeGen/X86/compress_expand.ll | 416 -- llvm/test/CodeGen/X86/fold-and-shift-x86_64.ll | 77 + llvm/test/CodeGen/X86/fold-and-shift.ll | 80 +- llvm/test/CodeGen/X86/masked_compressstore.ll | 1038 ++++ llvm/test/CodeGen/X86/masked_expandload.ll | 921 +++ llvm/test/CodeGen/X86/masked_load.ll | 6025 +++++++++++++++++--- llvm/test/CodeGen/X86/masked_store.ll | 4554 ++++++++++++--- llvm/test/CodeGen/X86/narrow-shl-cst.ll | 2 +- .../tools/llvm-exegesis/X86/latency-CMOV32rr.s | 9 + llvm/tools/llvm-exegesis/lib/SnippetGenerator.cpp | 31 +- llvm/tools/llvm-exegesis/lib/SnippetGenerator.h | 3 +- llvm/tools/llvm-exegesis/lib/Target.cpp | 24 + llvm/tools/llvm-exegesis/lib/Target.h | 8 + llvm/tools/llvm-exegesis/lib/X86/Target.cpp | 21 + llvm/utils/gn/secondary/clang/runtimes.gni | 13 + .../gn/secondary/compiler-rt/lib/builtins/BUILD.gn | 2 +- .../gn/secondary/compiler-rt/lib/hwasan/BUILD.gn | 10 +- llvm/utils/gn/secondary/compiler-rt/target.gni | 23 +- .../gn/secondary/compiler-rt/test/hwasan/BUILD.gn | 4 +- 45 files changed, 13517 insertions(+), 2198 deletions(-) delete mode 100644 llvm/test/CodeGen/X86/compress_expand.ll create mode 100644 llvm/test/CodeGen/X86/fold-and-shift-x86_64.ll create mode 100644 llvm/test/CodeGen/X86/masked_compressstore.ll create mode 100644 llvm/test/CodeGen/X86/masked_expandload.ll create mode 100644 llvm/test/tools/llvm-exegesis/X86/latency-CMOV32rr.s create mode 100644 llvm/utils/gn/secondary/clang/runtimes.gni