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-aarch64-spec2k6-Os in repository toolchain/ci/llvm-project.
from c51470e7ef1 gn build: Merge r356305. adds b47a18cd4be [WebAssembly] Method order change in LateEHPrepare (NFC) adds 66ce419468c [WebAssembly] Make rethrow take an except_ref type argument adds 7e66a50bb40 [WebAssembly] Use rethrow intrinsic in the rethrow block adds f962485adad [analyzer] ConditionBRVisitor: Remove GDM checking adds 0fe67a61cd4 [analyzer] ConditionBRVisitor: Unknown condition evaluation [...] adds e282b30c58e Revert "[analyzer] ConditionBRVisitor: Unknown condition ev [...] adds 17c8ca8f1ff Revert "[analyzer] ConditionBRVisitor: Remove GDM checking" adds cf0b4e32eb8 [analyzer] ConditionBRVisitor: Remove GDM checking adds 9ea2f9079d0 [analyzer] ConditionBRVisitor: Unknown condition evaluation [...] adds 0f472e1d01d [X86] Add SimplifyDemandedBitsForTargetNode support for PEX [...] adds f2c53b5d6c5 [X86][SSE] Constant fold PEXTRB/PEXTRW/EXTRACT_VECTOR_ELT nodes. adds 6db6b56a5c8 [BPF] Add BTF Var and DataSec Support adds 3b0a6c69ee5 [DAGCombine] combineShuffleOfScalars - handle non-zero SCAL [...] adds 68b4673feaa CodeGen: Preserve packed attribute in constStructWithPadding.
No new revisions were added by this update.
Summary of changes: clang/include/clang/Basic/BuiltinsWebAssembly.def | 2 +- .../Core/PathSensitive/ConstraintManager.h | 3 + .../Core/PathSensitive/ProgramState.h | 8 +- .../Core/PathSensitive/SMTConstraintManager.h | 5 + clang/lib/CodeGen/CGBuiltin.cpp | 4 +- clang/lib/CodeGen/CGDecl.cpp | 2 +- clang/lib/CodeGen/CGException.cpp | 4 +- .../StaticAnalyzer/Core/BugReporterVisitors.cpp | 24 +-- .../StaticAnalyzer/Core/RangeConstraintManager.cpp | 5 + clang/test/Analysis/diagnostics/macros.cpp | 3 +- clang/test/Analysis/uninit-vals.m | 11 +- clang/test/CodeGen/builtins-wasm.c | 8 +- clang/test/CodeGenCXX/auto-var-init.cpp | 6 + clang/test/CodeGenCXX/wasm-eh.cpp | 10 +- llvm/include/llvm/IR/IntrinsicsWebAssembly.td | 2 +- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 4 +- .../CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 14 ++ llvm/lib/CodeGen/WasmEHPrepare.cpp | 55 +++---- llvm/lib/IR/Verifier.cpp | 3 +- llvm/lib/Target/BPF/BTF.def | 2 + llvm/lib/Target/BPF/BTF.h | 28 +++- llvm/lib/Target/BPF/BTFDebug.cpp | 164 +++++++++++++++++---- llvm/lib/Target/BPF/BTFDebug.h | 55 ++++++- .../Target/WebAssembly/WebAssemblyInstrControl.td | 8 +- .../WebAssembly/WebAssemblyLateEHPrepare.cpp | 95 ++++++------ llvm/lib/Target/X86/X86ISelLowering.cpp | 71 ++++++--- .../CodeGen/BPF/BTF/global-var-sec-readonly.ll | 73 +++++++++ llvm/test/CodeGen/BPF/BTF/global-var-sec.ll | 69 +++++++++ .../{static-var.ll => static-var-inited-sec.ll} | 45 ++++-- .../BTF/{static-var.ll => static-var-inited.ll} | 45 ++++-- .../{static-var.ll => static-var-readonly-sec.ll} | 111 +++++++++----- .../BTF/{static-var.ll => static-var-readonly.ll} | 111 +++++++++----- .../BPF/BTF/{static-var.ll => static-var-sec.ll} | 45 ++++-- .../CodeGen/BPF/BTF/static-var-zerolen-array.ll | 142 ++++++++++++++++++ llvm/test/CodeGen/BPF/BTF/static-var.ll | 37 ++++- llvm/test/CodeGen/WebAssembly/cfg-stackify-eh.ll | 22 ++- llvm/test/CodeGen/WebAssembly/exception.ll | 25 +--- llvm/test/CodeGen/WebAssembly/wasmehprepare.ll | 39 +---- llvm/test/CodeGen/X86/oddshuffles.ll | 54 +++++++ llvm/test/CodeGen/X86/pr34177.ll | 20 +-- 40 files changed, 1072 insertions(+), 362 deletions(-) create mode 100644 llvm/test/CodeGen/BPF/BTF/global-var-sec-readonly.ll create mode 100644 llvm/test/CodeGen/BPF/BTF/global-var-sec.ll copy llvm/test/CodeGen/BPF/BTF/{static-var.ll => static-var-inited-sec.ll} (77%) copy llvm/test/CodeGen/BPF/BTF/{static-var.ll => static-var-inited.ll} (78%) copy llvm/test/CodeGen/BPF/BTF/{static-var.ll => static-var-readonly-sec.ll} (56%) copy llvm/test/CodeGen/BPF/BTF/{static-var.ll => static-var-readonly.ll} (57%) copy llvm/test/CodeGen/BPF/BTF/{static-var.ll => static-var-sec.ll} (77%) create mode 100644 llvm/test/CodeGen/BPF/BTF/static-var-zerolen-array.ll