[Lldb-commits] [lldb] Add a new SBProcess:: GetCoreFile() API (PR #80767)

2024-02-05 Thread Jason Molenda via lldb-commits
@@ -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_

[Lldb-commits] [lldb] Add a new SBProcess:: GetCoreFile() API (PR #80767)

2024-02-05 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb][unittest] Add call_once flag to initialize debugger (PR #80786)

2024-02-05 Thread Jason Molenda via 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

[Lldb-commits] [lldb] [lldb][unittest] Add call_once flag to initialize debugger (PR #80786)

2024-02-05 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] Expand background symbol lookup (PR #80890)

2024-02-06 Thread Jason Molenda via 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

[Lldb-commits] [lldb] [lldb] Expand background symbol lookup (PR #80890)

2024-02-06 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] Expand background symbol lookup (PR #80890)

2024-02-06 Thread Jason Molenda via 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

[Lldb-commits] [lldb] [lldb] Expand background symbol lookup (PR #80890)

2024-02-06 Thread Jason Molenda via 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

[Lldb-commits] [lldb] Don't search for separate debug files for mach-o object files (PR #81041)

2024-02-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] [NFC] Remove min pkt size for compression setting (PR #81075)

2024-02-07 Thread Jason Molenda via 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

[Lldb-commits] [lldb] [lldb] Fix printf formatting of std::time_t seconds (PR #81078)

2024-02-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb][libc++] Adds system_clock data formatters. (PR #78609)

2024-02-07 Thread Jason Molenda via lldb-commits
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/

[Lldb-commits] [lldb] [lldb] [NFC] Remove min pkt size for compression setting (PR #81075)

2024-02-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] [NFC] Remove min pkt size for compression setting (PR #81075)

2024-02-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] Fix printf formatting of std::time_t seconds (PR #81078)

2024-02-08 Thread Jason Molenda via 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

[Lldb-commits] [lldb] [lldb] Detect a Darwin kernel issue and work around it (PR #81573)

2024-02-12 Thread Jason Molenda via 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

[Lldb-commits] [lldb] [lldb] Detect a Darwin kernel issue and work around it (PR #81573)

2024-02-13 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] Detect a Darwin kernel issue and work around it (PR #81573)

2024-02-13 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] Fix the flakey Concurrent tests on macOS (PR #81710)

2024-02-13 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] Fix the flakey Concurrent tests on macOS (PR #81710)

2024-02-13 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] [lldb] Fix the flakey Concurrent tests on macOS (PR #81710)

2024-02-14 Thread Jason Molenda via 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

[Lldb-commits] [lldb] [lldb] Detect a Darwin kernel issue and work around it (PR #81573)

2024-02-14 Thread Jason Molenda via 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

[Lldb-commits] [lldb] 4cf458c - Fix help doc for 'enable-background-lookup' obsolete setting

2024-02-15 Thread Jason Molenda via 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

[Lldb-commits] [lldb] 9a8a0a3 - Load dyld manually with 'main bin spec' userland corefiles

2022-03-23 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 9951578 - Don't search for sim SDK path until we know we need it

2022-03-24 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] c04fdfa - Update callers to SendPacket with std::string's to not devolve to c-strs

2022-03-31 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 7ebcd88 - Add DumpBinaryEscaped method to JSONGenerator, avoid extra copy

2022-04-04 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] ee39417 - Refine memory buffer for importing shared cache objc class list

2022-04-05 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 4d3cc27 - Correct debugserver to write xmm/ymm/zmm reg values

2022-04-06 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] a2681c4 - Don't push null ExecutionContext on CommandInterp exectx stack

2022-04-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 6e56c49 - Decr pc when looking for DWARF loc list entry mid-stack

2022-04-29 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 9c8179f - LocationListLookup test case failing on lldb-arm-ubuntu

2022-04-29 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] df552ed - Update the CFA to use $sp when $fp is restored on arm64

2022-05-04 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] a6553d9 - Remove expected fail for TestStepNoDebug on AArch64

2022-05-04 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] b6388e4 - Decr return pc mid-stack when picking UnwindPlan row

2022-05-05 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 2be791e - Insert crashing stack frame when call to null func ptr

2022-05-05 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] d2f3b60 - [NFC] Don't bother with unstripped binary w/ dSYM, don't DebugSymbols twice

2022-05-16 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] bef4da4 - Skip testing of watchpoint hit-count/ignore-count on multithreaded

2022-05-25 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 8ee35c5 - Update three tests to realpath paths that we compare to dyld paths

2022-05-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] c274b6e - Defer source path remap tilde expansion until source file use

2022-05-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 56ac85a - Revert "Defer source path remap tilde expansion until source file use"

2022-05-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 8a46728 - Defer source path remap tilde expansion until source file use

2022-05-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] bd67468 - Check that a FileSpec has a Directory component before using

2022-05-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] ea6d0c4 - One further tweak for realpathing filepath to match dyld

2022-05-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 2f23abd - Increase the default maximum stack walk

2022-05-28 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 8d5a600 - Track transition from launch dyld to shared-cache dyld

2022-06-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] d572fc3 - Skip TestConcurrentWatchBreak.py on Darwin arm64

2022-06-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 1490f87 - Roll back MichaƂ's changes to debugserver, not meant for there

2022-06-21 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] fe3103f - Increase search for kernel image from 32MB to 128MB

