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-stable-defconfig in repository toolchain/ci/llvm-project.
from 558db27c497 [NFC] Whitespace fix inside OptParserEmitter adds adda9c0a4f6 IR: Remove extra name mangling from llvm.ptrmask adds 015e297a377 [SVE] Restore broken LLVM-C ABI compatability adds a1ce88b4e32 [AArch64][SVE] Implement AArch64ISD::SETCC_PRED adds 90af55d8a97 [LLD][ELF] Use offset in thin archives to disambiguate thin [...] adds 40af48101b1 [WebAssembly] Optimize splats of bitcasted vectors adds 03c44c7584b [NFC] Deduplicate comment in PromoteMemoryToRegister.cpp adds 18a855da431 [clang][slh] Add test for SLH feature checking macro adds 11aa3707e30 StoreInst should store Align, not MaybeAlign adds 08e2386dee3 Revert "Revert "[llvm][NFC] Cleanup uses of std::function i [...] adds 0d5d5a75e21 [SVE] Remove usages of VectorType::getNumElements() from PowerPC adds 96d85726b0f [libc] Move implementations of expf and exp2f from the AOR [...] adds 245679b62ea [SVE] Remove usages of VectorType::getNumElements() from ARM adds e8ea35e63f5 [clang-format] [PR44345] Long namespace closing comment is [...] adds 0eba9de71e2 [lldb/Dataformatter] Add support to CF{Dictionary,Set}Ref types adds 4e9e0488ab6 [lldb/Commands] Add ability to run shell command on the host. adds d5e9b76253d [gn build] Put HAVE_LIBZ and HAVE_ZLIB_H behind llvm_enable [...] adds 6512cc77350 [NFC,StackSafety] Rename local function adds a63eedd049b [CMake] -gen-dag-isel: add -omit-comments if neither Debug [...] new 1cff8e8de79 [MLIR] LinalgToStandard: use LINK_LIBS rather than target_l [...] new 15f0f824b36 [tests][Driver] Set `--sysroot=""` to allow `DEFAULT_SYSROO [...] new 3f5fc73a9d5 [test][ARM][CMSE] Use clang_cc1 in arm_cmse.h tests new e3e0367f9ba [CMake][AIX] Add `-bcdtors:mbr` option when building with IBM XL new 802b427f206 [MLIR] Update intrinsic test, because ptrmask changed. new eb623ae8320 [MLIR] Continue renaming of "SideEffects" new 444720c250d [MLIR][cmake] refactor lib/Interfaces/CMakeLists.txt new ec44e08940f [MLIR] Move JitRunner to live with ExecutionEngine new b31cb3aa5ee unwind: fix unwind build without heap new 675d5543d42 [ARM] Change more triples to arm-none-none-eabi. NFC
The 10 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/lib/CodeGen/CGExpr.cpp | 4 +- clang/lib/Format/NamespaceEndCommentsFixer.cpp | 20 +- clang/test/CodeGen/arm-cmse-nonsecure.c | 4 +- clang/test/CodeGen/arm-cmse-secure.c | 4 +- clang/test/Driver/darwin-header-search-libcxx.cpp | 1 + clang/test/Driver/darwin-header-search-system.cpp | 1 + clang/test/Driver/mingw-sysroot.cpp | 6 +- .../has_feature_speculative_load_hardening.cpp | 15 + clang/unittests/Format/FormatTest.cpp | 68 ++++ libc/config/linux/api.td | 2 + libc/lib/CMakeLists.txt | 2 + libc/spec/stdc.td | 3 + libc/src/math/CMakeLists.txt | 38 ++- libc/src/math/cosf.cpp | 2 +- libc/src/math/exp2f.cpp | 63 ++++ libc/src/math/exp2f.h | 18 ++ libc/src/math/exp_utils.cpp | 129 ++++++++ libc/src/math/exp_utils.h | 33 ++ libc/src/math/expf.cpp | 69 ++++ libc/src/math/expf.h | 18 ++ libc/src/math/math_utils.cpp | 27 ++ libc/src/math/math_utils.h | 82 ++++- libc/src/math/sincosf.cpp | 4 +- libc/src/math/sinf.cpp | 4 +- libc/test/src/math/CMakeLists.txt | 28 ++ libc/test/src/math/exp2f_test.cpp | 154 +++++++++ libc/test/src/math/expf_test.cpp | 146 +++++++++ libc/utils/MPFRWrapper/MPFRUtils.cpp | 6 + libc/utils/MPFRWrapper/MPFRUtils.h | 6 +- libunwind/src/DwarfParser.hpp | 2 + lld/ELF/InputFiles.cpp | 3 +- lld/test/ELF/lto/thinlto-thin-archive-collision.ll | 27 ++ lld/test/ELF/lto/thinlto.ll | 2 +- lldb/source/Commands/CommandObjectPlatform.cpp | 26 +- lldb/source/Commands/Options.td | 3 + lldb/source/Core/ValueObject.cpp | 26 ++ lldb/source/Core/ValueObjectSyntheticFilter.cpp | 8 +- lldb/source/Interpreter/CommandInterpreter.cpp | 10 + lldb/source/Plugins/Language/ObjC/NSDictionary.cpp | 15 +- lldb/source/Plugins/Language/ObjC/NSSet.cpp | 6 +- lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp | 20 ++ .../commands/platform/basic/TestPlatformCommand.py | 20 +- .../TestDataFormatterObjCNSContainer.py | 25 +- .../data-formatter/data-formatter-objc/main.m | 4 +- llvm/cmake/modules/HandleLLVMOptions.cmake | 6 + llvm/cmake/modules/TableGen.cmake | 9 + .../ThinLtoJIT/ThinLtoInstrumentationLayer.cpp | 2 +- llvm/include/llvm-c/Core.h | 36 +-- llvm/include/llvm/Analysis/InlineCost.h | 28 +- llvm/include/llvm/IR/Instructions.h | 23 +- llvm/include/llvm/IR/Intrinsics.td | 2 +- llvm/include/llvm/Transforms/Utils/Cloning.h | 14 +- llvm/lib/Analysis/InlineAdvisor.cpp | 10 +- llvm/lib/Analysis/InlineCost.cpp | 64 ++-- llvm/lib/Analysis/StackSafetyAnalysis.cpp | 52 +-- llvm/lib/AsmParser/LLParser.cpp | 6 +- llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 8 +- llvm/lib/CodeGen/GCRootLowering.cpp | 5 +- llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp | 6 +- .../CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 +- llvm/lib/CodeGen/SjLjEHPrepare.cpp | 3 +- llvm/lib/IR/Core.cpp | 6 +- llvm/lib/IR/Instructions.cpp | 39 +-- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 95 ++++-- llvm/lib/Target/AArch64/AArch64ISelLowering.h | 1 + llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td | 32 +- llvm/lib/Target/AArch64/SVEInstrFormats.td | 171 ++++------ llvm/lib/Target/AMDGPU/AMDGPUInline.cpp | 9 +- .../Target/AMDGPU/AMDGPUPrintfRuntimeBinding.cpp | 4 +- llvm/lib/Target/ARM/ARMISelLowering.cpp | 26 +- llvm/lib/Target/ARM/ARMISelLowering.h | 2 +- llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp | 16 +- llvm/lib/Target/ARM/MVEGatherScatterLowering.cpp | 28 +- llvm/lib/Target/ARM/MVETailPredication.cpp | 14 +- llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp | 2 +- llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp | 3 +- .../Target/WebAssembly/WebAssemblyISelLowering.cpp | 39 ++- .../Target/WebAssembly/WebAssemblyISelLowering.h | 5 + llvm/lib/Transforms/IPO/AlwaysInliner.cpp | 5 +- llvm/lib/Transforms/IPO/InlineSimple.cpp | 4 +- llvm/lib/Transforms/IPO/Inliner.cpp | 7 +- llvm/lib/Transforms/IPO/PartialInlining.cpp | 79 +++-- llvm/lib/Transforms/IPO/SampleProfile.cpp | 8 +- .../Transforms/InstCombine/InstCombineCalls.cpp | 14 +- .../InstCombine/InstCombineLoadStoreAlloca.cpp | 6 +- .../lib/Transforms/Scalar/DeadStoreElimination.cpp | 5 +- llvm/lib/Transforms/Scalar/GVNHoist.cpp | 5 +- .../Transforms/Scalar/RewriteStatepointsForGC.cpp | 14 +- llvm/lib/Transforms/Utils/CodeExtractor.cpp | 3 +- llvm/lib/Transforms/Utils/InlineFunction.cpp | 13 +- .../Transforms/Utils/PromoteMemoryToRegister.cpp | 5 - llvm/test/Analysis/CostModel/AArch64/store.ll | 2 +- llvm/test/Analysis/MemorySSA/invariant-groups.ll | 4 +- llvm/test/Bitcode/memInstructions.3.2.ll | 4 +- .../CodeGen/AArch64/sve-intrinsics-int-compares.ll | 360 +++++++++++++++++++++ llvm/test/CodeGen/Thumb2/mve-be.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-ldst-offset.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-ldst-postinc.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-ldst-preinc.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-loadstore.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-masked-ldst-offset.ll | 2 +- .../test/CodeGen/Thumb2/mve-masked-ldst-postinc.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-masked-ldst-preinc.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-masked-ldst.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-masked-load.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-masked-store.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-pred-bitcast.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-pred-loadstore.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-pred-spill.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-scatter-increment.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-vmovimm.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-vmovn.ll | 2 +- llvm/test/CodeGen/Thumb2/mve-widen-narrow.ll | 2 +- .../CodeGen/WebAssembly/simd-shuffle-bitcast.ll | 19 ++ llvm/test/Feature/md_on_instruction.ll | 2 +- .../MemorySanitizer/msan_kernel_basic.ll | 4 +- .../Attributor/IPConstantProp/PR26044.ll | 4 +- llvm/test/Transforms/Attributor/align.ll | 4 +- .../Transforms/Attributor/dereferenceable-2.ll | 4 +- llvm/test/Transforms/Attributor/heap_to_stack.ll | 6 +- llvm/test/Transforms/Attributor/nocapture-2.ll | 4 +- llvm/test/Transforms/Attributor/value-simplify.ll | 2 +- .../CodeGenPrepare/X86/invariant.group.ll | 4 +- .../CorrelatedValuePropagation/non-null.ll | 4 +- .../MSSA/combined-partial-overwrites.ll | 6 +- .../MSSA/multiblock-multipath-throwing.ll | 24 +- .../MSSA/multiblock-multipath.ll | 38 +-- .../MSSA/multiblock-partial.ll | 6 +- .../DeadStoreElimination/MSSA/multiblock-simple.ll | 42 +-- .../MSSA/simple-preservation.ll | 4 +- .../Transforms/DeadStoreElimination/MSSA/simple.ll | 28 +- .../DeadStoreElimination/merge-stores.ll | 22 +- llvm/test/Transforms/EarlyCSE/guards.ll | 72 ++--- llvm/test/Transforms/EarlyCSE/invariant-loads.ll | 4 +- llvm/test/Transforms/EarlyCSE/invariant.start.ll | 16 +- llvm/test/Transforms/GVN/invariant.group.ll | 2 +- llvm/test/Transforms/GVN/non-integral-pointers.ll | 42 +-- llvm/test/Transforms/GVN/vscale.ll | 68 ++-- llvm/test/Transforms/InstCombine/store.ll | 2 +- llvm/test/Transforms/InstCombine/storemerge-dbg.ll | 2 +- .../InterleavedAccess/ARM/interleaved-accesses.ll | 6 +- .../LoopIdiom/X86/unordered-atomic-memcpy.ll | 4 +- .../complete_unroll_profitability_with_assume.ll | 20 +- llvm/test/Transforms/NewGVN/pr31594.ll | 6 +- llvm/test/Transforms/NewGVN/pr31613.ll | 12 +- llvm/test/Transforms/NewGVN/pr33204.ll | 6 +- llvm/test/Transforms/NewGVN/pr33720.ll | 14 +- .../SLPVectorizer/X86/schedule_budget.ll | 8 +- llvm/test/Transforms/Util/assume-builder.ll | 22 +- llvm/test/Verifier/tbaa.ll | 40 +-- llvm/tools/llvm-c-test/echo.cpp | 2 +- .../gn/secondary/llvm/include/llvm/Config/BUILD.gn | 18 +- .../standalone/include/Standalone/StandaloneOps.h | 2 +- mlir/examples/toy/Ch2/CMakeLists.txt | 2 +- mlir/examples/toy/Ch2/include/toy/Dialect.h | 2 +- mlir/examples/toy/Ch3/CMakeLists.txt | 2 +- mlir/examples/toy/Ch3/include/toy/Dialect.h | 2 +- mlir/examples/toy/Ch4/CMakeLists.txt | 2 +- mlir/examples/toy/Ch4/include/toy/Dialect.h | 2 +- mlir/examples/toy/Ch5/CMakeLists.txt | 2 +- mlir/examples/toy/Ch5/include/toy/Dialect.h | 2 +- mlir/examples/toy/Ch6/CMakeLists.txt | 2 +- mlir/examples/toy/Ch6/include/toy/Dialect.h | 2 +- mlir/examples/toy/Ch7/CMakeLists.txt | 2 +- mlir/examples/toy/Ch7/include/toy/Dialect.h | 2 +- mlir/include/mlir/Dialect/AVX512/AVX512Dialect.h | 2 +- mlir/include/mlir/Dialect/Affine/IR/AffineOps.h | 2 +- mlir/include/mlir/Dialect/GPU/GPUDialect.h | 2 +- mlir/include/mlir/Dialect/LLVMIR/LLVMDialect.h | 2 +- mlir/include/mlir/Dialect/LLVMIR/NVVMDialect.h | 2 +- mlir/include/mlir/Dialect/LLVMIR/ROCDLDialect.h | 2 +- mlir/include/mlir/Dialect/Linalg/IR/LinalgOps.h | 2 +- mlir/include/mlir/Dialect/Quant/QuantOps.h | 2 +- mlir/include/mlir/Dialect/SCF/SCF.h | 2 +- mlir/include/mlir/Dialect/SPIRV/SPIRVOps.h | 2 +- mlir/include/mlir/Dialect/Shape/IR/Shape.h | 2 +- mlir/include/mlir/Dialect/StandardOps/IR/Ops.h | 2 +- mlir/include/mlir/Dialect/Vector/VectorOps.h | 2 +- .../mlir/{Support => ExecutionEngine}/JitRunner.h | 0 .../{SideEffects.h => SideEffectInterfaces.h} | 2 +- .../lib/Conversion/LinalgToStandard/CMakeLists.txt | 5 +- mlir/lib/Dialect/AVX512/CMakeLists.txt | 2 +- mlir/lib/Dialect/Affine/EDSC/CMakeLists.txt | 2 +- mlir/lib/Dialect/Affine/IR/CMakeLists.txt | 2 +- mlir/lib/Dialect/Affine/Transforms/CMakeLists.txt | 2 +- mlir/lib/Dialect/GPU/CMakeLists.txt | 2 +- mlir/lib/Dialect/LLVMIR/CMakeLists.txt | 8 +- mlir/lib/Dialect/Linalg/IR/CMakeLists.txt | 2 +- mlir/lib/Dialect/Quant/CMakeLists.txt | 2 +- mlir/lib/Dialect/SCF/CMakeLists.txt | 2 +- mlir/lib/Dialect/SPIRV/CMakeLists.txt | 2 +- mlir/lib/Dialect/Shape/CMakeLists.txt | 2 +- mlir/lib/Dialect/StandardOps/CMakeLists.txt | 2 +- mlir/lib/Dialect/Vector/CMakeLists.txt | 2 +- mlir/lib/ExecutionEngine/CMakeLists.txt | 26 ++ .../lib/{Support => ExecutionEngine}/JitRunner.cpp | 2 +- mlir/lib/Interfaces/CMakeLists.txt | 104 ++---- .../{SideEffects.cpp => SideEffectInterfaces.cpp} | 4 +- mlir/lib/Support/CMakeLists.txt | 28 -- mlir/lib/Transforms/Inliner.cpp | 2 +- mlir/lib/Transforms/LoopInvariantCodeMotion.cpp | 2 +- mlir/lib/Transforms/SCCP.cpp | 2 +- .../Utils/GreedyPatternRewriteDriver.cpp | 2 +- mlir/lib/Transforms/Utils/RegionUtils.cpp | 2 +- mlir/test/lib/Dialect/Test/TestDialect.h | 2 +- mlir/test/mlir-tblgen/llvm-intrinsics.td | 5 +- mlir/tools/mlir-cpu-runner/mlir-cpu-runner.cpp | 4 +- mlir/tools/mlir-cuda-runner/mlir-cuda-runner.cpp | 2 +- .../mlir-vulkan-runner/mlir-vulkan-runner.cpp | 2 +- 209 files changed, 2371 insertions(+), 998 deletions(-) create mode 100644 clang/test/Lexer/has_feature_speculative_load_hardening.cpp create mode 100644 libc/src/math/exp2f.cpp create mode 100644 libc/src/math/exp2f.h create mode 100644 libc/src/math/exp_utils.cpp create mode 100644 libc/src/math/exp_utils.h create mode 100644 libc/src/math/expf.cpp create mode 100644 libc/src/math/expf.h create mode 100644 libc/src/math/math_utils.cpp create mode 100644 libc/test/src/math/exp2f_test.cpp create mode 100644 libc/test/src/math/expf_test.cpp create mode 100644 lld/test/ELF/lto/thinlto-thin-archive-collision.ll create mode 100644 llvm/test/CodeGen/WebAssembly/simd-shuffle-bitcast.ll rename mlir/include/mlir/{Support => ExecutionEngine}/JitRunner.h (100%) rename mlir/include/mlir/Interfaces/{SideEffects.h => SideEffectInterfaces.h} (99%) rename mlir/lib/{Support => ExecutionEngine}/JitRunner.cpp (99%) rename mlir/lib/Interfaces/{SideEffects.cpp => SideEffectInterfaces.cpp} (97%)