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_LTO in repository toolchain/ci/llvm-project.
from 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. adds b18e314a7cb [RISCV] Fix RISCVAsmParser::ParseRegister and add tests adds 997947961a0 [RISCV][NFC] Factor out matchRegisterNameHelper in RISCVAsm [...] new 6778b53e957 [ELF] De-virtualize findOrphanPos, excludeLibs and handleAR [...]
The 1 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/CGDecl.cpp | 2 +- clang/test/CodeGenCXX/auto-var-init.cpp | 6 + lld/ELF/Driver.cpp | 3 +- lld/ELF/Relocations.cpp | 3 +- lld/ELF/Writer.cpp | 3 +- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 4 +- 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 ++++++- llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp | 32 ++-- llvm/lib/Target/X86/X86ISelLowering.cpp | 43 +++--- .../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/X86/oddshuffles.ll | 54 +++++++ llvm/test/CodeGen/X86/pr34177.ll | 20 +-- llvm/test/CodeGen/X86/widen_load-2.ll | 12 +- llvm/test/MC/RISCV/cfi-regs-invalid.s | 7 + llvm/test/MC/RISCV/cfi-regs-valid.s | 137 +++++++++++++++++ 26 files changed, 1033 insertions(+), 220 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 create mode 100644 llvm/test/MC/RISCV/cfi-regs-invalid.s create mode 100644 llvm/test/MC/RISCV/cfi-regs-valid.s