2022-12-05 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] ee11ef6 - Launch state discoverable in Darwin, use for SafeToCallFunctions

2022-12-13 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] ad10b3d - Skip TestEarlyProcessLaunch.py w/ system debugserver

2022-12-13 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] da4e827 - Don't read off end of GPR register array to access fp/sp/lr/pc

2023-01-04 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 0dc7ecb - Fix typeo in LoadBinariesViaExhaustiveSearch when looking for kernel

2023-01-04 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 75d268d - When loading mach-o corefile, new fallback for finding images

2023-01-06 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] db223b7 - Do qProcessInfo-hint binary loading later in Process setup

2023-01-18 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 484bc2b - Run cmdline address expressions through ABI's FixAddress

2023-01-23 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 841b26f - Don't flag memory-only mach-o corefiles as invalid

2023-01-27 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 8112bd2 - disable-language-runtime-unwindplans desc rewrite to be searchable

2023-01-27 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 701030c - In InitializeZerothFrame check for a CFA/AFA or error out

2023-02-06 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 62c7475 - Check if null buffer handed to SBProcess::ReadMemory

2023-02-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 4a8cc28 - Fix TestProcessAPI.py to only allocate sys.maxsize buffer

2023-02-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] b1d8f40 - Only run the weird new try-to-read-too-much test on Darwin

2023-02-07 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 49470f1 - Remove test case that tries to allocate impossible amounts

2023-02-09 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] ee88f11 - Find SDK path more lazily in Apple Simulator platforms

2023-02-13 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] eaeb8dd - [LLDB] add arch-specific watchpoint behavior defaults to lldb

2023-02-14 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] b22dcaf - Update debugserver xcode proj to build with c++17

2023-02-28 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] f136ca8 - Put the arch-dep debugserver files in main CMakeLists.txt

2023-02-28 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 4d635be - Add SBValue::GetValueAsAddress API for removing non-addressing metadata

2023-03-02 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 7e770f9 - Revert "Add SBValue::GetValueAsAddress API for removing non-addressing metadata"

2023-03-02 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 794d208 - Don't load non-kexts in darwin kernel debug; handle unslid segs

2023-03-08 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 8db8a4e - Clean up conditional, don't set load binaries twice

2023-03-08 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 7f25c3e - Slight refinement to a change yesterday in metadata-added binaries

2023-03-09 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 8b09271 - Using global variable in xnu kernel, set # of addressable bits

2023-04-03 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] e38b0fa - Remove AArch64 out of MIPS watchpoint-skip, doc wp description

2023-04-12 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] e76cfac - AArch64 debugserver parse ESR register for watchpoints

2023-04-12 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 53430bf - Remove hardcoded address bits in ABIMacOS_arm64

2023-04-18 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] d9bc7f7 - TestSTL was marked as skipped unconditionally in 2018, undo

2023-04-21 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 6b6bac2 - Fix off-by-one error in armv7 mach-o corefile register context

2023-04-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 7777b30 - Fix CI failure - this depended on constants only defined on arm64 macs

2023-04-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 5679379 - Refactor and generalize AArch64 watchpoint support in debugserver

2023-04-28 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 4fac08f - Recognize `addressing_bits` kv in stop reply packet

2023-05-04 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 2e16e41 - Add AArch64 MASK watchpoint support in debugserver

2023-05-04 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 4e93f91 - Add a new report_load_commands option to jGetLoadedDynamicLibrariesInfos

2023-05-08 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 448bd59 - [nfc] Remove dead code from ObjectFileMachO

2023-05-09 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] f9759d0 - Prioritize using a segment with the name TEXT instead off fileoff 0

2023-05-10 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] e3227e7 - lldb PlatformDarwinKernel make local filesystem scan lazy

2023-05-16 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] c9ee631 - TestStackCoreScriptedProcess.py is timing out, skip it

2023-05-25 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] f32d24d - Revert "[lldb] Disable variable watchpoints when going out of scope"

2023-05-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 48a12ae - Fix a few bugs with Mach-O corefile loading, plus perf

2023-05-30 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 21dfaf6 - Setting to control addressable bits in high memory

2023-05-31 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 90d9f88 - Add Fix*Address methods to Process, call into ABI

2023-06-14 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 0ce7037 - Clear non-addressable bits from pc/fp/sp in unwinds

2023-06-14 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 6a8e253 - Add a fatal error for debug builds when disagreement about stepping

2023-06-15 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 538df1d - lldb [NFC] Add logging to Process when address masks are updated

2023-06-15 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 3858e9d - Add two new entitlements when debugserver is built by Apple

2023-06-21 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 2c1108f - FileSystem::EnumerateDirectory should skip entries w/o Status, not halt

2023-06-26 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 7075f9d - Have GetKernelsAndKextsInDirectoryHelper request follow symlinks

2023-06-27 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] ad45114 - Add 'target dump section-load-list' for lldb debugging

2023-06-29 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 623e845 - Recognize BSS-only DATA segments as sections that need to be slid

2023-06-29 Thread Jason Molenda via lldb-commits
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

[Lldb-commits] [lldb] 37d11e9 - "fp" -> "flags" typeo in description of generic registers

2023-06-29 Thread Jason Molenda via lldb-commits
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

<    7   8   9   10   11   12   13   14   15   16   >