@@ -170,6 +170,14 @@ void CommandObjectDWIMPrint::DoExecute(StringRef command,
ExpressionResults expr_result = target.EvaluateExpression(
expr, exe_scope, valobj_sp, eval_options, &fixed_expression);
+auto persistent_name = valobj_sp->GetName();
+// Evaluat
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/85152
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
kastiglione wrote:
I'll change this to scope lookup of persistent variables to the expected
language.
However, there's an argument to be made that `dwim-print $my_var` should work
anywhere. I think that follows the spirit of "do what I mean". Maybe in the
future I'll propose that in a separat
https://github.com/kastiglione updated
https://github.com/llvm/llvm-project/pull/85152
>From 970cf82fa3d64c5a4e1b3929c110b42974ef13cd Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Wed, 13 Mar 2024 14:49:23 -0700
Subject: [PATCH 1/3] [lldb] Fix dwim-print to not delete non-result persistent
var
kastiglione wrote:
I don't consider it a failure to not be able to perform mixed language
expressions. But it would have to be presented to the user in a way that is
understandable, which could be a challenge.
Anyway, I pushed the change that scopes the lookup to the expected language.
thank
kastiglione wrote:
> I'm not sure what you mean by "mixed language expressions".
I was thinking about the case where a user attempts `p $some_c_var + 1` in
Swift frame – which is valid swift as far as the debugger is concerned.
https://github.com/llvm/llvm-project/pull/85152
_
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/85152
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -130,7 +130,20 @@ void CommandObjectDWIMPrint::DoExecute(StringRef command,
}
};
- // First, try `expr` as the name of a frame variable.
kastiglione wrote:
1. I'd prefer to leave the "first", "second", "third" comments. I want to be
explicit that t
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/85669
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -129,6 +129,19 @@ void CommandObjectDWIMPrint::DoExecute(StringRef command,
}
};
+ // Dump `valobj` according to whether `po` was requested or not.
+ auto dump_val_object = [&](ValueObject &valobj) {
kastiglione wrote:
Would you mind also applying
https://github.com/kastiglione approved this pull request.
one request, and then looks good, thanks.
https://github.com/llvm/llvm-project/pull/85669
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
https://github.com/kastiglione updated
https://github.com/llvm/llvm-project/pull/81196
>From 81a2034ff2b41e30a1f5b82c86b4d5d4c429ed52 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Thu, 8 Feb 2024 13:59:12 -0800
Subject: [PATCH 1/5] [lldb] Support custom printf formatting for variables
---
lld
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/81196
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/81196
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
kastiglione wrote:
I've updated this PR to use llvm formatting instead of printf. For the
following reasons:
1. For printf, users would have to know the system's size of the value, eg `%d`
vs `%ld` etc
2. Users would have to provide different values for different systems, which
limits the use
kastiglione wrote:
@jimingham now that I've switched to llvm format, I'll loop back and follow up
on your comments.
https://github.com/llvm/llvm-project/pull/81196
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bi
@@ -658,6 +658,33 @@ static char ConvertValueObjectStyleToChar(
return '\0';
}
+static bool DumpValueWithLLVMFormat(Stream &s, llvm::StringRef options,
+ValueObject &target) {
+ std::string formatted;
+ std::string llvm_format = ("{0:" +
@@ -0,0 +1,11 @@
+import lldb
+from lldbsuite.test.lldbtest import *
+import lldbsuite.test.lldbutil as lldbutil
+
+
+class TestCase(TestBase):
+def test(self):
+self.build()
+lldbutil.run_to_source_breakpoint(self, "break here",
lldb.SBFileSpec("main.c"))
+
https://github.com/kastiglione updated
https://github.com/llvm/llvm-project/pull/81196
>From 81a2034ff2b41e30a1f5b82c86b4d5d4c429ed52 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Thu, 8 Feb 2024 13:59:12 -0800
Subject: [PATCH 1/6] [lldb] Support custom printf formatting for variables
---
lld
@@ -0,0 +1,18 @@
+import lldb
+from lldbsuite.test.lldbtest import *
+import lldbsuite.test.lldbutil as lldbutil
+
+
+class TestCase(TestBase):
+
+def test_raw_bytes(self):
+self.build()
+lldbutil.run_to_source_breakpoint(self, "break here",
lldb.SBFileSpec("m
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/86806
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -1517,7 +1517,7 @@ def buildLibrary(self, sources, lib_name):
"DYLIB_NAME": lib_name,
"CFLAGS_EXTRAS": "%s -I%s "
% (stdflag, os.path.join(os.environ["LLDB_SRC"], "include")),
-"LD_EXTRAS": "-shared -l%s\liblldb
https://github.com/kastiglione commented:
lldb/package looks good, thanks.
lldb/examples I trust
lldb/test I or someone else will look at soon.
https://github.com/llvm/llvm-project/pull/86806
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
@@ -673,6 +673,9 @@ option(LLVM_USE_OPROFILE
option(LLVM_EXTERNALIZE_DEBUGINFO
"Generate dSYM files and strip executables and libraries (Darwin Only)" OFF)
+option(LLVM_ENABLE_NO_EXPORTED_SYMBOLS
kastiglione wrote:
should the name reflect the opposite of th
kastiglione wrote:
Thanks for adding this! I've been using `CMAKE_EXE_LINKER_FLAGS` to
`-Wl,-no_exported_symbols`, and have had no problems.
https://github.com/llvm/llvm-project/pull/87684
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
http
@@ -1029,6 +1038,16 @@ macro(add_llvm_executable name)
add_llvm_symbol_exports( ${name} ${LLVM_EXPORTED_SYMBOL_FILE} )
endif(LLVM_EXPORTED_SYMBOL_FILE)
+ if (NOT LLVM_ENABLE_EXPORTED_SYMBOLS_IN_EXECUTABLES)
+if(LLVM_LINKER_SUPPORTS_NO_EXPORTED_SYMBOLS)
+ set_p
https://github.com/kastiglione created
https://github.com/llvm/llvm-project/pull/90294
None
>From a5e72126d3b0144e5fc0f5b04925f4bf394551e4 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Fri, 26 Apr 2024 16:14:09 -0700
Subject: [PATCH] [lldb] Consult Language plugin in GetDisplayDemangledName
-
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/90294
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kastiglione created
https://github.com/llvm/llvm-project/pull/90297
Adds a `show_function_display_name` parameter to
`SymbolContext::DumpStopContext`. This
parameter defaults to true, but `BreakpointLocation::GetDescription` sets it to
true.
>From 03e91b20df97103aed15e6640
kastiglione wrote:
At the time of creation, this PR includes the changes in
https://github.com/llvm/llvm-project/pull/90294.
https://github.com/llvm/llvm-project/pull/90297
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.o
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/90297
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/90297
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
kastiglione wrote:
@jimingham I'm not sure I've understood your comment entirely. Are you saying
the following?
1. Always use `GetDisplayName` when displaying a mangled name
2. Add a setting allowing the user to see `GetName` (which `GetDisplayName`
will call whenever the setting is enabled)
@@ -685,7 +686,7 @@ bool Address::Dump(Stream *s, ExecutionContextScope
*exe_scope, DumpStyle style,
sc.DumpStopContext(s, exe_scope, *this, show_fullpaths,
show_module, show_inlined_frames,
show_f
https://github.com/kastiglione updated
https://github.com/llvm/llvm-project/pull/81196
>From 81a2034ff2b41e30a1f5b82c86b4d5d4c429ed52 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Thu, 8 Feb 2024 13:59:12 -0800
Subject: [PATCH 1/7] [lldb] Support custom printf formatting for variables
---
lld
https://github.com/kastiglione updated
https://github.com/llvm/llvm-project/pull/81196
>From 81a2034ff2b41e30a1f5b82c86b4d5d4c429ed52 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Thu, 8 Feb 2024 13:59:12 -0800
Subject: [PATCH 1/8] [lldb] Support custom printf formatting for variables
---
lld
https://github.com/kastiglione updated
https://github.com/llvm/llvm-project/pull/81196
>From 81a2034ff2b41e30a1f5b82c86b4d5d4c429ed52 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Thu, 8 Feb 2024 13:59:12 -0800
Subject: [PATCH 1/9] [lldb] Support custom printf formatting for variables
---
lld
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/81196
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dave Lee
Date: 2024-04-30T16:15:19-07:00
New Revision: 0f628fdb1aa8be97a5d86c3259b8caaa997790ec
URL:
https://github.com/llvm/llvm-project/commit/0f628fdb1aa8be97a5d86c3259b8caaa997790ec
DIFF:
https://github.com/llvm/llvm-project/commit/0f628fdb1aa8be97a5d86c3259b8caaa997790ec.diff
LOG:
kastiglione wrote:
revert: 0f628fdb1aa8be97a5d86c3259b8caaa997790ec
apologies, thanks for reporting @aaupov.
https://github.com/llvm/llvm-project/pull/81196
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailm
@@ -0,0 +1,65 @@
+#!/usr/bin/env python3
+
+import argparse
+import re
+
+HEADER = """\
+//===-- SBLanguages.h -*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/L
@@ -0,0 +1,65 @@
+#!/usr/bin/env python3
+
+import argparse
+import re
+
+HEADER = """\
+//===-- SBLanguages.h -*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/L
@@ -0,0 +1,65 @@
+#!/usr/bin/env python3
+
+import argparse
+import re
+
+HEADER = """\
+//===-- SBLanguages.h -*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/L
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/90753
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -0,0 +1,67 @@
+#!/usr/bin/env python3
+
+import argparse
+import re
+
+HEADER = """\
+//===-- SBLanguages.h -*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/L
@@ -0,0 +1,67 @@
+#!/usr/bin/env python3
+
+import argparse
+import re
+
+HEADER = """\
+//===-- SBLanguages.h -*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/L
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/90294
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/90297
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dave Lee
Date: 2021-12-06T15:22:28-08:00
New Revision: 13278efd0c95a8b589bbd7dbbf17680a03b6eb77
URL:
https://github.com/llvm/llvm-project/commit/13278efd0c95a8b589bbd7dbbf17680a03b6eb77
DIFF:
https://github.com/llvm/llvm-project/commit/13278efd0c95a8b589bbd7dbbf17680a03b6eb77.diff
LOG:
Author: Dave Lee
Date: 2022-01-02T11:30:51-08:00
New Revision: a553969712edeedbaf1b2c8c570869ec43b5dd32
URL:
https://github.com/llvm/llvm-project/commit/a553969712edeedbaf1b2c8c570869ec43b5dd32
DIFF:
https://github.com/llvm/llvm-project/commit/a553969712edeedbaf1b2c8c570869ec43b5dd32.diff
LOG:
Author: Dave Lee
Date: 2022-01-03T15:36:19-08:00
New Revision: 67c937f846b18e3113e126c37c69a222c0e99c1c
URL:
https://github.com/llvm/llvm-project/commit/67c937f846b18e3113e126c37c69a222c0e99c1c
DIFF:
https://github.com/llvm/llvm-project/commit/67c937f846b18e3113e126c37c69a222c0e99c1c.diff
LOG:
Author: Dave Lee
Date: 2022-01-05T18:47:52-08:00
New Revision: ef6817f9329ce16dae33e64e2534a52647f089b0
URL:
https://github.com/llvm/llvm-project/commit/ef6817f9329ce16dae33e64e2534a52647f089b0
DIFF:
https://github.com/llvm/llvm-project/commit/ef6817f9329ce16dae33e64e2534a52647f089b0.diff
LOG:
Author: Dave Lee
Date: 2022-01-05T18:49:15-08:00
New Revision: 3a1a0d4957ece964a88b9912f4a86f651f026392
URL:
https://github.com/llvm/llvm-project/commit/3a1a0d4957ece964a88b9912f4a86f651f026392
DIFF:
https://github.com/llvm/llvm-project/commit/3a1a0d4957ece964a88b9912f4a86f651f026392.diff
LOG:
Author: Dave Lee
Date: 2022-01-06T19:26:57-08:00
New Revision: b3bfd595a548cd85b12e4e83729436cb73b26f29
URL:
https://github.com/llvm/llvm-project/commit/b3bfd595a548cd85b12e4e83729436cb73b26f29
DIFF:
https://github.com/llvm/llvm-project/commit/b3bfd595a548cd85b12e4e83729436cb73b26f29.diff
LOG:
Author: Dave Lee
Date: 2022-01-06T20:15:19-08:00
New Revision: bd23dffc2c38b7cffd3811716fd373cd2b588c27
URL:
https://github.com/llvm/llvm-project/commit/bd23dffc2c38b7cffd3811716fd373cd2b588c27
DIFF:
https://github.com/llvm/llvm-project/commit/bd23dffc2c38b7cffd3811716fd373cd2b588c27.diff
LOG:
Author: Dave Lee
Date: 2022-01-08T08:50:17-08:00
New Revision: 2c7d10c41278181e3e45c68f28b501cd95193a8a
URL:
https://github.com/llvm/llvm-project/commit/2c7d10c41278181e3e45c68f28b501cd95193a8a
DIFF:
https://github.com/llvm/llvm-project/commit/2c7d10c41278181e3e45c68f28b501cd95193a8a.diff
LOG:
Author: Dave Lee
Date: 2022-01-08T09:35:13-08:00
New Revision: 930f3c625e0277c4a28e66f79df7d8ad0de258e5
URL:
https://github.com/llvm/llvm-project/commit/930f3c625e0277c4a28e66f79df7d8ad0de258e5
DIFF:
https://github.com/llvm/llvm-project/commit/930f3c625e0277c4a28e66f79df7d8ad0de258e5.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T12:09:02-08:00
New Revision: 9d9f3e0ec773c6a2c570c8bc7484367bff73190c
URL:
https://github.com/llvm/llvm-project/commit/9d9f3e0ec773c6a2c570c8bc7484367bff73190c
DIFF:
https://github.com/llvm/llvm-project/commit/9d9f3e0ec773c6a2c570c8bc7484367bff73190c.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T12:11:32-08:00
New Revision: 39ea676d9d0ea467b7e5fe2d5c25d22a2d906041
URL:
https://github.com/llvm/llvm-project/commit/39ea676d9d0ea467b7e5fe2d5c25d22a2d906041
DIFF:
https://github.com/llvm/llvm-project/commit/39ea676d9d0ea467b7e5fe2d5c25d22a2d906041.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T13:21:40-08:00
New Revision: a6f1d046655c6850a355bb4557cb0dd463c9de0a
URL:
https://github.com/llvm/llvm-project/commit/a6f1d046655c6850a355bb4557cb0dd463c9de0a
DIFF:
https://github.com/llvm/llvm-project/commit/a6f1d046655c6850a355bb4557cb0dd463c9de0a.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T13:26:30-08:00
New Revision: 2bcff220bf1e372e91491911fe0bb76c4c4bbef8
URL:
https://github.com/llvm/llvm-project/commit/2bcff220bf1e372e91491911fe0bb76c4c4bbef8
DIFF:
https://github.com/llvm/llvm-project/commit/2bcff220bf1e372e91491911fe0bb76c4c4bbef8.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T14:12:47-08:00
New Revision: 08f70adedb775ce6d41a1f8ad75c4bac225efb5b
URL:
https://github.com/llvm/llvm-project/commit/08f70adedb775ce6d41a1f8ad75c4bac225efb5b
DIFF:
https://github.com/llvm/llvm-project/commit/08f70adedb775ce6d41a1f8ad75c4bac225efb5b.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T21:35:32-08:00
New Revision: 268a42d6976d571da2edcefea36f1d77e252d5bc
URL:
https://github.com/llvm/llvm-project/commit/268a42d6976d571da2edcefea36f1d77e252d5bc
DIFF:
https://github.com/llvm/llvm-project/commit/268a42d6976d571da2edcefea36f1d77e252d5bc.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T21:36:55-08:00
New Revision: aad27a890754fe13bd57a99a838307fee81496ee
URL:
https://github.com/llvm/llvm-project/commit/aad27a890754fe13bd57a99a838307fee81496ee
DIFF:
https://github.com/llvm/llvm-project/commit/aad27a890754fe13bd57a99a838307fee81496ee.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T21:37:42-08:00
New Revision: 4a8549354c1b77ce830e488ceefa05dfb4bc9325
URL:
https://github.com/llvm/llvm-project/commit/4a8549354c1b77ce830e488ceefa05dfb4bc9325
DIFF:
https://github.com/llvm/llvm-project/commit/4a8549354c1b77ce830e488ceefa05dfb4bc9325.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T22:01:31-08:00
New Revision: ed3a4a4948dedd264732105e910405138c9c0f3b
URL:
https://github.com/llvm/llvm-project/commit/ed3a4a4948dedd264732105e910405138c9c0f3b
DIFF:
https://github.com/llvm/llvm-project/commit/ed3a4a4948dedd264732105e910405138c9c0f3b.diff
LOG:
Author: Dave Lee
Date: 2022-01-09T22:40:03-08:00
New Revision: c4cdf865698eae06affbf762baf38e6ca95b4785
URL:
https://github.com/llvm/llvm-project/commit/c4cdf865698eae06affbf762baf38e6ca95b4785
DIFF:
https://github.com/llvm/llvm-project/commit/c4cdf865698eae06affbf762baf38e6ca95b4785.diff
LOG:
Author: Dave Lee
Date: 2022-01-11T19:00:47-08:00
New Revision: 06c7bdc8f1950dfa0cee19aabf13b8fce859ec98
URL:
https://github.com/llvm/llvm-project/commit/06c7bdc8f1950dfa0cee19aabf13b8fce859ec98
DIFF:
https://github.com/llvm/llvm-project/commit/06c7bdc8f1950dfa0cee19aabf13b8fce859ec98.diff
LOG:
Author: Dave Lee
Date: 2022-01-13T11:09:40-08:00
New Revision: cb5ea132d2eee8f83207633794256939dd8d8082
URL:
https://github.com/llvm/llvm-project/commit/cb5ea132d2eee8f83207633794256939dd8d8082
DIFF:
https://github.com/llvm/llvm-project/commit/cb5ea132d2eee8f83207633794256939dd8d8082.diff
LOG:
Author: Dave Lee
Date: 2022-01-13T16:37:49-08:00
New Revision: 1441ffe6a6da90e9c4800914eb0005b1087aa5d2
URL:
https://github.com/llvm/llvm-project/commit/1441ffe6a6da90e9c4800914eb0005b1087aa5d2
DIFF:
https://github.com/llvm/llvm-project/commit/1441ffe6a6da90e9c4800914eb0005b1087aa5d2.diff
LOG:
Author: Dave Lee
Date: 2022-01-15T10:20:52-08:00
New Revision: a7e7f541c0813e9d3f6c641ad8ff89619ec749d8
URL:
https://github.com/llvm/llvm-project/commit/a7e7f541c0813e9d3f6c641ad8ff89619ec749d8
DIFF:
https://github.com/llvm/llvm-project/commit/a7e7f541c0813e9d3f6c641ad8ff89619ec749d8.diff
LOG:
Author: Dave Lee
Date: 2022-01-15T14:20:12-08:00
New Revision: 696f9706f34d76bca8f8d496eabe1a67b60e8a54
URL:
https://github.com/llvm/llvm-project/commit/696f9706f34d76bca8f8d496eabe1a67b60e8a54
DIFF:
https://github.com/llvm/llvm-project/commit/696f9706f34d76bca8f8d496eabe1a67b60e8a54.diff
LOG:
Author: Dave Lee
Date: 2022-01-21T15:34:07-08:00
New Revision: 58ee14e29e98384bba6d2e1c1789b7f8e3060d24
URL:
https://github.com/llvm/llvm-project/commit/58ee14e29e98384bba6d2e1c1789b7f8e3060d24
DIFF:
https://github.com/llvm/llvm-project/commit/58ee14e29e98384bba6d2e1c1789b7f8e3060d24.diff
LOG:
Author: Dave Lee
Date: 2022-01-21T17:57:34-08:00
New Revision: b95150418fb6e2d22a0bd84abcdc1f3cc7e5a0bf
URL:
https://github.com/llvm/llvm-project/commit/b95150418fb6e2d22a0bd84abcdc1f3cc7e5a0bf
DIFF:
https://github.com/llvm/llvm-project/commit/b95150418fb6e2d22a0bd84abcdc1f3cc7e5a0bf.diff
LOG:
Author: Dave Lee
Date: 2022-02-07T12:34:12-08:00
New Revision: f8d889a789e2ac7012d202971d4e214d0b13949c
URL:
https://github.com/llvm/llvm-project/commit/f8d889a789e2ac7012d202971d4e214d0b13949c
DIFF:
https://github.com/llvm/llvm-project/commit/f8d889a789e2ac7012d202971d4e214d0b13949c.diff
LOG:
Author: Dave Lee
Date: 2022-02-07T14:43:44-08:00
New Revision: bf02586c57ced32ca66fd98fa3208b632820b1c6
URL:
https://github.com/llvm/llvm-project/commit/bf02586c57ced32ca66fd98fa3208b632820b1c6
DIFF:
https://github.com/llvm/llvm-project/commit/bf02586c57ced32ca66fd98fa3208b632820b1c6.diff
LOG:
Author: Dave Lee
Date: 2022-02-14T08:31:17-08:00
New Revision: 779bbbf27fe631154bdfaac7a443f198d4654688
URL:
https://github.com/llvm/llvm-project/commit/779bbbf27fe631154bdfaac7a443f198d4654688
DIFF:
https://github.com/llvm/llvm-project/commit/779bbbf27fe631154bdfaac7a443f198d4654688.diff
LOG:
Author: Dave Lee
Date: 2022-02-18T08:38:03-08:00
New Revision: f20f9f5a32c02e7df3fc9a9d48643471dc6d41a5
URL:
https://github.com/llvm/llvm-project/commit/f20f9f5a32c02e7df3fc9a9d48643471dc6d41a5
DIFF:
https://github.com/llvm/llvm-project/commit/f20f9f5a32c02e7df3fc9a9d48643471dc6d41a5.diff
LOG:
Author: Dave Lee
Date: 2022-03-09T08:33:08-08:00
New Revision: 704001e90b3d434c710ed178c95ae42961a7f7b0
URL:
https://github.com/llvm/llvm-project/commit/704001e90b3d434c710ed178c95ae42961a7f7b0
DIFF:
https://github.com/llvm/llvm-project/commit/704001e90b3d434c710ed178c95ae42961a7f7b0.diff
LOG:
Author: Dave Lee
Date: 2022-03-09T08:35:15-08:00
New Revision: 02def06e60369d616456251cb0f8e60115287128
URL:
https://github.com/llvm/llvm-project/commit/02def06e60369d616456251cb0f8e60115287128
DIFF:
https://github.com/llvm/llvm-project/commit/02def06e60369d616456251cb0f8e60115287128.diff
LOG:
Author: Dave Lee
Date: 2022-03-10T12:02:58-08:00
New Revision: e3dfa30501c55c4c4cb10e7554b404afa400cc08
URL:
https://github.com/llvm/llvm-project/commit/e3dfa30501c55c4c4cb10e7554b404afa400cc08
DIFF:
https://github.com/llvm/llvm-project/commit/e3dfa30501c55c4c4cb10e7554b404afa400cc08.diff
LOG:
Author: Dave Lee
Date: 2022-03-10T13:58:08-08:00
New Revision: 47f652d69517336fb0f6fbdcd6bf4dc962ae5e65
URL:
https://github.com/llvm/llvm-project/commit/47f652d69517336fb0f6fbdcd6bf4dc962ae5e65
DIFF:
https://github.com/llvm/llvm-project/commit/47f652d69517336fb0f6fbdcd6bf4dc962ae5e65.diff
LOG:
Author: Dave Lee
Date: 2022-03-10T14:56:21-08:00
New Revision: 14e4d2e5643e505039588d50b31e29e3042009f5
URL:
https://github.com/llvm/llvm-project/commit/14e4d2e5643e505039588d50b31e29e3042009f5
DIFF:
https://github.com/llvm/llvm-project/commit/14e4d2e5643e505039588d50b31e29e3042009f5.diff
LOG:
Author: Dave Lee
Date: 2022-03-11T12:40:06-08:00
New Revision: 3ca91adef8e885d89658a540860d3cee8746b1d9
URL:
https://github.com/llvm/llvm-project/commit/3ca91adef8e885d89658a540860d3cee8746b1d9
DIFF:
https://github.com/llvm/llvm-project/commit/3ca91adef8e885d89658a540860d3cee8746b1d9.diff
LOG:
Author: Dave Lee
Date: 2022-03-11T12:46:38-08:00
New Revision: 94bda3aaa12192660cd8da3a7b3bf9749b2a2c44
URL:
https://github.com/llvm/llvm-project/commit/94bda3aaa12192660cd8da3a7b3bf9749b2a2c44
DIFF:
https://github.com/llvm/llvm-project/commit/94bda3aaa12192660cd8da3a7b3bf9749b2a2c44.diff
LOG:
Author: Dave Lee
Date: 2022-07-10T18:56:06-07:00
New Revision: 4655400b211319c92e7561952814c7f8e82b8781
URL:
https://github.com/llvm/llvm-project/commit/4655400b211319c92e7561952814c7f8e82b8781
DIFF:
https://github.com/llvm/llvm-project/commit/4655400b211319c92e7561952814c7f8e82b8781.diff
LOG:
Author: Dave Lee
Date: 2022-07-13T16:56:53-07:00
New Revision: b5ccfeb6bfbbc5436b91a1e317f88e2c499c9306
URL:
https://github.com/llvm/llvm-project/commit/b5ccfeb6bfbbc5436b91a1e317f88e2c499c9306
DIFF:
https://github.com/llvm/llvm-project/commit/b5ccfeb6bfbbc5436b91a1e317f88e2c499c9306.diff
LOG:
Author: Dave Lee
Date: 2022-08-07T12:15:51-06:00
New Revision: e49c1568b6160f9a02da3295ac0d5c684fb64201
URL:
https://github.com/llvm/llvm-project/commit/e49c1568b6160f9a02da3295ac0d5c684fb64201
DIFF:
https://github.com/llvm/llvm-project/commit/e49c1568b6160f9a02da3295ac0d5c684fb64201.diff
LOG:
Author: Dave Lee
Date: 2022-08-07T12:17:36-06:00
New Revision: 87990fd8f4ba0e87ae21c69ae0cff4921c0e2cdf
URL:
https://github.com/llvm/llvm-project/commit/87990fd8f4ba0e87ae21c69ae0cff4921c0e2cdf
DIFF:
https://github.com/llvm/llvm-project/commit/87990fd8f4ba0e87ae21c69ae0cff4921c0e2cdf.diff
LOG:
Author: Dave Lee
Date: 2022-08-07T12:19:47-06:00
New Revision: c615e467dbaf5240e4f48f3536d4857ff58c7531
URL:
https://github.com/llvm/llvm-project/commit/c615e467dbaf5240e4f48f3536d4857ff58c7531
DIFF:
https://github.com/llvm/llvm-project/commit/c615e467dbaf5240e4f48f3536d4857ff58c7531.diff
LOG:
Author: Dave Lee
Date: 2022-08-11T15:24:57-07:00
New Revision: 28d0c0c2c8e88d2b6599ee34c84eb58eed43a626
URL:
https://github.com/llvm/llvm-project/commit/28d0c0c2c8e88d2b6599ee34c84eb58eed43a626
DIFF:
https://github.com/llvm/llvm-project/commit/28d0c0c2c8e88d2b6599ee34c84eb58eed43a626.diff
LOG:
Author: Dave Lee
Date: 2022-08-11T19:06:15-07:00
New Revision: 56f9cfe30c4488aade888905bb6280ecb952a613
URL:
https://github.com/llvm/llvm-project/commit/56f9cfe30c4488aade888905bb6280ecb952a613
DIFF:
https://github.com/llvm/llvm-project/commit/56f9cfe30c4488aade888905bb6280ecb952a613.diff
LOG:
Author: Dave Lee
Date: 2022-08-11T19:11:01-07:00
New Revision: 95367da43ddd16fc9c4cbe06a1823119f7841f48
URL:
https://github.com/llvm/llvm-project/commit/95367da43ddd16fc9c4cbe06a1823119f7841f48
DIFF:
https://github.com/llvm/llvm-project/commit/95367da43ddd16fc9c4cbe06a1823119f7841f48.diff
LOG:
Author: Dave Lee
Date: 2022-08-22T15:46:03-07:00
New Revision: c21dfa9e4931a0a339813a5d384fc2eb0deee235
URL:
https://github.com/llvm/llvm-project/commit/c21dfa9e4931a0a339813a5d384fc2eb0deee235
DIFF:
https://github.com/llvm/llvm-project/commit/c21dfa9e4931a0a339813a5d384fc2eb0deee235.diff
LOG:
https://github.com/kastiglione created
https://github.com/llvm/llvm-project/pull/78817
None
>From 52b3baa5905b7562fc5872bae8a2f6599ec9e040 Mon Sep 17 00:00:00 2001
From: Dave Lee
Date: Fri, 19 Jan 2024 16:17:17 -0800
Subject: [PATCH] [lldb] Skip ObjC timezone tests on macOS >= 14 (NFC)
---
.
https://github.com/kastiglione edited
https://github.com/llvm/llvm-project/pull/78817
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/78817
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/kastiglione created
https://github.com/llvm/llvm-project/pull/79644
The `(( )?&)?` appears to match types which are references. However lldb can
load the
correct data formatters without having to pattern match against a `&` suffix.
The suffix may have been needed at one poin
kastiglione wrote:
Because of clang-format, the diff obscures the fact that this change only
deletes `(( )?&)?` from these strings. There are no other changes.
https://github.com/llvm/llvm-project/pull/79644
___
lldb-commits mailing list
lldb-commits@
https://github.com/kastiglione closed
https://github.com/llvm/llvm-project/pull/79644
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
101 - 200 of 700 matches
Mail list logo