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 49e978f780a hello, clang adds a61641ef400 [analyzer] Teach scan-build to find clang when installed in [...] adds 7097e83dab7 [GlobalISel] Make isel verification checks of vregs run und [...] adds 632c217921c [WebAssembly] Error on R_WASM_MEMORY_ADDR relocations again [...] adds 769b73738d7 [TSan][libdispatch] Configure libdispatch lit tests adds a957f47e0a3 [ADT] Make SmallVector emplace_back return a reference adds a41250c7be5 [WebAssembly] Irreducible control flow rewrite adds 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 +- clang/tools/scan-build/bin/scan-build | 23 +- compiler-rt/test/tsan/libdispatch/lit.local.cfg | 7 +- lld/test/wasm/shared.ll | 24 +- lld/test/wasm/undefined-data.ll | 16 + lld/wasm/Writer.cpp | 66 ++- llvm/include/llvm/ADT/SmallVector.h | 4 +- llvm/include/llvm/IR/IntrinsicsWebAssembly.td | 2 +- llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp | 8 +- 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 ++- .../WebAssemblyFixIrreducibleControlFlow.cpp | 525 +++++++++++---------- .../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 +- .../CodeGen/WebAssembly/irreducible-cfg-nested.ll | 63 --- .../CodeGen/WebAssembly/irreducible-cfg-nested2.ll | 39 -- llvm/test/CodeGen/WebAssembly/irreducible-cfg.ll | 103 +++- llvm/test/CodeGen/WebAssembly/wasmehprepare.ll | 39 +- llvm/test/CodeGen/X86/oddshuffles.ll | 54 +++ llvm/test/CodeGen/X86/pr34177.ll | 20 +- llvm/utils/gn/secondary/llvm/unittests/IR/BUILD.gn | 1 + 52 files changed, 1559 insertions(+), 754 deletions(-) create mode 100644 lld/test/wasm/undefined-data.ll 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 delete mode 100644 llvm/test/CodeGen/WebAssembly/irreducible-cfg-nested.ll delete mode 100644 llvm/test/CodeGen/WebAssembly/irreducible-cfg-nested2.ll