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-lts-allmodconfig in repository toolchain/ci/llvm-monorepo.
from 2a35c9946102 [ORC] Rename ORC layers to make the "new" ORC layers the default. adds 9aeded27ed45 [X86] Remove some isel patterns that shouldn't be possible. adds 817f239cda5d [OPENMP][NVPTX]Increment iterator only when it is used, NFC. adds ea9d16c41cd6 [WebAssembly] LSDA info generation adds 760a24e08728 [libcxx] Remove custom CMake code targeting Mac OS 10.6 adds a1c6d1723c71 [hot-cold-split] fix failing testcases adds 7ed2a62065e2 [XRay] Encapsulate all FD log related logic into a class adds 4c1b8b80946f [XRay] Use fully qualified name for LogWriter
No new revisions were added by this update.
Summary of changes: clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 3 +- compiler-rt/lib/xray/xray_basic_logging.cc | 66 +++--- compiler-rt/lib/xray/xray_fdr_logging.cc | 18 +- compiler-rt/lib/xray/xray_profiling.cc | 11 +- compiler-rt/lib/xray/xray_utils.cc | 66 ++---- compiler-rt/lib/xray/xray_utils.h | 28 ++- libcxx/docs/ReleaseNotes.rst | 2 +- libcxx/lib/CMakeLists.txt | 11 +- llvm/include/llvm/CodeGen/MachineFunction.h | 22 +- llvm/include/llvm/IR/IntrinsicsWebAssembly.td | 3 +- llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 3 +- llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt | 1 + llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp | 10 +- llvm/lib/CodeGen/AsmPrinter/EHStreamer.h | 11 +- llvm/lib/CodeGen/AsmPrinter/WasmException.cpp | 81 +++++++ llvm/lib/CodeGen/AsmPrinter/WasmException.h | 42 ++++ llvm/lib/CodeGen/MachineFunction.cpp | 45 ++-- .../CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 10 +- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 83 ++++--- llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 4 + llvm/lib/CodeGen/WasmEHPrepare.cpp | 2 +- llvm/lib/MC/MCObjectFileInfo.cpp | 6 + llvm/lib/MC/WasmObjectWriter.cpp | 4 +- .../Target/WebAssembly/WebAssemblyISelLowering.cpp | 15 +- .../lib/Target/WebAssembly/WebAssemblyInstrInfo.td | 2 + .../Target/WebAssembly/WebAssemblyMCInstLower.cpp | 7 + llvm/lib/Target/X86/X86InstrAVX512.td | 2 - llvm/lib/Target/X86/X86InstrSSE.td | 4 - llvm/test/CodeGen/WebAssembly/eh-lsda.ll | 239 +++++++++++++++++++++ llvm/test/CodeGen/WebAssembly/wasmehprepare.ll | 6 +- llvm/test/Transforms/HotColdSplit/split-cold-2.ll | 2 +- .../HotColdSplit/split-out-dbg-val-of-arg.ll | 14 +- 32 files changed, 631 insertions(+), 192 deletions(-) create mode 100644 llvm/lib/CodeGen/AsmPrinter/WasmException.cpp create mode 100644 llvm/lib/CodeGen/AsmPrinter/WasmException.h create mode 100644 llvm/test/CodeGen/WebAssembly/eh-lsda.ll