llvmbot wrote:
@llvm/pr-subscribers-llvm-ir
Author: 小钟 (smallzhong)
Changes
Corrects multiple instances of the misspelling 'auxilliary' to 'auxiliary'
across code, comments, and documentation in XCOFF-related files. Also fixes
minor typos such as 'unit64_t' to 'uint64_t' and 'expect' to
ashgti wrote:
Submitting to unblock CI.
https://github.com/llvm/llvm-project/pull/161931
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-backend-powerpc
Author: 小钟 (smallzhong)
Changes
Corrects multiple instances of the misspelling 'auxilliary' to 'auxiliary'
across code, comments, and documentation in XCOFF-related files. Also fixes
minor typos such as 'unit64_t' to 'uint64_t' and 'exp
https://github.com/smallzhong created
https://github.com/llvm/llvm-project/pull/161935
Corrects multiple instances of the misspelling 'auxilliary' to 'auxiliary'
across code, comments, and documentation in XCOFF-related files. Also fixes
minor typos such as 'unit64_t' to 'uint64_t' and 'expect
Author: John Harrison
Date: 2025-10-03T18:16:22-07:00
New Revision: f3673c5e5bfef176b3f630d82ec2299390b8a69a
URL:
https://github.com/llvm/llvm-project/commit/f3673c5e5bfef176b3f630d82ec2299390b8a69a
DIFF:
https://github.com/llvm/llvm-project/commit/f3673c5e5bfef176b3f630d82ec2299390b8a69a.diff
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
Changes
These tests are failing on win32 platforms, disabling while I investigate the
root cause.
---
Full diff: https://github.com/llvm/llvm-project/pull/161931.diff
2 Files Affected:
- (modified) lldb/unittests/
ashgti wrote:
Taking a look.
https://github.com/llvm/llvm-project/pull/159160
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/161688
>From c3dec1fa57c74f7966cb20155e4e3a9b53ef6fd7 Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Thu, 2 Oct 2025 16:24:12 +0100
Subject: [PATCH 1/4] [lldb][Expression] Emit a 'Note' diagnistc that indicates
https://github.com/mysterymath closed
https://github.com/llvm/llvm-project/pull/161385
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
cmtice wrote:
I've simplified the type parsing a bit, as suggested above (for the builtin
types), which eliminated ~400 lines of code (woo hoo!). Verified that this
still passes all the type-casting tests.
https://github.com/llvm/llvm-project/pull/159500
__
Michael137 wrote:
This is PR CI:
```
2025-10-03T10:01:50.6109918Z
/home/gha/actions-runner/_work/llvm-project/llvm-project/third-party/unittest/googletest/include/gtest/gtest-assertion-result.h:161:9:
error: no viable conversion from 'const llvm::VersionTuple' to 'bool'
2025-10-03T10:01:50.6111
Author: Jason Molenda
Date: 2025-10-03T15:54:25-07:00
New Revision: 162b87b0ac86f7604db245b67874fc6715b2f06b
URL:
https://github.com/llvm/llvm-project/commit/162b87b0ac86f7604db245b67874fc6715b2f06b
DIFF:
https://github.com/llvm/llvm-project/commit/162b87b0ac86f7604db245b67874fc6715b2f06b.diff
https://github.com/adrian-prantl approved this pull request.
https://github.com/llvm/llvm-project/pull/161804
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -542,9 +542,22 @@ Language::Language() = default;
// Destructor
Language::~Language() = default;
+static llvm::dwarf::SourceLanguage
+ToDwarfSourceLanguage(lldb::LanguageType language_type) {
+ if (language_type < lldb::eLanguageTypeLastStandardLanguage)
+return static
slydiman wrote:
Please fix tests on Windows.
The buildbot lldb-x86_64-win is broken:
https://lab.llvm.org/buildbot/#/builders/211/builds/2566
It is an assert inside CRT. Probably states of handles are wrong.
https://github.com/llvm/llvm-project/pull/159160
___
@@ -542,9 +542,22 @@ Language::Language() = default;
// Destructor
Language::~Language() = default;
+static llvm::dwarf::SourceLanguage
+ToDwarfSourceLanguage(lldb::LanguageType language_type) {
+ if (language_type < lldb::eLanguageTypeLastStandardLanguage)
+return static
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/161804
>From 159ee47db1b9f6f609fe8b6b3e866f995d8f2e5c Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 09:37:52 +0100
Subject: [PATCH 1/5] [lldb][Language] Simplify SourceLanguage::GetDescription
C
https://github.com/tgs-sc closed
https://github.com/llvm/llvm-project/pull/154123
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
tgs-sc wrote:
I close it as it is actually merged (42a5c3d74a1a19)
https://github.com/llvm/llvm-project/pull/154123
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DavidSpickett closed
https://github.com/llvm/llvm-project/pull/161868
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
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 origin/main HEAD --extensions cpp --
lldb/unittests/Target/Language.cpp lldb/source/T
https://github.com/medismailben updated
https://github.com/llvm/llvm-project/pull/161870
>From 9521324b1c7381eb6601170652828b682f6a73f1 Mon Sep 17 00:00:00 2001
From: Med Ismail Bennani
Date: Fri, 3 Oct 2025 17:28:59 +0100
Subject: [PATCH] [lldb] Introduce ScritedFrameProvider
Signed-off-by: M
https://github.com/medismailben edited
https://github.com/llvm/llvm-project/pull/161870
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere edited
https://github.com/llvm/llvm-project/pull/155331
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/161830
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
DavidSpickett wrote:
The Yama error now looks like:
```
UNSUPPORTED: LLDB (/home/davspi01/work/open_source/build-llvm/bin/clang-x86_64)
:: test_qThreadInfo_contains_thread_attach_debugserver
(TestLldbGdbServer.LldbGdbServerTestCase) (test case does not fall in any
category of interest for this
DavidSpickett wrote:
CI failing with another thing that depends on the size of this enum.
https://github.com/llvm/llvm-project/pull/161810
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-co
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/161804
>From 159ee47db1b9f6f609fe8b6b3e866f995d8f2e5c Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 09:37:52 +0100
Subject: [PATCH 1/2] [lldb][Language] Simplify SourceLanguage::GetDescription
C
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/161810
>From e1f3b11718247e9b10cd214973944f9ff6aef09a Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 10:06:43 +0100
Subject: [PATCH 1/2] [lldb][Language] Sync LanguageType enumeration with DWARF
https://github.com/Michael137 deleted
https://github.com/llvm/llvm-project/pull/161810
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -522,6 +522,16 @@ enum LanguageType {
eLanguageTypeAssembly = 0x0031,
eLanguageTypeC_sharp = 0x0032,
eLanguageTypeMojo = 0x0033,
+ eLanguageTypeGLSL = 0x0034,
+ eLanguageTypeGLSL_ES = 0x0035,
+ eLanguageTypeHLSL = 0x0036,
+ eLanguageTypeOpenCL_CPP = 0x0037,
+ eLan
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/161810
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Michael Buch (Michael137)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/161830.diff
6 Files Affected:
- (modified) lldb/include/lldb/Target/Language.h (+3-2)
- (modified) lldb/source/Breakpoint/BreakpointResolverName
https://github.com/Michael137 created
https://github.com/llvm/llvm-project/pull/161830
None
>From 1691ea3e08708962b21193afc0b938c45d37598a Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 13:00:45 +0100
Subject: [PATCH] [lldb][Lanugage][NFC] Adapt Language::ForEach to
Iterati
https://github.com/Michael137 created
https://github.com/llvm/llvm-project/pull/161803
The intention for this API is to be used when presenting language names to the
user, e.g., in expression evaluation diagnostics or LLDB errors.
Most uses of `GetNameForLanguageType` can be probably replaced
DavidSpickett wrote:
DWARF codes from what exactly, DWARFv5, things already allocated to be in
DWARFv6?
https://github.com/llvm/llvm-project/pull/161810
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/l
@@ -1118,3 +1118,21 @@ size_t lldb_private::npdb::GetSizeOfType(PdbTypeSymId id,
}
return 0;
}
+
+llvm::StringRef lldb_private::npdb::StripCDeclPrefix(llvm::StringRef mangled) {
+ // See
+ //
https://learn.microsoft.com/en-us/cpp/build/reference/decorated-names#FormatC
+
https://github.com/Nerixyz updated
https://github.com/llvm/llvm-project/pull/161678
>From 70c954ae5d95e13aa4b29dca928b7c02b59981fc Mon Sep 17 00:00:00 2001
From: Nerixyz
Date: Sun, 20 Jul 2025 13:25:56 +0200
Subject: [PATCH 01/13] [LLDB][NativePDB] Create functions with mangled name
---
.../S
Michael137 wrote:
> DWARF codes from what exactly, DWARFv5, things already allocated to be in
> DWARFv6?
With the values in Dwarf.def
Most likely DWARFv6 values
I'll put it in the PR description
https://github.com/llvm/llvm-project/pull/161810
___
@@ -522,6 +522,16 @@ enum LanguageType {
eLanguageTypeAssembly = 0x0031,
eLanguageTypeC_sharp = 0x0032,
eLanguageTypeMojo = 0x0033,
+ eLanguageTypeGLSL = 0x0034,
+ eLanguageTypeGLSL_ES = 0x0035,
+ eLanguageTypeHLSL = 0x0036,
+ eLanguageTypeOpenCL_CPP = 0x0037,
+ eLan
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/161804
>From 159ee47db1b9f6f609fe8b6b3e866f995d8f2e5c Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 09:37:52 +0100
Subject: [PATCH 1/2] [lldb][Language] Simplify SourceLanguage::GetDescription
C
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Michael Buch (Michael137)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/161810.diff
2 Files Affected:
- (modified) lldb/include/lldb/lldb-enumerations.h (+10)
- (modified) lldb/source/Target/Language.cpp (+10)
```
https://github.com/Michael137 created
https://github.com/llvm/llvm-project/pull/161810
None
>From e1f3b11718247e9b10cd214973944f9ff6aef09a Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 10:06:43 +0100
Subject: [PATCH] [lldb][Language] Sync LanguageType enumeration with DWARF
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/161803
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/161804
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/161804
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/161804
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Michael Buch (Michael137)
Changes
Currently we don't benefit from the user-friendly names that
`LanguageDescription` returns because we would always use
`Language::GetNameForLanguageType`. I'm not aware of a situation where
`GetDescriptio
https://github.com/Michael137 edited
https://github.com/llvm/llvm-project/pull/161803
___
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/Michael137 created
https://github.com/llvm/llvm-project/pull/161804
Currently we don't benefit from the user-friendly names that
`LanguageDescription` returns because we would always use
`Language::GetNameForLanguageType`. I'm not aware of a situation where
`GetDescription`
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/161803
>From 159ee47db1b9f6f609fe8b6b3e866f995d8f2e5c Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 09:37:52 +0100
Subject: [PATCH 1/2] [lldb][Language] Simplify SourceLanguage::GetDescription
C
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Michael Buch (Michael137)
Changes
The intention for this API is to be used when presenting language names to the
user, e.g., in expression evaluation diagnostics or LLDB errors.
Most uses of `GetNameForLanguageType` can be probably replace
https://github.com/Michael137 updated
https://github.com/llvm/llvm-project/pull/161688
>From 70209138f76ddcc59e6ee3f9a0cfac734d6db00d Mon Sep 17 00:00:00 2001
From: Michael Buch
Date: Fri, 3 Oct 2025 09:24:49 +0100
Subject: [PATCH 1/4] [lldb][Lanugage] Add
Language::GetDisplayNameForLanguageTy
@@ -219,7 +219,8 @@ static llvm::Error AddPtraceScopeNote(llvm::Error
original_error) {
Expected ptrace_scope = GetPtraceScope();
if (auto E = ptrace_scope.takeError()) {
Log *log = GetLog(POSIXLog::Process);
-LLDB_LOG(log, "error reading value of ptrace_scope: {0}
54 matches
Mail list logo