llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Kazu Hirata (kazutakahirata)
Changes
Heterogenous lookups allow us to call find with StringRef, avoiding a
temporary heap allocation of std::string.
---
Full diff: https://github.com/llvm/llvm-project/pull/115590.diff
2 Files Affected:
https://github.com/kazutakahirata created
https://github.com/llvm/llvm-project/pull/115590
Heterogenous lookups allow us to call find with StringRef, avoiding a
temporary heap allocation of std::string.
>From 1ae19de089b41bda586403d6379e6f644654e4ba Mon Sep 17 00:00:00 2001
From: Kazu Hirata
@@ -154,7 +154,7 @@ DecodeMemoryReference(llvm::StringRef memoryReference) {
std::vector GetStrings(const llvm::json::Object *obj,
llvm::StringRef key) {
std::vector strs;
- auto json_array = obj->getArray(key);
+ const auto *json_array =
@@ -1465,11 +1462,7 @@ CreateRunInTerminalReverseRequest(const
llvm::json::Object &launch_request,
llvm::StringRef key = envs.GetNameAtIndex(index);
llvm::StringRef value = envs.GetValueAtIndex(index);
-if (key.empty())
- g_dap.SendOutput(OutputType::Stderr,
@@ -1465,11 +1462,7 @@ CreateRunInTerminalReverseRequest(const
llvm::json::Object &launch_request,
llvm::StringRef key = envs.GetNameAtIndex(index);
llvm::StringRef value = envs.GetValueAtIndex(index);
-if (key.empty())
- g_dap.SendOutput(OutputType::Stderr,
@@ -154,7 +154,7 @@ DecodeMemoryReference(llvm::StringRef memoryReference) {
std::vector GetStrings(const llvm::json::Object *obj,
llvm::StringRef key) {
std::vector strs;
- auto json_array = obj->getArray(key);
+ const auto *json_array =
https://github.com/vogelsgesang approved this pull request.
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/vogelsgesang edited
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -394,7 +394,7 @@ bool ClassDescriptorV2::relative_list_entry_t::Read(Process
*process,
lldb::offset_t cursor = 0;
uint64_t raw_entry = extractor.GetU64_unchecked(&cursor);
m_image_index = raw_entry & 0x;
- m_list_offset = (int64_t)(raw_entry >> 16);
+ m_list_off
wlei-llvm wrote:
> > > > > > Ping @wlei-llvm
> > > > >
> > > > >
> > > > > Sorry for the delay. The new version addressed my last comment (with
> > > > > just minor nits). However, I didn't fully follow the new features
> > > > > related to `ProbeMatchSpecs` stuffs. Could you add more descrip
https://github.com/adrian-prantl approved this pull request.
https://github.com/llvm/llvm-project/pull/115571
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -394,7 +394,7 @@ bool ClassDescriptorV2::relative_list_entry_t::Read(Process
*process,
lldb::offset_t cursor = 0;
uint64_t raw_entry = extractor.GetU64_unchecked(&cursor);
m_image_index = raw_entry & 0x;
- m_list_offset = (int64_t)(raw_entry >> 16);
+ m_list_off
aaupov wrote:
> > > > > Ping @wlei-llvm
> > > >
> > > >
> > > > Sorry for the delay. The new version addressed my last comment (with
> > > > just minor nits). However, I didn't fully follow the new features
> > > > related to `ProbeMatchSpecs` stuffs. Could you add more descriptions to
> > >
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Michael Buch (Michael137)
Changes
The `relative_list_list_entry_t` offset field in the Objective-C runtime is of
type `int64_t`. There are cases where these offsets are negative values. For
negative offsets, LLDB would currently incorrectl
https://github.com/Michael137 created
https://github.com/llvm/llvm-project/pull/115571
The `relative_list_list_entry_t` offset field in the Objective-C runtime is of
type `int64_t`. There are cases where these offsets are negative values. For
negative offsets, LLDB would currently incorrectly
https://github.com/aaupov edited https://github.com/llvm/llvm-project/pull/99891
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti edited
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/wlei-llvm approved this pull request.
LGTM, thanks for addressing the comments!
https://github.com/llvm/llvm-project/pull/99891
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo
wlei-llvm wrote:
> > > > Ping @wlei-llvm
> > >
> > >
> > > Sorry for the delay. The new version addressed my last comment (with just
> > > minor nits). However, I didn't fully follow the new features related to
> > > `ProbeMatchSpecs` stuffs. Could you add more descriptions to the diff
> > >
https://github.com/ashgti edited
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -1465,11 +1462,7 @@ CreateRunInTerminalReverseRequest(const
llvm::json::Object &launch_request,
llvm::StringRef key = envs.GetNameAtIndex(index);
llvm::StringRef value = envs.GetValueAtIndex(index);
-if (key.empty())
- g_dap.SendOutput(OutputType::Stderr,
https://github.com/aaupov edited https://github.com/llvm/llvm-project/pull/99891
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/walter-erquinigo commented:
Save one comment, everything else seems good
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-
@@ -1465,11 +1462,7 @@ CreateRunInTerminalReverseRequest(const
llvm::json::Object &launch_request,
llvm::StringRef key = envs.GetNameAtIndex(index);
llvm::StringRef value = envs.GetValueAtIndex(index);
-if (key.empty())
- g_dap.SendOutput(OutputType::Stderr,
https://github.com/walter-erquinigo edited
https://github.com/llvm/llvm-project/pull/115561
___
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 is part of a larger refactor to remove the global `g_dap` variable.
---
Patch is 25.94 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/115561.diff
3 Files Af
https://github.com/ashgti ready_for_review
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti unassigned
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti unassigned
https://github.com/llvm/llvm-project/pull/115561
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/115561
This is part of a larger refactor to remove the global `g_dap` variable.
>From 3105fc424d4c712d90f10b771d4644c0e97355c4 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Thu, 7 Nov 2024 13:06:01 -0800
Subject:
https://github.com/JDevlieghere approved this pull request.
https://github.com/llvm/llvm-project/pull/115551
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda approved this pull request.
Quick review of the method being modified, this looks fine to me.
https://github.com/llvm/llvm-project/pull/115453
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.
Author: John Harrison
Date: 2024-11-08T14:09:07-08:00
New Revision: 8d8d9f0ece2337d0ce34f464f0ce3d5193460ca4
URL:
https://github.com/llvm/llvm-project/commit/8d8d9f0ece2337d0ce34f464f0ce3d5193460ca4
DIFF:
https://github.com/llvm/llvm-project/commit/8d8d9f0ece2337d0ce34f464f0ce3d5193460ca4.diff
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/115551
___
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 should fix https://lab.llvm.org/buildbot/#/builders/141/builds/3722
---
Full diff: https://github.com/llvm/llvm-project/pull/115551.diff
1 Files Affected:
- (modified) lldb/tools/lldb-dap/JSONUtils.cpp
https://github.com/ashgti ready_for_review
https://github.com/llvm/llvm-project/pull/115551
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti edited
https://github.com/llvm/llvm-project/pull/115551
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/115551
None
>From cc7dd5f8b51f9ad0379193e9ccaf4049307c9615 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Fri, 8 Nov 2024 14:04:13 -0800
Subject: [PATCH] [lldb-dap] Fix lldb-dap build for windows, missing PATH_MAX.
Author: John Harrison
Date: 2024-11-08T13:36:25-08:00
New Revision: b99d4112585302cbd01f9b851a04adc6e4fb5218
URL:
https://github.com/llvm/llvm-project/commit/b99d4112585302cbd01f9b851a04adc6e4fb5218
DIFF:
https://github.com/llvm/llvm-project/commit/b99d4112585302cbd01f9b851a04adc6e4fb5218.diff
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/115208
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: SpencerAbson
Date: 2024-11-08T20:19:31Z
New Revision: bbcd35270ef4597402b924d547d845893e7fd165
URL:
https://github.com/llvm/llvm-project/commit/bbcd35270ef4597402b924d547d845893e7fd165
DIFF:
https://github.com/llvm/llvm-project/commit/bbcd35270ef4597402b924d547d845893e7fd165.diff
LOG:
https://github.com/SpencerAbson closed
https://github.com/llvm/llvm-project/pull/115539
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -769,7 +769,7 @@ bool AArch64TargetInfo::hasFeature(StringRef Feature) const
{
.Case("f32mm", FPU & SveMode && HasMatmulFP32)
.Case("f64mm", FPU & SveMode && HasMatmulFP64)
.Case("sve2", FPU & SveMode && HasSVE2)
- .Case("sve2-pmull128", FPU & SveMode
https://github.com/labrinea approved this pull request.
https://github.com/llvm/llvm-project/pull/115539
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-clang
Author: None (SpencerAbson)
Changes
…293)"
This reverts commit da9499ebfb323602c42aeb674571fe89cec20ca6.
---
Patch is 52.30 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/115539.diff
35 Files Affect
llvmbot wrote:
@llvm/pr-subscribers-backend-aarch64
Author: None (SpencerAbson)
Changes
…293)"
This reverts commit da9499ebfb323602c42aeb674571fe89cec20ca6.
---
Patch is 52.30 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/115539.diff
35 Fi
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: None (SpencerAbson)
Changes
…293)"
This reverts commit da9499ebfb323602c42aeb674571fe89cec20ca6.
---
Patch is 52.30 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/115539.diff
35 Files Affecte
llvmbot wrote:
@llvm/pr-subscribers-clang-driver
Author: None (SpencerAbson)
Changes
…293)"
This reverts commit da9499ebfb323602c42aeb674571fe89cec20ca6.
---
Patch is 52.30 KiB, truncated to 20.00 KiB below, full version:
https://github.com/llvm/llvm-project/pull/115539.diff
35 Files
https://github.com/SpencerAbson created
https://github.com/llvm/llvm-project/pull/115539
…293)"
This reverts commit da9499ebfb323602c42aeb674571fe89cec20ca6.
>From 8d4263cb961fe96d329ca23e090dab25e9b697cb Mon Sep 17 00:00:00 2001
From: SpencerAbson
Date: Fri, 8 Nov 2024 19:43:36 +
Subject
https://github.com/labrinea edited
https://github.com/llvm/llvm-project/pull/114293
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -78,7 +78,7 @@ def : FMVExtension<"sme2", "FEAT_SME2", "+sme2,+sme,+bf16",
580>;
def : FMVExtension<"ssbs", "FEAT_SSBS2", "+ssbs", 490>;
def : FMVExtension<"sve", "FEAT_SVE", "+sve,+fullfp16,+fp-armv8,+neon", 310>;
def : FMVExtension<"sve2", "FEAT_SVE2",
"+sve2,+sve,+fullf
@@ -365,9 +365,12 @@ def FeatureSVE2 : ExtensionWithMArch<"sve2", "SVE2",
"FEAT_SVE2",
"Enable Scalable Vector Extension 2 (SVE2) instructions",
[FeatureSVE, FeatureUseScalarIncVL]>;
-def FeatureSVE2AES : ExtensionWithMArch<"sve2-aes", "SVE2AES",
+def FeatureSVEAES : Exte
@@ -6,10 +6,10 @@ tbx z0.b, z1.b, z2.b
// CHECK: error: instruction requires: sve2 or sme
// CHECK-NEXT: tbx z0.b, z1.b, z2.b
-.arch_extension sve2-aes
-.arch_extension nosve2-aes
+.arch_extension sve-aes
+.arch_extension nosve-aes
labrinea wrote:
Here you ar
https://github.com/JDevlieghere approved this pull request.
Unless there's a reason (that Jason remembers) to do it differently, the new
behavior makes more sense to me.
https://github.com/llvm/llvm-project/pull/115453
___
lldb-commits mailing list
l
JDevlieghere wrote:
I'd say this was a Freudian slip.
https://github.com/llvm/llvm-project/pull/115500
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
jimingham wrote:
Spell-checkers sometimes reveal hidden truths...
Jim
> On Nov 8, 2024, at 10:52 AM, Pavel Labath ***@***.***> wrote:
>
>
> detest.py
>
> I'm not a fan of how TestLuaAPI.py works today.
>
> You could even say you detest it. :P
>
> —
> Reply to this email directly, view it o
labath wrote:
> `detest.py`
> I'm not a fan of how TestLuaAPI.py works today.
You could even say you detest it. :P
https://github.com/llvm/llvm-project/pull/115500
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-b
labrinea wrote:
This doesn't seem right. The breaks
https://github.com/llvm/llvm-project/pull/113281. I can see your commit
https://github.com/llvm/llvm-project/pull/114293/commits/ec6f646e905c16a161487fea34c7dea09635c150
which tries to address it. The patch suggests that the FMV feature sve2-
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/115382
>From b5947cfe8fd7702f801c91f48ca050a5c839a707 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Thu, 7 Nov 2024 14:08:50 -0800
Subject: [PATCH 1/4] [lldb] Support overriding the disassembly CPU & feat
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/115208
>From 125c8976906ff25da6e212dff21d1b129575bd28 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Wed, 6 Nov 2024 09:36:48 -0800
Subject: [PATCH 01/11] [lldb-dap] Refactoring breakpoints to not use the
`g_dap` r
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/115208
>From 125c8976906ff25da6e212dff21d1b129575bd28 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Wed, 6 Nov 2024 09:36:48 -0800
Subject: [PATCH 1/9] [lldb-dap] Refactoring breakpoints to not use the `g_dap`
ref
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/115208
>From 125c8976906ff25da6e212dff21d1b129575bd28 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Wed, 6 Nov 2024 09:36:48 -0800
Subject: [PATCH 01/10] [lldb-dap] Refactoring breakpoints to not use the
`g_dap` r
JDevlieghere wrote:
I'm not a fan of how TestLuaAPI.py works today. I think it should be its own
lit format, without going through `detest.py`. I think that shouldn't be too
hard, but I'll do that as a follow-up.
https://github.com/llvm/llvm-project/pull/115500
___
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/115500
>From 4858c858724b3b1047dec4f3d7dd00e672dfdb41 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Fri, 8 Nov 2024 07:39:01 -0800
Subject: [PATCH 1/2] [lldb] Support both Lua 5.3 and Lua 5.4
Lua 5.3 and
weliveindetail wrote:
Pre-merge checks failed due to an unrelated test error. The one on Windows was
fine actually, but let me squash and rebase to try this again.
https://github.com/llvm/llvm-project/pull/115177
___
lldb-commits mailing list
lldb-com
https://github.com/weliveindetail updated
https://github.com/llvm/llvm-project/pull/115177
From b12300bcd0b801348267a1b2a00e7ee774620099 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Gr=C3=A4nitz?=
Date: Fri, 8 Nov 2024 17:16:20 +0100
Subject: [PATCH] [lldb] Infer MSInheritanceAttr for CXXR
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
Lua 5.3 and Lua 5.4 are similar enough that we can easily support both in LLDB.
This patch adds support for building LLDB with both and updates the
documentation accordingly.
---
Full diff: https:/
JDevlieghere wrote:
https://github.com/llvm/llvm-project/pull/115500
https://github.com/llvm/llvm-project/pull/115288
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/115500
Lua 5.3 and Lua 5.4 are similar enough that we can easily support both in LLDB.
This patch adds support for building LLDB with both and updates the
documentation accordingly.
>From 4858c858724b3b1047dec4f
Author: Jonas Devlieghere
Date: 2024-11-08T07:23:11-08:00
New Revision: c93eb43a63d3b5c90e828608b5c2063644a3b161
URL:
https://github.com/llvm/llvm-project/commit/c93eb43a63d3b5c90e828608b5c2063644a3b161
DIFF:
https://github.com/llvm/llvm-project/commit/c93eb43a63d3b5c90e828608b5c2063644a3b161.d
walter-erquinigo wrote:
I remember that when lldb-dap was being brought up, the breakpoint structs were
very simple, but they have become non-trivial at this point, so I second the
idea of turning them into proper classes with better data encapsulation.
https://github.com/llvm/llvm-project/pul
https://github.com/SpencerAbson closed
https://github.com/llvm/llvm-project/pull/114293
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: SpencerAbson
Date: 2024-11-08T15:07:05Z
New Revision: da9499ebfb323602c42aeb674571fe89cec20ca6
URL:
https://github.com/llvm/llvm-project/commit/da9499ebfb323602c42aeb674571fe89cec20ca6
DIFF:
https://github.com/llvm/llvm-project/commit/da9499ebfb323602c42aeb674571fe89cec20ca6.diff
LOG:
https://github.com/dzhidzhoev approved this pull request.
https://github.com/llvm/llvm-project/pull/115480
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/slydiman closed
https://github.com/llvm/llvm-project/pull/115470
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dmitry Vasilyev
Date: 2024-11-08T18:11:59+04:00
New Revision: d5677b630d0faf38e2e92797415ff80676f86063
URL:
https://github.com/llvm/llvm-project/commit/d5677b630d0faf38e2e92797415ff80676f86063
DIFF:
https://github.com/llvm/llvm-project/commit/d5677b630d0faf38e2e92797415ff80676f86063.dif
Author: Dmitry Vasilyev
Date: 2024-11-08T17:44:51+04:00
New Revision: 32c744ae339dc356060636bcdf75a5e2a67fca00
URL:
https://github.com/llvm/llvm-project/commit/32c744ae339dc356060636bcdf75a5e2a67fca00
DIFF:
https://github.com/llvm/llvm-project/commit/32c744ae339dc356060636bcdf75a5e2a67fca00.dif
https://github.com/slydiman updated
https://github.com/llvm/llvm-project/pull/115470
>From e3501b22f7571017c184705ac8792777cf6b2d3e Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Fri, 8 Nov 2024 16:16:59 +0400
Subject: [PATCH] [lldb] Fixed TestTargetCommand.py in case of Windows host and
https://github.com/slydiman closed
https://github.com/llvm/llvm-project/pull/115480
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?=
Message-ID:
In-Reply-To:
@@ -2771,8 +2771,
https://github.com/weliveindetail updated
https://github.com/llvm/llvm-project/pull/115177
From 32d7b7d5261e651851e5a36c5fd5ae9d927a9fb3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Gr=C3=A4nitz?=
Date: Wed, 6 Nov 2024 15:45:03 +0100
Subject: [PATCH 1/8] [lldb] Infer MSInheritanceAttr for
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Dmitry Vasilyev (slydiman)
Changes
It is broken after #115337
https://lab.llvm.org/buildbot/#/builders/195/builds/794
---
Full diff: https://github.com/llvm/llvm-project/pull/115480.diff
1 Files Affected:
- (modified) lldb/packages/Pyth
https://github.com/slydiman created
https://github.com/llvm/llvm-project/pull/115480
It is broken after #115337
https://lab.llvm.org/buildbot/#/builders/195/builds/794
>From 091a21534bfdb043b3e9bea7156bcb483b179b1e Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Fri, 8 Nov 2024 17:22:43
@@ -2771,8 +2771,14 @@ static bool GetCompleteQualType(clang::ASTContext *ast,
ast, llvm::cast(qual_type)->getModifiedType(),
allow_completion);
- case clang::Type::MemberPointer:
+ case clang::Type::MemberPointer: {
+auto *MPT = qual_type.getTypePtr()->c
https://github.com/weliveindetail updated
https://github.com/llvm/llvm-project/pull/115177
From 32d7b7d5261e651851e5a36c5fd5ae9d927a9fb3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Gr=C3=A4nitz?=
Date: Wed, 6 Nov 2024 15:45:03 +0100
Subject: [PATCH 1/6] [lldb] Infer MSInheritanceAttr for
@@ -2,23 +2,58 @@
// Itanium ABI:
// RUN: %clang --target=x86_64-pc-linux -gdwarf -c -o %t_linux.o %s
-// RUN: %lldb -f %t_linux.o -b -o "target variable mp" | FileCheck %s
+// RUN: %lldb -f %t_linux.o -b -o "target variable s1 s2 m1 m2 v1 v2 v3 v4" |
FileCheck --check-prefix
https://github.com/slydiman updated
https://github.com/llvm/llvm-project/pull/115470
>From cae969003805b2b41d6b6176253e6296f976d518 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Fri, 8 Nov 2024 16:16:59 +0400
Subject: [PATCH] [lldb] Fixed TestTargetCommand.py in case of Windows host and
Author: Pavel Labath
Date: 2024-11-08T13:25:23+01:00
New Revision: 6e4cd463e580046feb66597a61db352c63fd783b
URL:
https://github.com/llvm/llvm-project/commit/6e4cd463e580046feb66597a61db352c63fd783b
DIFF:
https://github.com/llvm/llvm-project/commit/6e4cd463e580046feb66597a61db352c63fd783b.diff
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?= ,
Stefan =?utf-8?q?Gr=C3=A4nitz?=
Message-ID:
In-Reply-To:
https://github.com/Michael137 approved this pull request.
https://github.com/llvm/llvm-project/pull/115177
___
https://github.com/labath closed
https://github.com/llvm/llvm-project/pull/108810
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/labath closed
https://github.com/llvm/llvm-project/pull/112895
___
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
34bf9dd6d39cb2bf75731cea7a26c3563720cb67...284853a9b9c2d2a38dcfb2a1acb0caed523d8e75
lldb/
Stefan =?utf-8?q?Gränitz?= ,
Stefan =?utf-8?q?Gränitz?= ,
Stefan =?utf-8?q?Gränitz?= ,
Stefan =?utf-8?q?Gränitz?=
Message-ID:
In-Reply-To:
@@ -2771,8 +2771,14 @@ static bool GetCompleteQualType(clang::ASTContext *ast,
ast, llvm::cast(qual_type)->getModifiedType(),
https://github.com/labath approved this pull request.
https://github.com/llvm/llvm-project/pull/115470
___
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: Dmitry Vasilyev (slydiman)
Changes
Fixed TestTargetCommand.py in case of Windows host and Linux target.
---
Full diff: https://github.com/llvm/llvm-project/pull/115470.diff
1 Files Affected:
- (modified) lldb/test/API/commands/target/bas
https://github.com/slydiman created
https://github.com/llvm/llvm-project/pull/115470
Fixed TestTargetCommand.py in case of Windows host and Linux target.
>From 284853a9b9c2d2a38dcfb2a1acb0caed523d8e75 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Fri, 8 Nov 2024 16:16:59 +0400
Subject:
Stefan =?utf-8?q?Gränitz?= ,
Stefan =?utf-8?q?Gränitz?= ,
Stefan =?utf-8?q?Gränitz?= ,
Stefan =?utf-8?q?Gränitz?=
Message-ID:
In-Reply-To:
@@ -2,23 +2,58 @@
// Itanium ABI:
// RUN: %clang --target=x86_64-pc-linux -gdwarf -c -o %t_linux.o %s
-// RUN: %lldb -f %t_linux.o -b -
Author: Michael Buch
Date: 2024-11-08T12:07:34Z
New Revision: 34bf9dd6d39cb2bf75731cea7a26c3563720cb67
URL:
https://github.com/llvm/llvm-project/commit/34bf9dd6d39cb2bf75731cea7a26c3563720cb67
DIFF:
https://github.com/llvm/llvm-project/commit/34bf9dd6d39cb2bf75731cea7a26c3563720cb67.diff
LOG:
Author: Michael Buch
Date: 2024-11-08T11:59:08Z
New Revision: 39bce77bd6cdb334810ed95249683484e44c1165
URL:
https://github.com/llvm/llvm-project/commit/39bce77bd6cdb334810ed95249683484e44c1165
DIFF:
https://github.com/llvm/llvm-project/commit/39bce77bd6cdb334810ed95249683484e44c1165.diff
LOG:
Author: Dmitry Vasilyev
Date: 2024-11-08T15:59:05+04:00
New Revision: df3f18b071d853896318d2d37186fc6289ffdb2b
URL:
https://github.com/llvm/llvm-project/commit/df3f18b071d853896318d2d37186fc6289ffdb2b
DIFF:
https://github.com/llvm/llvm-project/commit/df3f18b071d853896318d2d37186fc6289ffdb2b.dif
1 - 100 of 107 matches
Mail list logo