This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-master-arm-mainline-allnoconfig in repository toolchain/ci/llvm-project.
from 916709e0be4 [CMake] Add missing test dep adds 7e7aad15106 [WebAssembly] Optimize the number of routing blocks in FixI [...] adds ff852744c2c [cmake] Remove use of deprecated generator expression. NFC adds 98b8ecde64d [RISCV][NFC] Remove floating point operations from test/Cod [...] adds d880de2d19d Adds `-ftime-trace` option to clang that produces Chrome `c [...] adds 9681b01c214 [RISCV] Add DAGCombine for (SplitF64 (ConstantFP x)) adds e9fd9073e49 [WebAssembly] Run ExplicitLocals pass after CFGStackify adds c4ac74fb498 [WebAssembly] Fix unwind destination mismatches in CFG stackify adds 08a940d629f [clang-format]: Add NonEmptyParentheses spacing option adds 88335c21a46 [clang-format] [PR41187] moves Java import statements to th [...] adds cfdf09ba7d7 [X86][SSE] Add PAVG test case from PR41316 adds 82b01e002ec [llvm-objcopy] Replace the size() helper with SectionTableR [...] adds 7dd1c36cd72 [cmake] Change deprecated $<CONFIG> to $<CONFIGURATION>. NFC adds 32934555957 [X86][SSE] detectAVGPattern - begin generalizing ADD matches adds b5498cbf64e [RISCV] Add RV64 CHECK lines to test/CodeGen/RISCV/vararg.l [...] adds 10c9032c023 [X86][SSE] detectAVGPattern - Match zext(or(x,y)) 'add like [...] adds 0b2803ee657 [RISCV] Add codegen support for ilp32f, ilp32d, lp64f, and [...] adds e4a0fc7d75e [X86] Teach isel for RMW binops to handle negate adds 513e6b9d586 [MIPS] Remove fcmp undef from reduced test adds ec56621a5c2 [SystemZ] Remove fcmp undef from reduced test new a28ee7ec4f0 Rename IncludeFixerTests to ClangIncludeFixerTests and Chan [...] new ec04b0727cf gn build: Merge r357326 new eaf4484e94e gn build: Merge r357340
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: .../clang-change-namespace/CMakeLists.txt | 4 +- .../unittests/clang-include-fixer/CMakeLists.txt | 4 +- clang/include/clang/Basic/CodeGenOptions.def | 1 + clang/include/clang/Driver/Options.td | 1 + clang/include/clang/Format/Format.h | 11 + clang/include/clang/Frontend/FrontendOptions.h | 18 +- clang/lib/CodeGen/BackendUtil.cpp | 4 + clang/lib/CodeGen/CodeGenModule.cpp | 4 + clang/lib/Driver/ToolChains/Clang.cpp | 1 + clang/lib/Format/Format.cpp | 4 +- clang/lib/Format/TokenAnnotator.cpp | 14 +- clang/lib/Format/TokenAnnotator.h | 2 + clang/lib/Frontend/CompilerInstance.cpp | 4 + clang/lib/Frontend/CompilerInvocation.cpp | 1 + clang/lib/Parse/ParseAST.cpp | 2 + clang/lib/Parse/ParseDeclCXX.cpp | 7 + clang/lib/Parse/ParseTemplate.cpp | 7 + clang/lib/Sema/Sema.cpp | 20 +- clang/lib/Sema/SemaTemplateInstantiate.cpp | 6 + clang/lib/Sema/SemaTemplateInstantiateDecl.cpp | 5 + clang/lib/Serialization/GlobalModuleIndex.cpp | 4 + clang/runtime/CMakeLists.txt | 2 +- clang/tools/driver/cc1_main.cpp | 24 +- clang/unittests/Format/FormatTest.cpp | 56 + clang/unittests/Format/SortImportsTestJava.cpp | 15 + compiler-rt/cmake/Modules/AddCompilerRT.cmake | 2 +- llvm/cmake/modules/LLVMExternalProjectUtils.cmake | 2 +- llvm/include/llvm/Support/TimeProfiler.h | 70 + llvm/lib/IR/LegacyPassManager.cpp | 12 + llvm/lib/Support/CMakeLists.txt | 1 + llvm/lib/Support/TimeProfiler.cpp | 184 ++ llvm/lib/Target/RISCV/RISCVCallingConv.td | 8 + llvm/lib/Target/RISCV/RISCVISelLowering.cpp | 118 +- llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp | 30 +- llvm/lib/Target/WebAssembly/WebAssembly.h | 4 +- .../Target/WebAssembly/WebAssemblyCFGStackify.cpp | 530 ++++- .../WebAssemblyFixIrreducibleControlFlow.cpp | 79 +- .../WebAssembly/WebAssemblyTargetMachine.cpp | 8 +- .../Target/WebAssembly/WebAssemblyUtilities.cpp | 5 + llvm/lib/Target/X86/X86ISelDAGToDAG.cpp | 17 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 44 +- llvm/test/CodeGen/Mips/2013-11-18-fp64-const0.ll | 14 +- llvm/test/CodeGen/RISCV/callee-saved-fpr32s.ll | 107 +- llvm/test/CodeGen/RISCV/callee-saved-fpr64s.ll | 58 +- llvm/test/CodeGen/RISCV/callee-saved-gprs.ll | 12 + .../RISCV/calling-conv-ilp32-ilp32f-common.ll | 6 + .../calling-conv-ilp32-ilp32f-ilp32d-common.ll | 12 + llvm/test/CodeGen/RISCV/calling-conv-ilp32d.ll | 294 +++ .../RISCV/calling-conv-ilp32f-ilp32d-common.ll | 221 ++ .../RISCV/calling-conv-lp64-lp64f-common.ll | 3 + .../RISCV/calling-conv-lp64-lp64f-lp64d-common.ll | 6 + llvm/test/CodeGen/RISCV/double-calling-conv.ll | 46 +- llvm/test/CodeGen/RISCV/double-imm.ll | 12 +- llvm/test/CodeGen/RISCV/double-previous-failure.ll | 18 +- llvm/test/CodeGen/RISCV/target-abi-valid.ll | 24 +- llvm/test/CodeGen/RISCV/vararg.ll | 2245 ++++++++++++++------ .../SystemZ/DAGCombiner_illegal_BUILD_VECTOR.ll | 4 +- .../CodeGen/WebAssembly/cfg-stackify-dbg-skip.ll | 1 - llvm/test/CodeGen/WebAssembly/cfg-stackify-eh.ll | 250 ++- llvm/test/CodeGen/WebAssembly/irreducible-cfg.ll | 8 +- llvm/test/CodeGen/WebAssembly/irreducible-cfg.mir | 84 + llvm/test/CodeGen/X86/avg.ll | 28 + llvm/test/CodeGen/X86/fold-rmw-ops.ll | 20 +- llvm/tools/llvm-config/CMakeLists.txt | 2 +- llvm/tools/llvm-objcopy/ELF/Object.cpp | 15 +- llvm/tools/llvm-objcopy/ELF/Object.h | 1 + .../clang/lib/StaticAnalyzer/Checkers/BUILD.gn | 1 + .../clang/lib/StaticAnalyzer/Core/BUILD.gn | 1 - llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn | 1 + 69 files changed, 3969 insertions(+), 860 deletions(-) create mode 100644 llvm/include/llvm/Support/TimeProfiler.h create mode 100644 llvm/lib/Support/TimeProfiler.cpp create mode 100644 llvm/test/CodeGen/RISCV/calling-conv-ilp32d.ll create mode 100644 llvm/test/CodeGen/RISCV/calling-conv-ilp32f-ilp32d-common.ll create mode 100644 llvm/test/CodeGen/WebAssembly/irreducible-cfg.mir