https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/119171
>From 2e3738eb7ed356fe4f9ee24a31af55a01b18bd08 Mon Sep 17 00:00:00 2001
From: Jason Molenda
Date: Sun, 8 Dec 2024 22:21:22 -0800
Subject: [PATCH 1/2] [lldb][debugserver] Read/write SME registers on arm64
T
https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/119171
>From 2e3738eb7ed356fe4f9ee24a31af55a01b18bd08 Mon Sep 17 00:00:00 2001
From: Jason Molenda
Date: Sun, 8 Dec 2024 22:21:22 -0800
Subject: [PATCH 1/3] [lldb][debugserver] Read/write SME registers on arm64
T
jasonmolenda wrote:
One difference from debugserver and lldb-server is that lldb-server provides
"vg" and "svg" registers (vector granule, streaming vector granule, depending
on Streaming mode) which is the vector length in 8-byte granules. On Darwin,
debugserver provides only "svl", in bytes
https://github.com/jasonmolenda edited
https://github.com/llvm/llvm-project/pull/119171
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
74e8a37ff32e599fd40858e0d6c7e531dcbe4e03...2e3738eb7ed356fe4f9ee24a31af55a01b18bd08
lldb/
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 74e8a37ff32e599fd40858e0d6c7e531dcbe4e03
2e3738eb7ed356fe4f9ee24a31af55a01b18bd08 --e
https://github.com/jasonmolenda edited
https://github.com/llvm/llvm-project/pull/119171
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jason Molenda (jasonmolenda)
Changes
The Apple M4 line of cores includes the Scalable Matrix Extension (SME)
feature. The M4s do not implement Scalable Vector Extension (SVE), although the
processor is in Streaming SVE Mode when the SME is
https://github.com/jasonmolenda created
https://github.com/llvm/llvm-project/pull/119171
The Apple M4 line of cores includes the Scalable Matrix Extension (SME)
feature. The M4s do not implement Scalable Vector Extension (SVE), although the
processor is in Streaming SVE Mode when the SME is be
https://github.com/DhruvSrivastavaX edited
https://github.com/llvm/llvm-project/pull/118160
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DhruvSrivastavaX edited
https://github.com/llvm/llvm-project/pull/118160
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -0,0 +1,130 @@
+//===-- NativeProcessAIX.h -- -*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,130 @@
+//===-- NativeProcessAIX.h -- -*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,248 @@
+//===-- NativeProcessAIX.cpp ===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,248 @@
+//===-- NativeProcessAIX.cpp ===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,248 @@
+//===-- NativeProcessAIX.cpp ===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
DhruvSrivastavaX wrote:
> I think we can make some progress here, but I don't think we'll get far
> without ProcessLauncher support. At some point, not too far from now, I'm
> going to start asking questions like "which tests does this fix", and I don't
> think you'll be able to run any of the
@@ -0,0 +1,213 @@
+//===-- HostInfoAIX.cpp -===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
@@ -0,0 +1,213 @@
+//===-- HostInfoAIX.cpp -===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
https://github.com/ashgti edited
https://github.com/llvm/llvm-project/pull/119148
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
Changes
This was suggested in a previous patch after the commit was already submitted.
---
Full diff: https://github.com/llvm/llvm-project/pull/119148.diff
1 Files Affected:
- (modified) lldb/unittests/TestingSuppo
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/119148
This was suggested in a previous patch after the commit was already submitted.
>From 4ad591f11b2dec8cf380ecbc02d18a6e6a0101a6 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Sun, 8 Dec 2024 12:15:14 -0800
Sub
https://github.com/DhruvSrivastavaX updated
https://github.com/llvm/llvm-project/pull/116338
>From 0c63800bdcbadcfceed4c9a81305eda7d5a15960 Mon Sep 17 00:00:00 2001
From: Dhruv-Srivastava
Date: Fri, 15 Nov 2024 02:16:31 -0600
Subject: [PATCH 1/6] Added XCOFF Header Parsing
---
.../ObjectFile/
DhruvSrivastavaX wrote:
Yes, I did try a few things while rewriting but i was seeing some stray values
which were not actually present in the raw file.
So just want to make sure that I am using it correctly.
https://github.com/llvm/llvm-project/pull/116338
_
skuznetsov wrote:
@clayborg Thank you, Greg!
Lots of that info is not described anywhere, no wonder I missed it.
Let me try your fixes in my provider, and I will get back to you.
By some reason my provider works in CLI lldb, but not in lldb-dap, but I will
check if your suggestions will help to
25 matches
Mail list logo