@@ -1244,6 +1244,17 @@ lldb::SBProcessInfo SBProcess::GetProcessInfo() {
return sb_proc_info;
}
+lldb::SBFileSpec SBProcess::GetCoreFile() {
+ LLDB_INSTRUMENT_VA(this);
+
+ ProcessSP process_sp(GetSP());
+ FileSpec core_file;
+ if (process_sp) {
+core_file = process_
https://github.com/jasonmolenda edited
https://github.com/llvm/llvm-project/pull/80767
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
jasonmolenda wrote:
Did you mean to include changes to DiagnosticEventTest.cpp and
ProgressReportTest.cpp to use this new global?
https://github.com/llvm/llvm-project/pull/80786
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.l
https://github.com/jasonmolenda approved this pull request.
LGTM.
https://github.com/llvm/llvm-project/pull/80786
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -5,10 +5,11 @@ let Definition = "modulelist" in {
Global,
DefaultTrue,
Desc<"Control the use of external tools and repositories to locate symbol
files. Directories listed in target.debug-file-search-paths and directory of
the executable are always checked first
jasonmolenda wrote:
I like this change, this will be a very handy capability for people debugging
corefiles & live sessions on remote computers when they have a mechanism to
find the binaries and/or debug info for those processes, without needing to
download all of them. One change I would als
@@ -5,10 +5,11 @@ let Definition = "modulelist" in {
Global,
DefaultTrue,
Desc<"Control the use of external tools and repositories to locate symbol
files. Directories listed in target.debug-file-search-paths and directory of
the executable are always checked first
@@ -5,10 +5,11 @@ let Definition = "modulelist" in {
Global,
DefaultTrue,
Desc<"Control the use of external tools and repositories to locate symbol
files. Directories listed in target.debug-file-search-paths and directory of
the executable are always checked first
https://github.com/jasonmolenda approved this pull request.
LGTM.
https://github.com/llvm/llvm-project/pull/81041
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda created
https://github.com/llvm/llvm-project/pull/81075
debugserver will not compress small packets; the overhead of the compression
header makes this useful for larger packets. I default to 384 bytes in
debugserver, and added an option for lldb to request a di
https://github.com/jasonmolenda created
https://github.com/llvm/llvm-project/pull/81078
This formatter
https://github.com/llvm/llvm-project/pull/78609
was originally passing the signed seconds (which can refer to times in the
past) with an unsigned printf formatter, and had tests that expected
jasonmolenda wrote:
Created a new PR with my proposed fix
https://github.com/llvm/llvm-project/pull/81078
https://github.com/llvm/llvm-project/pull/78609
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/
jasonmolenda wrote:
Thanks for the review. Yeah, testing isn't simple today because debugserver
only enables compression on always-remote systems (iOS, watchOS, etc) (which
may even be communicating over Bluetooth/Wifi), it doesn't enable this on
macOS. We could have a mode to enable it on m
https://github.com/jasonmolenda closed
https://github.com/llvm/llvm-project/pull/81075
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda closed
https://github.com/llvm/llvm-project/pull/81078
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda created
https://github.com/llvm/llvm-project/pull/81573
On arm64 machines, when there is a hardware breakpoint or watchpoint set, and
lldb has instruction-stepped a thread, and then done a Process::Resume, we will
sometimes receive an extra "instruction step com
https://github.com/jasonmolenda updated
https://github.com/llvm/llvm-project/pull/81573
>From 177a242271c99ed3fec4c5f211cd6d07c6d88488 Mon Sep 17 00:00:00 2001
From: Jason Molenda
Date: Mon, 12 Feb 2024 21:34:13 -0800
Subject: [PATCH 1/2] [lldb] Detect a Darwin kernel issue and work around it
jasonmolenda wrote:
Thanks for all the feedback @bulbazord @jimingham , updated the PR with those
issues addressed.
https://github.com/llvm/llvm-project/pull/81573
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bi
https://github.com/jasonmolenda created
https://github.com/llvm/llvm-project/pull/81710
The concurrent tests all do a pthread_join at the end, and concurrent_base.py
stops after that pthread_join and sanity checks that only 1 thread is running.
On macOS, after pthread_join() has completed, th
https://github.com/jasonmolenda edited
https://github.com/llvm/llvm-project/pull/81710
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda closed
https://github.com/llvm/llvm-project/pull/81710
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/jasonmolenda closed
https://github.com/llvm/llvm-project/pull/81573
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Jason Molenda
Date: 2024-02-15T23:53:14-08:00
New Revision: 4cf458c696047d6d2991c121da7a5c165ff747ce
URL:
https://github.com/llvm/llvm-project/commit/4cf458c696047d6d2991c121da7a5c165ff747ce
DIFF:
https://github.com/llvm/llvm-project/commit/4cf458c696047d6d2991c121da7a5c165ff747ce.diff
Author: Jason Molenda
Date: 2022-03-23T17:12:17-07:00
New Revision: 9a8a0a38613ae190740923a7dcdf381a1b6fc55e
URL:
https://github.com/llvm/llvm-project/commit/9a8a0a38613ae190740923a7dcdf381a1b6fc55e
DIFF:
https://github.com/llvm/llvm-project/commit/9a8a0a38613ae190740923a7dcdf381a1b6fc55e.diff
Author: Jason Molenda
Date: 2022-03-24T15:44:57-07:00
New Revision: 99515783a63cd5018fa9231872dc5c8b13d64947
URL:
https://github.com/llvm/llvm-project/commit/99515783a63cd5018fa9231872dc5c8b13d64947
DIFF:
https://github.com/llvm/llvm-project/commit/99515783a63cd5018fa9231872dc5c8b13d64947.diff
Author: Jason Molenda
Date: 2022-03-31T23:46:44-07:00
New Revision: c04fdfa17e6df33f6805f083bee22f5901d88344
URL:
https://github.com/llvm/llvm-project/commit/c04fdfa17e6df33f6805f083bee22f5901d88344
DIFF:
https://github.com/llvm/llvm-project/commit/c04fdfa17e6df33f6805f083bee22f5901d88344.diff
Author: Jason Molenda
Date: 2022-04-04T14:14:02-07:00
New Revision: 7ebcd8891a7acc265cee4996d55a287a035f8771
URL:
https://github.com/llvm/llvm-project/commit/7ebcd8891a7acc265cee4996d55a287a035f8771
DIFF:
https://github.com/llvm/llvm-project/commit/7ebcd8891a7acc265cee4996d55a287a035f8771.diff
Author: Jason Molenda
Date: 2022-04-05T12:49:40-07:00
New Revision: ee394177e6b797917e4d8e0d786d84046599d2c5
URL:
https://github.com/llvm/llvm-project/commit/ee394177e6b797917e4d8e0d786d84046599d2c5
DIFF:
https://github.com/llvm/llvm-project/commit/ee394177e6b797917e4d8e0d786d84046599d2c5.diff
Author: Jason Molenda
Date: 2022-04-06T23:36:52-07:00
New Revision: 4d3cc27831383987b38e60875573982af5e0538b
URL:
https://github.com/llvm/llvm-project/commit/4d3cc27831383987b38e60875573982af5e0538b
DIFF:
https://github.com/llvm/llvm-project/commit/4d3cc27831383987b38e60875573982af5e0538b.diff
Author: Jason Molenda
Date: 2022-04-26T18:32:18-07:00
New Revision: a2681c43308c5d1748a7ade4df5188972a3dd8aa
URL:
https://github.com/llvm/llvm-project/commit/a2681c43308c5d1748a7ade4df5188972a3dd8aa
DIFF:
https://github.com/llvm/llvm-project/commit/a2681c43308c5d1748a7ade4df5188972a3dd8aa.diff
Author: Jason Molenda
Date: 2022-04-29T14:34:06-07:00
New Revision: 6e56c4961a106b8fde69ffcf9f803fe0890722fa
URL:
https://github.com/llvm/llvm-project/commit/6e56c4961a106b8fde69ffcf9f803fe0890722fa
DIFF:
https://github.com/llvm/llvm-project/commit/6e56c4961a106b8fde69ffcf9f803fe0890722fa.diff
Author: Jason Molenda
Date: 2022-04-29T15:00:20-07:00
New Revision: 9c8179f9ce10158d6a9f28ec932e2facfde413d8
URL:
https://github.com/llvm/llvm-project/commit/9c8179f9ce10158d6a9f28ec932e2facfde413d8
DIFF:
https://github.com/llvm/llvm-project/commit/9c8179f9ce10158d6a9f28ec932e2facfde413d8.diff
Author: Jason Molenda
Date: 2022-05-04T14:54:17-07:00
New Revision: df552edb08c4a1f7600b97444f6315a63c998c59
URL:
https://github.com/llvm/llvm-project/commit/df552edb08c4a1f7600b97444f6315a63c998c59
DIFF:
https://github.com/llvm/llvm-project/commit/df552edb08c4a1f7600b97444f6315a63c998c59.diff
Author: Jason Molenda
Date: 2022-05-04T15:28:02-07:00
New Revision: a6553d97df39ee810aedb6ba27522910986b4bf5
URL:
https://github.com/llvm/llvm-project/commit/a6553d97df39ee810aedb6ba27522910986b4bf5
DIFF:
https://github.com/llvm/llvm-project/commit/a6553d97df39ee810aedb6ba27522910986b4bf5.diff
Author: Jason Molenda
Date: 2022-05-05T14:18:21-07:00
New Revision: b6388e4a0050fa248f774f5dacfa3e566e8daef1
URL:
https://github.com/llvm/llvm-project/commit/b6388e4a0050fa248f774f5dacfa3e566e8daef1
DIFF:
https://github.com/llvm/llvm-project/commit/b6388e4a0050fa248f774f5dacfa3e566e8daef1.diff
Author: Jason Molenda
Date: 2022-05-05T17:55:22-07:00
New Revision: 2be791e32af33b7ef735bb180a8a91ee501d0560
URL:
https://github.com/llvm/llvm-project/commit/2be791e32af33b7ef735bb180a8a91ee501d0560
DIFF:
https://github.com/llvm/llvm-project/commit/2be791e32af33b7ef735bb180a8a91ee501d0560.diff
Author: Jason Molenda
Date: 2022-05-16T15:30:39-07:00
New Revision: d2f3b6020fbfa2dd56ebd03c942acda961c421e2
URL:
https://github.com/llvm/llvm-project/commit/d2f3b6020fbfa2dd56ebd03c942acda961c421e2
DIFF:
https://github.com/llvm/llvm-project/commit/d2f3b6020fbfa2dd56ebd03c942acda961c421e2.diff
Author: Jason Molenda
Date: 2022-05-25T16:05:51-07:00
New Revision: bef4da4a6aef8196f007f44e3e9c8e3419ffb623
URL:
https://github.com/llvm/llvm-project/commit/bef4da4a6aef8196f007f44e3e9c8e3419ffb623
DIFF:
https://github.com/llvm/llvm-project/commit/bef4da4a6aef8196f007f44e3e9c8e3419ffb623.diff
Author: Jason Molenda
Date: 2022-05-26T00:21:44-07:00
New Revision: 8ee35c5558aa86e3be5f2882f1db030d6281578f
URL:
https://github.com/llvm/llvm-project/commit/8ee35c5558aa86e3be5f2882f1db030d6281578f
DIFF:
https://github.com/llvm/llvm-project/commit/8ee35c5558aa86e3be5f2882f1db030d6281578f.diff
Author: Jason Molenda
Date: 2022-05-26T00:30:12-07:00
New Revision: c274b6e5830ea88d3f55d6dc1d2b99e38cf6595e
URL:
https://github.com/llvm/llvm-project/commit/c274b6e5830ea88d3f55d6dc1d2b99e38cf6595e
DIFF:
https://github.com/llvm/llvm-project/commit/c274b6e5830ea88d3f55d6dc1d2b99e38cf6595e.diff
Author: Jason Molenda
Date: 2022-05-26T00:46:54-07:00
New Revision: 56ac85a20fb98393d033582ee4dc86993843726d
URL:
https://github.com/llvm/llvm-project/commit/56ac85a20fb98393d033582ee4dc86993843726d
DIFF:
https://github.com/llvm/llvm-project/commit/56ac85a20fb98393d033582ee4dc86993843726d.diff
Author: Jason Molenda
Date: 2022-05-26T11:12:37-07:00
New Revision: 8a467284d5608522fdf80cb78056d42d28f5ebb5
URL:
https://github.com/llvm/llvm-project/commit/8a467284d5608522fdf80cb78056d42d28f5ebb5
DIFF:
https://github.com/llvm/llvm-project/commit/8a467284d5608522fdf80cb78056d42d28f5ebb5.diff
Author: Jason Molenda
Date: 2022-05-26T11:12:37-07:00
New Revision: bd67468645c08a96aec7839c30385956edd88021
URL:
https://github.com/llvm/llvm-project/commit/bd67468645c08a96aec7839c30385956edd88021
DIFF:
https://github.com/llvm/llvm-project/commit/bd67468645c08a96aec7839c30385956edd88021.diff
Author: Jason Molenda
Date: 2022-05-26T11:24:56-07:00
New Revision: ea6d0c4b2a1ec9c12aa5513ddf574f3146cf9025
URL:
https://github.com/llvm/llvm-project/commit/ea6d0c4b2a1ec9c12aa5513ddf574f3146cf9025
DIFF:
https://github.com/llvm/llvm-project/commit/ea6d0c4b2a1ec9c12aa5513ddf574f3146cf9025.diff
Author: Jason Molenda
Date: 2022-05-28T13:12:57-07:00
New Revision: 2f23abd6c692134c69b6d19f726d51e11200d8e4
URL:
https://github.com/llvm/llvm-project/commit/2f23abd6c692134c69b6d19f726d51e11200d8e4
DIFF:
https://github.com/llvm/llvm-project/commit/2f23abd6c692134c69b6d19f726d51e11200d8e4.diff
Author: Jason Molenda
Date: 2022-06-07T13:34:30-07:00
New Revision: 8d5a6007f9681ded3e6442bafdea87e733d771ea
URL:
https://github.com/llvm/llvm-project/commit/8d5a6007f9681ded3e6442bafdea87e733d771ea
DIFF:
https://github.com/llvm/llvm-project/commit/8d5a6007f9681ded3e6442bafdea87e733d771ea.diff
Author: Jason Molenda
Date: 2022-06-07T14:33:40-07:00
New Revision: d572fc3b49bd53b7871223b3054b235cf99f6b61
URL:
https://github.com/llvm/llvm-project/commit/d572fc3b49bd53b7871223b3054b235cf99f6b61
DIFF:
https://github.com/llvm/llvm-project/commit/d572fc3b49bd53b7871223b3054b235cf99f6b61.diff
Author: Jason Molenda
Date: 2022-06-21T12:57:42-07:00
New Revision: 1490f87154fb31222903a05f6d64c0508016f55c
URL:
https://github.com/llvm/llvm-project/commit/1490f87154fb31222903a05f6d64c0508016f55c
DIFF:
https://github.com/llvm/llvm-project/commit/1490f87154fb31222903a05f6d64c0508016f55c.diff
Author: Jason Molenda
Date: 2022-12-05T15:11:43-08:00
New Revision: fe3103fa485f67b15efffd11d592a3341eb7bd57
URL:
https://github.com/llvm/llvm-project/commit/fe3103fa485f67b15efffd11d592a3341eb7bd57
DIFF:
https://github.com/llvm/llvm-project/commit/fe3103fa485f67b15efffd11d592a3341eb7bd57.diff
Author: Jason Molenda
Date: 2022-12-13T11:42:56-08:00
New Revision: ee11ef6dc0b293161dd916b64581eb37a231709b
URL:
https://github.com/llvm/llvm-project/commit/ee11ef6dc0b293161dd916b64581eb37a231709b
DIFF:
https://github.com/llvm/llvm-project/commit/ee11ef6dc0b293161dd916b64581eb37a231709b.diff
Author: Jason Molenda
Date: 2022-12-13T14:52:46-08:00
New Revision: ad10b3dc3053fbbdea4b4b3c3e2b913fe2224647
URL:
https://github.com/llvm/llvm-project/commit/ad10b3dc3053fbbdea4b4b3c3e2b913fe2224647
DIFF:
https://github.com/llvm/llvm-project/commit/ad10b3dc3053fbbdea4b4b3c3e2b913fe2224647.diff
Author: Jason Molenda
Date: 2023-01-04T13:51:26-08:00
New Revision: da4e82753f3130ca2ff973ad90092ad1c035038a
URL:
https://github.com/llvm/llvm-project/commit/da4e82753f3130ca2ff973ad90092ad1c035038a
DIFF:
https://github.com/llvm/llvm-project/commit/da4e82753f3130ca2ff973ad90092ad1c035038a.diff
Author: Jason Molenda
Date: 2023-01-04T16:11:51-08:00
New Revision: 0dc7ecb1a70ec9f6eb41ebb4d1edf5d2acdfb4ce
URL:
https://github.com/llvm/llvm-project/commit/0dc7ecb1a70ec9f6eb41ebb4d1edf5d2acdfb4ce
DIFF:
https://github.com/llvm/llvm-project/commit/0dc7ecb1a70ec9f6eb41ebb4d1edf5d2acdfb4ce.diff
Author: Jason Molenda
Date: 2023-01-06T10:46:39-08:00
New Revision: 75d268d1fa607a2a9c814040a8d8d5267b49de4c
URL:
https://github.com/llvm/llvm-project/commit/75d268d1fa607a2a9c814040a8d8d5267b49de4c
DIFF:
https://github.com/llvm/llvm-project/commit/75d268d1fa607a2a9c814040a8d8d5267b49de4c.diff
Author: Jason Molenda
Date: 2023-01-18T12:33:05-08:00
New Revision: db223b7f01f70cbd8459d0db9b20dfe9a3b099a7
URL:
https://github.com/llvm/llvm-project/commit/db223b7f01f70cbd8459d0db9b20dfe9a3b099a7
DIFF:
https://github.com/llvm/llvm-project/commit/db223b7f01f70cbd8459d0db9b20dfe9a3b099a7.diff
Author: Jason Molenda
Date: 2023-01-23T10:44:19-08:00
New Revision: 484bc2bcc7990f4ecaf40f3d806ed870cdbdfd95
URL:
https://github.com/llvm/llvm-project/commit/484bc2bcc7990f4ecaf40f3d806ed870cdbdfd95
DIFF:
https://github.com/llvm/llvm-project/commit/484bc2bcc7990f4ecaf40f3d806ed870cdbdfd95.diff
Author: Jason Molenda
Date: 2023-01-27T09:40:54-08:00
New Revision: 841b26f1d80f69c45bbf2426761f3e3b9c927d86
URL:
https://github.com/llvm/llvm-project/commit/841b26f1d80f69c45bbf2426761f3e3b9c927d86
DIFF:
https://github.com/llvm/llvm-project/commit/841b26f1d80f69c45bbf2426761f3e3b9c927d86.diff
Author: Jason Molenda
Date: 2023-01-27T09:40:54-08:00
New Revision: 8112bd2cb4845e0449088c764ad36748514259b8
URL:
https://github.com/llvm/llvm-project/commit/8112bd2cb4845e0449088c764ad36748514259b8
DIFF:
https://github.com/llvm/llvm-project/commit/8112bd2cb4845e0449088c764ad36748514259b8.diff
Author: Jason Molenda
Date: 2023-02-06T14:53:50-08:00
New Revision: 701030c3ecba0621ce5d325667fb75b73cf1532b
URL:
https://github.com/llvm/llvm-project/commit/701030c3ecba0621ce5d325667fb75b73cf1532b
DIFF:
https://github.com/llvm/llvm-project/commit/701030c3ecba0621ce5d325667fb75b73cf1532b.diff
Author: Jason Molenda
Date: 2023-02-07T14:16:04-08:00
New Revision: 62c747517cd9a0d57f198e0fd0984f71fe75240f
URL:
https://github.com/llvm/llvm-project/commit/62c747517cd9a0d57f198e0fd0984f71fe75240f
DIFF:
https://github.com/llvm/llvm-project/commit/62c747517cd9a0d57f198e0fd0984f71fe75240f.diff
Author: Jason Molenda
Date: 2023-02-07T16:05:24-08:00
New Revision: 4a8cc285e9f3252ca31941dccfddf8fd10c9911b
URL:
https://github.com/llvm/llvm-project/commit/4a8cc285e9f3252ca31941dccfddf8fd10c9911b
DIFF:
https://github.com/llvm/llvm-project/commit/4a8cc285e9f3252ca31941dccfddf8fd10c9911b.diff
Author: Jason Molenda
Date: 2023-02-07T16:05:24-08:00
New Revision: b1d8f40484dfcb28b19c83aa33a674308b17e5dc
URL:
https://github.com/llvm/llvm-project/commit/b1d8f40484dfcb28b19c83aa33a674308b17e5dc
DIFF:
https://github.com/llvm/llvm-project/commit/b1d8f40484dfcb28b19c83aa33a674308b17e5dc.diff
Author: Jason Molenda
Date: 2023-02-09T10:44:40-08:00
New Revision: 49470f1eacca6aa5ab0f860347aa282a79323161
URL:
https://github.com/llvm/llvm-project/commit/49470f1eacca6aa5ab0f860347aa282a79323161
DIFF:
https://github.com/llvm/llvm-project/commit/49470f1eacca6aa5ab0f860347aa282a79323161.diff
Author: Jason Molenda
Date: 2023-02-13T15:16:41-08:00
New Revision: ee88f11770032eac8998664e7102d37f54b9f027
URL:
https://github.com/llvm/llvm-project/commit/ee88f11770032eac8998664e7102d37f54b9f027
DIFF:
https://github.com/llvm/llvm-project/commit/ee88f11770032eac8998664e7102d37f54b9f027.diff
Author: Jason Molenda
Date: 2023-02-14T11:35:39-08:00
New Revision: eaeb8ddd4a9d3799470479a532e721d017f22a70
URL:
https://github.com/llvm/llvm-project/commit/eaeb8ddd4a9d3799470479a532e721d017f22a70
DIFF:
https://github.com/llvm/llvm-project/commit/eaeb8ddd4a9d3799470479a532e721d017f22a70.diff
Author: Jason Molenda
Date: 2023-02-28T13:37:03-08:00
New Revision: b22dcaf113280278293639a02207edf78d103fb8
URL:
https://github.com/llvm/llvm-project/commit/b22dcaf113280278293639a02207edf78d103fb8
DIFF:
https://github.com/llvm/llvm-project/commit/b22dcaf113280278293639a02207edf78d103fb8.diff
Author: Jason Molenda
Date: 2023-02-28T16:57:11-08:00
New Revision: f136ca84830942451fc20f8980dbc36028520920
URL:
https://github.com/llvm/llvm-project/commit/f136ca84830942451fc20f8980dbc36028520920
DIFF:
https://github.com/llvm/llvm-project/commit/f136ca84830942451fc20f8980dbc36028520920.diff
Author: Jason Molenda
Date: 2023-03-02T13:32:37-08:00
New Revision: 4d635be2dbadc77522eddc9668697385a3b9f8b4
URL:
https://github.com/llvm/llvm-project/commit/4d635be2dbadc77522eddc9668697385a3b9f8b4
DIFF:
https://github.com/llvm/llvm-project/commit/4d635be2dbadc77522eddc9668697385a3b9f8b4.diff
Author: Jason Molenda
Date: 2023-03-02T14:36:37-08:00
New Revision: 7e770f9c1713046cb7b724b51e928186ec123c26
URL:
https://github.com/llvm/llvm-project/commit/7e770f9c1713046cb7b724b51e928186ec123c26
DIFF:
https://github.com/llvm/llvm-project/commit/7e770f9c1713046cb7b724b51e928186ec123c26.diff
Author: Jason Molenda
Date: 2023-03-08T16:51:27-08:00
New Revision: 794d2089cd741135b60e94ac2495174a03b38143
URL:
https://github.com/llvm/llvm-project/commit/794d2089cd741135b60e94ac2495174a03b38143
DIFF:
https://github.com/llvm/llvm-project/commit/794d2089cd741135b60e94ac2495174a03b38143.diff
Author: Jason Molenda
Date: 2023-03-08T18:02:20-08:00
New Revision: 8db8a4e8eddf91bfaee62f83ff10a51e7125d4e4
URL:
https://github.com/llvm/llvm-project/commit/8db8a4e8eddf91bfaee62f83ff10a51e7125d4e4
DIFF:
https://github.com/llvm/llvm-project/commit/8db8a4e8eddf91bfaee62f83ff10a51e7125d4e4.diff
Author: Jason Molenda
Date: 2023-03-09T14:56:22-08:00
New Revision: 7f25c3e25f0afa91ae47c7247cca7fabaa2a7dd5
URL:
https://github.com/llvm/llvm-project/commit/7f25c3e25f0afa91ae47c7247cca7fabaa2a7dd5
DIFF:
https://github.com/llvm/llvm-project/commit/7f25c3e25f0afa91ae47c7247cca7fabaa2a7dd5.diff
Author: Jason Molenda
Date: 2023-04-03T13:49:51-07:00
New Revision: 8b092714c304defb00876a01995af3b114dadc92
URL:
https://github.com/llvm/llvm-project/commit/8b092714c304defb00876a01995af3b114dadc92
DIFF:
https://github.com/llvm/llvm-project/commit/8b092714c304defb00876a01995af3b114dadc92.diff
Author: Jason Molenda
Date: 2023-04-12T17:57:21-07:00
New Revision: e38b0fa83a933a6b20064a37b8d8ebd9ec1de499
URL:
https://github.com/llvm/llvm-project/commit/e38b0fa83a933a6b20064a37b8d8ebd9ec1de499
DIFF:
https://github.com/llvm/llvm-project/commit/e38b0fa83a933a6b20064a37b8d8ebd9ec1de499.diff
Author: Jason Molenda
Date: 2023-04-12T18:36:17-07:00
New Revision: e76cfaca70be0b45e62149e52f68d8352fa8ea2f
URL:
https://github.com/llvm/llvm-project/commit/e76cfaca70be0b45e62149e52f68d8352fa8ea2f
DIFF:
https://github.com/llvm/llvm-project/commit/e76cfaca70be0b45e62149e52f68d8352fa8ea2f.diff
Author: Jason Molenda
Date: 2023-04-18T13:01:49-07:00
New Revision: 53430bfd5c9d0074dd6de06dccea366e1d40bce4
URL:
https://github.com/llvm/llvm-project/commit/53430bfd5c9d0074dd6de06dccea366e1d40bce4
DIFF:
https://github.com/llvm/llvm-project/commit/53430bfd5c9d0074dd6de06dccea366e1d40bce4.diff
Author: Jason Molenda
Date: 2023-04-21T13:17:43-07:00
New Revision: d9bc7f7844e803ea622f29e7367c8ba6dccde442
URL:
https://github.com/llvm/llvm-project/commit/d9bc7f7844e803ea622f29e7367c8ba6dccde442
DIFF:
https://github.com/llvm/llvm-project/commit/d9bc7f7844e803ea622f29e7367c8ba6dccde442.diff
Author: Jason Molenda
Date: 2023-04-26T13:06:07-07:00
New Revision: 6b6bac2cd81df86354196304815b96c53bd93305
URL:
https://github.com/llvm/llvm-project/commit/6b6bac2cd81df86354196304815b96c53bd93305
DIFF:
https://github.com/llvm/llvm-project/commit/6b6bac2cd81df86354196304815b96c53bd93305.diff
Author: Jason Molenda
Date: 2023-04-26T15:45:29-07:00
New Revision: b305bff3ea156311612941664ef8280a4d10
URL:
https://github.com/llvm/llvm-project/commit/b305bff3ea156311612941664ef8280a4d10
DIFF:
https://github.com/llvm/llvm-project/commit/b305bff3ea156311612941664ef8280a4d10.diff
Author: Jason Molenda
Date: 2023-04-28T18:24:38-07:00
New Revision: 5679379cc7df198a73c137e691346088338f
URL:
https://github.com/llvm/llvm-project/commit/5679379cc7df198a73c137e691346088338f
DIFF:
https://github.com/llvm/llvm-project/commit/5679379cc7df198a73c137e691346088338f.diff
Author: Jason Molenda
Date: 2023-05-04T13:14:10-07:00
New Revision: 4fac08ff1dcd02c89c677365b10921399caf79df
URL:
https://github.com/llvm/llvm-project/commit/4fac08ff1dcd02c89c677365b10921399caf79df
DIFF:
https://github.com/llvm/llvm-project/commit/4fac08ff1dcd02c89c677365b10921399caf79df.diff
Author: Jason Molenda
Date: 2023-05-04T13:23:51-07:00
New Revision: 2e16e41b28b1b1e027d0303e1a37ccbded96a46f
URL:
https://github.com/llvm/llvm-project/commit/2e16e41b28b1b1e027d0303e1a37ccbded96a46f
DIFF:
https://github.com/llvm/llvm-project/commit/2e16e41b28b1b1e027d0303e1a37ccbded96a46f.diff
Author: Jason Molenda
Date: 2023-05-08T20:34:58-07:00
New Revision: 4e93f91148ae4698b31ee397fb60410441df8b6b
URL:
https://github.com/llvm/llvm-project/commit/4e93f91148ae4698b31ee397fb60410441df8b6b
DIFF:
https://github.com/llvm/llvm-project/commit/4e93f91148ae4698b31ee397fb60410441df8b6b.diff
Author: Jason Molenda
Date: 2023-05-09T17:01:06-07:00
New Revision: 448bd59e18721e5357a37f080051db87cc3a4448
URL:
https://github.com/llvm/llvm-project/commit/448bd59e18721e5357a37f080051db87cc3a4448
DIFF:
https://github.com/llvm/llvm-project/commit/448bd59e18721e5357a37f080051db87cc3a4448.diff
Author: Jason Molenda
Date: 2023-05-10T16:42:38-07:00
New Revision: f9759d0cb6dc19aa67dbe1c3d56404041f8b4c7e
URL:
https://github.com/llvm/llvm-project/commit/f9759d0cb6dc19aa67dbe1c3d56404041f8b4c7e
DIFF:
https://github.com/llvm/llvm-project/commit/f9759d0cb6dc19aa67dbe1c3d56404041f8b4c7e.diff
Author: Jason Molenda
Date: 2023-05-16T18:15:59-07:00
New Revision: e3227e74e3bfab7c5aed07c20b515202275ce7c4
URL:
https://github.com/llvm/llvm-project/commit/e3227e74e3bfab7c5aed07c20b515202275ce7c4
DIFF:
https://github.com/llvm/llvm-project/commit/e3227e74e3bfab7c5aed07c20b515202275ce7c4.diff
Author: Jason Molenda
Date: 2023-05-25T19:13:16-07:00
New Revision: c9ee63138189368674cd201891577e65bd289ed4
URL:
https://github.com/llvm/llvm-project/commit/c9ee63138189368674cd201891577e65bd289ed4
DIFF:
https://github.com/llvm/llvm-project/commit/c9ee63138189368674cd201891577e65bd289ed4.diff
Author: Jason Molenda
Date: 2023-05-26T15:32:10-07:00
New Revision: f32d24d57742054cd1131dfa5c21f363139bf59b
URL:
https://github.com/llvm/llvm-project/commit/f32d24d57742054cd1131dfa5c21f363139bf59b
DIFF:
https://github.com/llvm/llvm-project/commit/f32d24d57742054cd1131dfa5c21f363139bf59b.diff
Author: Jason Molenda
Date: 2023-05-30T15:36:40-07:00
New Revision: 48a12ae8212c22d9d1d84270db659ac76ecfa972
URL:
https://github.com/llvm/llvm-project/commit/48a12ae8212c22d9d1d84270db659ac76ecfa972
DIFF:
https://github.com/llvm/llvm-project/commit/48a12ae8212c22d9d1d84270db659ac76ecfa972.diff
Author: Jason Molenda
Date: 2023-05-31T18:38:34-07:00
New Revision: 21dfaf60a763795e3834d67def48fc2ba5214e59
URL:
https://github.com/llvm/llvm-project/commit/21dfaf60a763795e3834d67def48fc2ba5214e59
DIFF:
https://github.com/llvm/llvm-project/commit/21dfaf60a763795e3834d67def48fc2ba5214e59.diff
Author: Jason Molenda
Date: 2023-06-14T13:49:26-07:00
New Revision: 90d9f88f19a128a6bacd7c8db594feb96047cded
URL:
https://github.com/llvm/llvm-project/commit/90d9f88f19a128a6bacd7c8db594feb96047cded
DIFF:
https://github.com/llvm/llvm-project/commit/90d9f88f19a128a6bacd7c8db594feb96047cded.diff
Author: Jason Molenda
Date: 2023-06-14T13:49:26-07:00
New Revision: 0ce7037b5edd0f1937c9d9572ab12528d26091ed
URL:
https://github.com/llvm/llvm-project/commit/0ce7037b5edd0f1937c9d9572ab12528d26091ed
DIFF:
https://github.com/llvm/llvm-project/commit/0ce7037b5edd0f1937c9d9572ab12528d26091ed.diff
Author: Jason Molenda
Date: 2023-06-15T15:41:37-07:00
New Revision: 6a8e2538afc10e6b7a321fd38bf5faf550518f2a
URL:
https://github.com/llvm/llvm-project/commit/6a8e2538afc10e6b7a321fd38bf5faf550518f2a
DIFF:
https://github.com/llvm/llvm-project/commit/6a8e2538afc10e6b7a321fd38bf5faf550518f2a.diff
Author: Jason Molenda
Date: 2023-06-15T17:38:45-07:00
New Revision: 538df1d8a2428d06de7f26c859969ddec14928c1
URL:
https://github.com/llvm/llvm-project/commit/538df1d8a2428d06de7f26c859969ddec14928c1
DIFF:
https://github.com/llvm/llvm-project/commit/538df1d8a2428d06de7f26c859969ddec14928c1.diff
Author: Jason Molenda
Date: 2023-06-21T14:56:11-07:00
New Revision: 3858e9d6c5136e5a491795c1dcb720361c525526
URL:
https://github.com/llvm/llvm-project/commit/3858e9d6c5136e5a491795c1dcb720361c525526
DIFF:
https://github.com/llvm/llvm-project/commit/3858e9d6c5136e5a491795c1dcb720361c525526.diff
Author: Jason Molenda
Date: 2023-06-26T17:46:53-07:00
New Revision: 2c1108f44342019a67ce55bb98e2a05b57a70b9a
URL:
https://github.com/llvm/llvm-project/commit/2c1108f44342019a67ce55bb98e2a05b57a70b9a
DIFF:
https://github.com/llvm/llvm-project/commit/2c1108f44342019a67ce55bb98e2a05b57a70b9a.diff
Author: Jason Molenda
Date: 2023-06-27T16:18:08-07:00
New Revision: 7075f9d926c93efefacb72caf17e93ae00b3703b
URL:
https://github.com/llvm/llvm-project/commit/7075f9d926c93efefacb72caf17e93ae00b3703b
DIFF:
https://github.com/llvm/llvm-project/commit/7075f9d926c93efefacb72caf17e93ae00b3703b.diff
Author: Jason Molenda
Date: 2023-06-29T17:02:54-07:00
New Revision: ad451146e8f59de76e393094d3aafc97a854c40b
URL:
https://github.com/llvm/llvm-project/commit/ad451146e8f59de76e393094d3aafc97a854c40b
DIFF:
https://github.com/llvm/llvm-project/commit/ad451146e8f59de76e393094d3aafc97a854c40b.diff
Author: Jason Molenda
Date: 2023-06-29T17:51:41-07:00
New Revision: 623e8455919af69b039fe7450118ba953423a027
URL:
https://github.com/llvm/llvm-project/commit/623e8455919af69b039fe7450118ba953423a027
DIFF:
https://github.com/llvm/llvm-project/commit/623e8455919af69b039fe7450118ba953423a027.diff
Author: Jason Molenda
Date: 2023-06-29T18:22:58-07:00
New Revision: 37d11e94a4eb5452158f0ae73ed7752136e41439
URL:
https://github.com/llvm/llvm-project/commit/37d11e94a4eb5452158f0ae73ed7752136e41439
DIFF:
https://github.com/llvm/llvm-project/commit/37d11e94a4eb5452158f0ae73ed7752136e41439.diff
1101 - 1200 of 1821 matches
Mail list logo