Skip to content

Commit

Permalink
llvm: Update baseline to 53ea5ffcb38d428e446d357f310e9c28957eaec7
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 22, 2025
1 parent a9c748a commit b30978d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/llvm-project
Submodule llvm-project updated 94 files
+4 −0 clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
+144 −3 clang/lib/Analysis/ExprMutationAnalyzer.cpp
+395 −0 clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
+1 −0 lldb/include/lldb/API/SBProcess.h
+26 −2 lldb/include/lldb/Target/Process.h
+7 −0 lldb/include/lldb/Target/StopInfo.h
+4 −5 lldb/include/lldb/Target/Thread.h
+5 −1 lldb/include/lldb/Target/ThreadList.h
+13 −0 lldb/include/lldb/Target/ThreadPlan.h
+2 −0 lldb/include/lldb/Target/ThreadPlanBase.h
+6 −0 lldb/include/lldb/lldb-enumerations.h
+3 −2 lldb/packages/Python/lldbsuite/test/gdbclientutils.py
+175 −0 lldb/packages/Python/lldbsuite/test/lldbgdbproxy.py
+492 −0 lldb/packages/Python/lldbsuite/test/lldbreverse.py
+2 −0 lldb/packages/Python/lldbsuite/test/lldbtest.py
+9 −5 lldb/packages/Python/lldbsuite/test/tools/lldb-server/lldbgdbserverutils.py
+12 −0 lldb/source/API/SBProcess.cpp
+2 −0 lldb/source/API/SBThread.cpp
+2 −1 lldb/source/Interpreter/CommandInterpreter.cpp
+3 −0 lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
+7 −1 lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
+1 −1 lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.h
+8 −1 lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
+1 −1 lldb/source/Plugins/Process/Windows/Common/ProcessWindows.h
+20 −0 lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
+6 −0 lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
+1 −0 lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
+85 −13 lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+3 −1 lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
+7 −2 lldb/source/Plugins/Process/scripted/ScriptedProcess.cpp
+1 −1 lldb/source/Plugins/Process/scripted/ScriptedProcess.h
+25 −14 lldb/source/Target/Process.cpp
+28 −0 lldb/source/Target/StopInfo.cpp
+6 −3 lldb/source/Target/Thread.cpp
+29 −3 lldb/source/Target/ThreadList.cpp
+4 −0 lldb/source/Target/ThreadPlanBase.cpp
+3 −0 lldb/test/API/functionalities/reverse-execution/Makefile
+149 −0 lldb/test/API/functionalities/reverse-execution/TestReverseContinueBreakpoints.py
+31 −0 lldb/test/API/functionalities/reverse-execution/TestReverseContinueNotSupported.py
+130 −0 lldb/test/API/functionalities/reverse-execution/TestReverseContinueWatchpoints.py
+25 −0 lldb/test/API/functionalities/reverse-execution/main.c
+3 −0 lldb/tools/lldb-dap/JSONUtils.cpp
+1 −0 lldb/tools/lldb-dap/LLDBUtils.cpp
+0 −2 llvm/include/llvm/SandboxIR/Type.h
+0 −4 llvm/lib/SandboxIR/Type.cpp
+32 −10 llvm/lib/Target/X86/X86FrameLowering.cpp
+82 −0 llvm/test/CodeGen/X86/stack-clash-extra-huge.ll
+84 −0 llvm/test/CodeGen/X86/stack-clash-huge.ll
+2 −2 llvm/unittests/SandboxIR/SandboxIRTest.cpp
+0 −4 llvm/unittests/SandboxIR/TypesTest.cpp
+3 −1 mlir/cmake/modules/AddMLIR.cmake
+2 −0 mlir/lib/CAPI/ExecutionEngine/CMakeLists.txt
+5 −2 mlir/lib/ExecutionEngine/CMakeLists.txt
+2 −2 mlir/lib/ExecutionEngine/SparseTensor/CMakeLists.txt
+3 −1 mlir/test/lib/Analysis/CMakeLists.txt
+2 −2 mlir/test/lib/Conversion/ConvertToSPIRV/CMakeLists.txt
+3 −1 mlir/test/lib/Conversion/FuncToLLVM/CMakeLists.txt
+2 −2 mlir/test/lib/Conversion/MathToVCIX/CMakeLists.txt
+3 −1 mlir/test/lib/Conversion/OneToNTypeConversion/CMakeLists.txt
+2 −2 mlir/test/lib/Conversion/VectorToSPIRV/CMakeLists.txt
+3 −1 mlir/test/lib/Dialect/Affine/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Arith/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/ArmNeon/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/ArmSME/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Bufferization/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/ControlFlow/CMakeLists.txt
+3 −1 mlir/test/lib/Dialect/DLTI/CMakeLists.txt
+3 −1 mlir/test/lib/Dialect/Func/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/GPU/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/LLVM/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Linalg/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Math/CMakeLists.txt
+3 −1 mlir/test/lib/Dialect/MemRef/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Mesh/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/NVGPU/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/SCF/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/SPIRV/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Shape/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Tensor/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Test/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/TestDyn/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Tosa/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Transform/CMakeLists.txt
+2 −2 mlir/test/lib/Dialect/Vector/CMakeLists.txt
+2 −2 mlir/test/lib/IR/CMakeLists.txt
+2 −2 mlir/test/lib/Interfaces/LoopLikeInterface/CMakeLists.txt
+2 −2 mlir/test/lib/Interfaces/TilingInterface/CMakeLists.txt
+2 −2 mlir/test/lib/Pass/CMakeLists.txt
+2 −2 mlir/test/lib/Reducer/CMakeLists.txt
+2 −2 mlir/test/lib/Rewrite/CMakeLists.txt
+3 −1 mlir/test/lib/Tools/PDLL/CMakeLists.txt
+2 −2 mlir/test/lib/Transforms/CMakeLists.txt
+2 −2 mlir/test/python/lib/CMakeLists.txt
+2 −2 mlir/tools/mlir-opt/CMakeLists.txt

0 comments on commit b30978d

Please sign in to comment.