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-aarch64-mainline-allmodconfig in repository toolchain/ci/llvm-project.
from 179c80117c9 [LoopUnroll] Remove dead NextBlocks argument (NFC). adds cec20db5882 [Inlining] Set inline-deferral-scale to 2. adds 3a2df3bad07 [Clang][test] fix tests when using external assembler. adds 9a8d7bd7704 [clang][test] fix tests for external assemblers adds 793cc518b94 [PowerPC] Prevent legalization loop from promoting SELECT_C [...] adds 9d55e4ee136 Make explicit -fno-semantic-interposition (in -fpic mode) i [...] adds d8e0ad9620c [clang][test] fix tests for external assemblers adds eeedbd03361 [clangd] Make use of SourceOrder to find first initializer [...] adds 34e39eb2adc [clangd] Change PreambleOnlyAction with content truncation adds e6e89875b04 [NFC][PowerPC] Add a new case to test two-address verification adds 61f72dd8ace [FPEnv] Small fixes to implementation of flt.rounds adds 872c5fb1432 [AsmPrinter] Don't generate .Lfoo$local for -fno-PIC and -fPIE adds c34936dae73 [lldb] s/dyn_cast/isa adds 1f72d5880e3 [CostModel] Check for free intrinsics in BasicTTI adds 80cc43b420a [AArch64] Set i32 ISD::MULHU/S to Expand instead of Legal. adds 1abb883a048 [clangd] Don't traverse the AST within uninteresting files [...] adds 64cfb8a864c [NFC][ARM] Add intrinsic code size runs adds 871556a4945 [CostModel] Unify Intrinsic Costs. adds 98cad555e29 [Clang][AArch64] Capturing proper pointer alignment for Neo [...]
No new revisions were added by this update.
Summary of changes: clang-tools-extra/clangd/Preamble.cpp | 29 +- clang-tools-extra/clangd/index/IndexAction.cpp | 25 +- .../clangd/refactor/tweaks/DefineOutline.cpp | 10 +- .../clangd/unittests/IndexActionTests.cpp | 37 +- .../clangd/unittests/PreambleTests.cpp | 5 + clang-tools-extra/clangd/unittests/TweakTests.cpp | 46 +- clang/include/clang/Basic/Builtins.def | 4 +- clang/include/clang/Basic/LangOptions.def | 1 + clang/include/clang/Driver/Options.td | 2 +- clang/include/clang/Index/IndexingAction.h | 17 +- clang/include/clang/Index/IndexingOptions.h | 6 + clang/lib/CodeGen/CGBuiltin.cpp | 12 +- clang/lib/CodeGen/CodeGenModule.cpp | 3 + clang/lib/Driver/ToolChains/Clang.cpp | 10 +- clang/lib/Frontend/CompilerInvocation.cpp | 3 + clang/lib/Index/IndexDecl.cpp | 3 + clang/lib/Index/IndexingAction.cpp | 15 + clang/test/CodeGen/aarch64-neon-intrinsics.c | 52 +- clang/test/CodeGen/semantic-interposition.c | 4 + clang/test/Driver/cc1-spawnprocess.c | 15 +- clang/test/Driver/debug-prefix-map.S | 4 +- clang/test/Driver/flang/flang.f90 | 2 +- clang/test/Driver/flang/flang_ucase.F90 | 2 +- clang/test/Driver/fsemantic-interposition.c | 6 +- clang/test/Driver/modules-ts.cpp | 6 +- .../Plugins/TypeSystem/Clang/TypeSystemClang.cpp | 2 +- llvm/docs/LangRef.rst | 40 + llvm/include/llvm/Analysis/TargetTransformInfo.h | 40 +- .../llvm/Analysis/TargetTransformInfoImpl.h | 37 +- llvm/include/llvm/CodeGen/BasicTTIImpl.h | 73 +- llvm/include/llvm/IR/GlobalValue.h | 1 + llvm/include/llvm/IR/Intrinsics.td | 9 +- llvm/include/llvm/IR/Module.h | 1 + llvm/lib/Analysis/InlineAdvisor.cpp | 2 +- llvm/lib/Analysis/TargetTransformInfo.cpp | 27 +- llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 12 +- llvm/lib/IR/Globals.cpp | 6 + llvm/lib/IR/Module.cpp | 7 + llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | 4 + .../Target/AMDGPU/AMDGPUTargetTransformInfo.cpp | 3 + llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 1 + llvm/lib/Target/TargetMachine.cpp | 8 + llvm/lib/Target/X86/X86TargetTransformInfo.cpp | 6 + llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 8 +- llvm/test/Analysis/CostModel/ARM/arith-overflow.ll | 1023 +++++++++++++------- llvm/test/Analysis/CostModel/ARM/arith-ssat.ll | 339 ++++--- llvm/test/Analysis/CostModel/ARM/arith-usat.ll | 339 ++++--- llvm/test/Analysis/CostModel/ARM/reduce-add.ll | 223 ++--- .../test/Analysis/CostModel/X86/free-intrinsics.ll | 78 ++ .../CostModel/free-intrinsics-datalayout.ll | 80 ++ .../Analysis/CostModel/free-intrinsics-no_info.ll | 78 ++ llvm/test/CodeGen/AArch64/fp16_intrinsic_lane.ll | 34 - .../machine-outliner-retaddr-sign-sp-mod.ll | 2 - llvm/test/CodeGen/PowerPC/pr45709.ll | 58 ++ llvm/test/CodeGen/PowerPC/two-address-crash.mir | 45 + llvm/test/CodeGen/X86/code-model-elf.ll | 36 +- llvm/test/CodeGen/X86/emutls.ll | 8 +- .../CodeGen/X86/indirect-branch-tracking-eh2.ll | 1 - llvm/test/CodeGen/X86/lifetime-alias.ll | 4 +- llvm/test/CodeGen/X86/linux-preemption.ll | 15 +- llvm/test/CodeGen/X86/oddsubvector.ll | 176 ++-- llvm/test/CodeGen/X86/pr38795.ll | 2 +- .../CodeGen/X86/semantic-interposition-comdat.ll | 7 +- .../X86/semantic-interposition-infer-dsolocal.ll | 46 + llvm/test/CodeGen/X86/tls.ll | 8 +- 65 files changed, 2134 insertions(+), 1074 deletions(-) create mode 100644 llvm/test/Analysis/CostModel/X86/free-intrinsics.ll create mode 100644 llvm/test/Analysis/CostModel/free-intrinsics-datalayout.ll create mode 100644 llvm/test/Analysis/CostModel/free-intrinsics-no_info.ll create mode 100644 llvm/test/CodeGen/PowerPC/pr45709.ll create mode 100644 llvm/test/CodeGen/PowerPC/two-address-crash.mir create mode 100644 llvm/test/CodeGen/X86/semantic-interposition-infer-dsolocal.ll