[Lldb-commits] [lldb] r364976 - add symbols/declvendor.cpp.

2019-07-02 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Tue Jul 2 16:06:13 2019 New Revision: 364976 URL: http://llvm.org/viewvc/llvm-project?rev=364976=rev Log: add symbols/declvendor.cpp. Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj URL:

[Lldb-commits] [lldb] r364979 - Update cmake build setup so lldb doesn't link against the DebugSymbols

2019-07-02 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Tue Jul 2 16:36:39 2019 New Revision: 364979 URL: http://llvm.org/viewvc/llvm-project?rev=364979=rev Log: Update cmake build setup so lldb doesn't link against the DebugSymbols framework on macOS, in line with the source/xcode project changes in r364243. Modified:

[Lldb-commits] [lldb] r358929 - Fix a bug in my change to ModulesDidLoad in r357955.

2019-04-22 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Mon Apr 22 15:42:29 2019 New Revision: 358929 URL: http://llvm.org/viewvc/llvm-project?rev=358929=rev Log: Fix a bug in my change to ModulesDidLoad in r357955. In the process of hoisting the LoadScriptingResourceForModule out of Target::ModuleAdded and into

[Lldb-commits] [lldb] r358939 - One small tweak to LocateExecutableScriptingResources - I

2019-04-22 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Mon Apr 22 18:13:27 2019 New Revision: 358939 URL: http://llvm.org/viewvc/llvm-project?rev=358939=rev Log: One small tweak to LocateExecutableScriptingResources - I was still stat'ing the possibly-dSYM FileSpec before I (more cheaply) checked the filepath for telltale dSYM

[Lldb-commits] [lldb] r358938 - Add a small check to PlatformDarwin::LoadScriptingResourceForModule

2019-04-22 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Mon Apr 22 18:02:51 2019 New Revision: 358938 URL: http://llvm.org/viewvc/llvm-project?rev=358938=rev Log: Add a small check to PlatformDarwin::LoadScriptingResourceForModule which reads the python files in a dSYM bundle, to check that the SymbolFile is actually a dSYM

[Lldb-commits] [lldb] r359130 - add postfixexpression.cpp.

2019-04-24 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Apr 24 12:50:53 2019 New Revision: 359130 URL: http://llvm.org/viewvc/llvm-project?rev=359130=rev Log: add postfixexpression.cpp. Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj URL:

[Lldb-commits] [lldb] r359234 - Two tests were using the interactive convenience variable

2019-04-25 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Thu Apr 25 13:03:39 2019 New Revision: 359234 URL: http://llvm.org/viewvc/llvm-project?rev=359234=rev Log: Two tests were using the interactive convenience variable lldb.debugger. They should not be. Modified:

[Lldb-commits] [lldb] r359240 - Another use of the interactive lldb.debugger.

2019-04-25 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Thu Apr 25 13:45:10 2019 New Revision: 359240 URL: http://llvm.org/viewvc/llvm-project?rev=359240=rev Log: Another use of the interactive lldb.debugger. Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/formatters/synth.py Modified:

[Lldb-commits] [lldb] r369584 - When building file without debug info, include the architecture

2019-08-21 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Aug 21 14:34:17 2019 New Revision: 369584 URL: http://llvm.org/viewvc/llvm-project?rev=369584=rev Log: When building file without debug info, include the architecture setting in the cflags on Darwin systems. Modified:

[Lldb-commits] [lldb] r369611 - The g_format_infos table needs to be updated in concert with the

2019-08-21 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Aug 21 19:06:03 2019 New Revision: 369611 URL: http://llvm.org/viewvc/llvm-project?rev=369611=rev Log: The g_format_infos table needs to be updated in concert with the enum Format entries; else we can crash in a place like FormatManager::GetFormatAsCString(). We should

[Lldb-commits] [lldb] r369484 - Update a few tests that may change the platform to save & restore

2019-08-20 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Tue Aug 20 17:27:30 2019 New Revision: 369484 URL: http://llvm.org/viewvc/llvm-project?rev=369484=rev Log: Update a few tests that may change the platform to save & restore the platform in the setUp/tearDown methods. I want to migrate the re-instatement of the correct

[Lldb-commits] [lldb] r369990 - Send error message on failed attach from debugerserver.

2019-08-26 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Mon Aug 26 17:08:27 2019 New Revision: 369990 URL: http://llvm.org/viewvc/llvm-project?rev=369990=rev Log: Send error message on failed attach from debugerserver. Instead of using a magic return error code from debugserver to indicate that an attach failed because of SIP

[Lldb-commits] [lldb] r370152 - Update name of objc runtime SPI function we call for class names.

2019-08-27 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Tue Aug 27 19:14:07 2019 New Revision: 370152 URL: http://llvm.org/viewvc/llvm-project?rev=370152=rev Log: Update name of objc runtime SPI function we call for class names. A new SPI was added to the objc runtime to get class names without any demangling;

[Lldb-commits] [lldb] r371582 - Skip a test in TestProcessIO.py when running against ios devices.

2019-09-10 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Tue Sep 10 18:02:30 2019 New Revision: 371582 URL: http://llvm.org/viewvc/llvm-project?rev=371582=rev Log: Skip a test in TestProcessIO.py when running against ios devices. Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py

[Lldb-commits] [lldb] r371583 - Ah, only skip this for embedded darwin targets.

2019-09-10 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Tue Sep 10 18:03:24 2019 New Revision: 371583 URL: http://llvm.org/viewvc/llvm-project?rev=371583=rev Log: Ah, only skip this for embedded darwin targets. Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py Modified:

[Lldb-commits] [lldb] r371280 - Long timeouts for the MacOSX SystemRuntime plugins under ASAN; else quick.

2019-09-06 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Fri Sep 6 18:38:37 2019 New Revision: 371280 URL: http://llvm.org/viewvc/llvm-project?rev=371280=rev Log: Long timeouts for the MacOSX SystemRuntime plugins under ASAN; else quick. In April via r357829, Adrian unified timeouts across lldb and set the default value high so

[Lldb-commits] [lldb] r371795 - The setUp/tearDown methods I added mssed up the test function; reorder.

2019-09-12 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Thu Sep 12 17:01:49 2019 New Revision: 371795 URL: http://llvm.org/viewvc/llvm-project?rev=371795=rev Log: The setUp/tearDown methods I added mssed up the test function; reorder. Thanks to Ted Woodward for catching this one. Modified:

[Lldb-commits] [lldb] r368118 - Upstream a few small Apple changes to debugserver - arm64_32, Catalyst

2019-08-06 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Tue Aug 6 19:06:06 2019 New Revision: 368118 URL: http://llvm.org/viewvc/llvm-project?rev=368118=rev Log: Upstream a few small Apple changes to debugserver - arm64_32, Catalyst Adrian's changes to support Catalyst processes and my changes to support debugserver running on

[Lldb-commits] [lldb] r366378 - Add support to ProcessMachCore::DoLoadCore to handle an EFI UUID str.

2019-07-17 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Jul 17 14:44:05 2019 New Revision: 366378 URL: http://llvm.org/viewvc/llvm-project?rev=366378=rev Log: Add support to ProcessMachCore::DoLoadCore to handle an EFI UUID str. If a core file has an EFI version string which includes a UUID (similar to what it returns for

[Lldb-commits] [lldb] r366381 - Ah, forgot a debug line I left in the dsym-for-uuid.sh script

2019-07-17 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Jul 17 14:55:39 2019 New Revision: 366381 URL: http://llvm.org/viewvc/llvm-project?rev=366381=rev Log: Ah, forgot a debug line I left in the dsym-for-uuid.sh script to make sure it was correctly being disabled after this test case completed. Modified:

[Lldb-commits] [lldb] r366493 - Fall back to dyld's _dyld_start when no LC_MAIN / main() func can be found

2019-07-18 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Thu Jul 18 13:55:24 2019 New Revision: 366493 URL: http://llvm.org/viewvc/llvm-project?rev=366493=rev Log: Fall back to dyld's _dyld_start when no LC_MAIN / main() func can be found The new DriverKit user-land kernel drivers in macOS 10.15 / Catalina do not have a main()

[Lldb-commits] [lldb] r366156 - Update some file changes, but there's a dependency loop so

2019-07-15 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Mon Jul 15 16:55:22 2019 New Revision: 366156 URL: http://llvm.org/viewvc/llvm-project?rev=366156=rev Log: Update some file changes, but there's a dependency loop so it doesn't quite work rigtht now. Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj Modified:

Re: [Lldb-commits] [PATCH] D62931: [lldb-server] Add setting to force 'g' packet use

2019-11-08 Thread Jason Molenda via lldb-commits
A heads-up - lldb is failing to detect the case where the remote gdb RSP stub does not support the 'g' packet. I found this while doing some bare board debugging; g fails and doesn't fall back to fetching register values individually. I wrote a test TestNoGPacketSupported.py to show this

[Lldb-commits] [lldb] 60ab30e - Temporarily change the default for use-g-packet-for-reading to false,

2019-11-08 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-11-08T18:21:57-08:00 New Revision: 60ab30ebce833c87bd4776f67cd9a82fe162ef9c URL: https://github.com/llvm/llvm-project/commit/60ab30ebce833c87bd4776f67cd9a82fe162ef9c DIFF: https://github.com/llvm/llvm-project/commit/60ab30ebce833c87bd4776f67cd9a82fe162ef9c.diff

Re: [Lldb-commits] [PATCH] D62931: [lldb-server] Add setting to force 'g' packet use

2019-11-08 Thread Jason Molenda via lldb-commits
Hm, a follow-on problem is that there's some bug between debugserver and lldb with the g/G packets which is causing bot failures on macos systems. lldb has never used g/G before (if p/P was available) because debugserver seeds all of the GPR values with the stop packet (? aka Tnn) or with the

Re: [Lldb-commits] [PATCH] D62931: [lldb-server] Add setting to force 'g' packet use

2019-11-08 Thread Jason Molenda via lldb-commits
I'm switching the default for at least the weekend via 60ab30ebce833c87bd4776f67cd9a82fe162ef9c / https://reviews.llvm.org/rG60ab30ebce83 so the bots aren't failing because of this, we can all look into this next week. I think the best solution is to get lldb to fall back to p/P if g/G are

[Lldb-commits] [lldb] 1478f36 - Test case to verify that lldb falls back to p/P if g is unsupported

2019-11-08 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-11-08T15:57:54-08:00 New Revision: 1478f36f27cfe06c5da75ef11fab2d409f2beafe URL: https://github.com/llvm/llvm-project/commit/1478f36f27cfe06c5da75ef11fab2d409f2beafe DIFF: https://github.com/llvm/llvm-project/commit/1478f36f27cfe06c5da75ef11fab2d409f2beafe.diff

Re: [Lldb-commits] [PATCH] D62931: [lldb-server] Add setting to force 'g' packet use

2019-11-11 Thread Jason Molenda via lldb-commits
On 11/09/19 12:41 PM, Jan Kratochvil wrote: > > On Sat, 09 Nov 2019 03:25:51 +0100, Jason Molenda via lldb-commits wrote: > > I'm switching the default for at least the weekend via > > 60ab30ebce833c87bd4776f67cd9a82fe162ef9c / > > https://reviews.llvm.org/rG60ab30e

Re: [Lldb-commits] [PATCH] D62931: [lldb-server] Add setting to force 'g' packet use

2019-11-11 Thread Jason Molenda via lldb-commits
Thanks!  lldb is trying to resume execution for some reason. I wonder if the T11 as the stop reason is causing problems, I just did it at random. I'll try changing the test to use a T02 stop reason. Baffled as to the difference in behavior, but we'll see if this matters. On 11/10/19 10:32 PM,

[Lldb-commits] [lldb] 6602e1f - Reordering KextImageInfo::LoadImageUsingMemoryModule

2019-11-07 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-11-07T19:34:09-08:00 New Revision: 6602e1fb0e34c1a755ef561de24e5b78a460672a URL: https://github.com/llvm/llvm-project/commit/6602e1fb0e34c1a755ef561de24e5b78a460672a DIFF: https://github.com/llvm/llvm-project/commit/6602e1fb0e34c1a755ef561de24e5b78a460672a.diff

[Lldb-commits] [lldb] 54a873b - Fix typeo in CPU_TYPE_ARM64_32 for older SDKs.

2019-10-31 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-10-31T14:13:57-07:00 New Revision: 54a873b158bd463db48829407f3939ff9a7be65a URL: https://github.com/llvm/llvm-project/commit/54a873b158bd463db48829407f3939ff9a7be65a DIFF: https://github.com/llvm/llvm-project/commit/54a873b158bd463db48829407f3939ff9a7be65a.diff

[Lldb-commits] [lldb] 45098b6 - Remove extraneous log enabling.

2019-11-22 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-11-22T14:13:35-08:00 New Revision: 45098b6809ebd5640a1b9578f58ade495986b9ee URL: https://github.com/llvm/llvm-project/commit/45098b6809ebd5640a1b9578f58ade495986b9ee DIFF: https://github.com/llvm/llvm-project/commit/45098b6809ebd5640a1b9578f58ade495986b9ee.diff

[Lldb-commits] [lldb] e001bf6 - Add help text for parray and poarray aliases.

2019-12-04 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-04T15:33:54-08:00 New Revision: e001bf6330bb0e935b17c8a619e71bbded67e2eb URL: https://github.com/llvm/llvm-project/commit/e001bf6330bb0e935b17c8a619e71bbded67e2eb DIFF: https://github.com/llvm/llvm-project/commit/e001bf6330bb0e935b17c8a619e71bbded67e2eb.diff

[Lldb-commits] [lldb] e11df58 - Upstream debugserver arm64e support.

2019-12-04 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-04T15:20:56-08:00 New Revision: e11df585800596df2052a475f6191673b8f1a5c1 URL: https://github.com/llvm/llvm-project/commit/e11df585800596df2052a475f6191673b8f1a5c1 DIFF: https://github.com/llvm/llvm-project/commit/e11df585800596df2052a475f6191673b8f1a5c1.diff

[Lldb-commits] [lldb] e1a7d04 - Add parray example for lldb, vrs. *ptr@count gdb cmd.

2019-12-04 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-04T15:44:15-08:00 New Revision: e1a7d042c36509a385668ee04ddb3dad3241f503 URL: https://github.com/llvm/llvm-project/commit/e1a7d042c36509a385668ee04ddb3dad3241f503 DIFF: https://github.com/llvm/llvm-project/commit/e1a7d042c36509a385668ee04ddb3dad3241f503.diff

Re: [Lldb-commits] [lldb] b0937be - Skip TestGuiBasic.py on ios etc device testing.

2019-12-10 Thread Jason Molenda via lldb-commits
19, at 3:15 PM, Jason Molenda via lldb-commits >> wrote: >> >> >> Author: Jason Molenda >> Date: 2019-12-10T15:15:25-08:00 >> New Revision: b0937be06e44c0cdc1c1aac16b76746150e70154 >> >> URL: >> https://github.com/llvm/llvm-project/commit/b0

[Lldb-commits] [lldb] 90f4355 - Skip TestMultilineCompletion.py on ios testsuite runs.

2019-12-10 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-10T14:55:04-08:00 New Revision: 90f4355b43eaf9eefa02226b98d8cb43f44ca879 URL: https://github.com/llvm/llvm-project/commit/90f4355b43eaf9eefa02226b98d8cb43f44ca879 DIFF: https://github.com/llvm/llvm-project/commit/90f4355b43eaf9eefa02226b98d8cb43f44ca879.diff

[Lldb-commits] [lldb] b0937be - Skip TestGuiBasic.py on ios etc device testing.

2019-12-10 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-10T15:15:25-08:00 New Revision: b0937be06e44c0cdc1c1aac16b76746150e70154 URL: https://github.com/llvm/llvm-project/commit/b0937be06e44c0cdc1c1aac16b76746150e70154 DIFF: https://github.com/llvm/llvm-project/commit/b0937be06e44c0cdc1c1aac16b76746150e70154.diff

[Lldb-commits] [lldb] af3aac9 - Change the mtc Makefile to check $SDKROOT value instead

2019-12-10 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-10T18:48:40-08:00 New Revision: af3aac9a227eaf38b625137b7337365b32404068 URL: https://github.com/llvm/llvm-project/commit/af3aac9a227eaf38b625137b7337365b32404068 DIFF: https://github.com/llvm/llvm-project/commit/af3aac9a227eaf38b625137b7337365b32404068.diff

[Lldb-commits] [lldb] 24a4d27 - Don't run expect based tests remotely.

2019-12-11 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-11T08:29:18-08:00 New Revision: 24a4d27acd38d7d7e3c78a8ddf1410f046891b70 URL: https://github.com/llvm/llvm-project/commit/24a4d27acd38d7d7e3c78a8ddf1410f046891b70 DIFF: https://github.com/llvm/llvm-project/commit/24a4d27acd38d7d7e3c78a8ddf1410f046891b70.diff

Re: [Lldb-commits] [lldb] b0937be - Skip TestGuiBasic.py on ios etc device testing.

2019-12-11 Thread Jason Molenda via lldb-commits
On 12/11/19 02:09 AM, Pavel Labath wrote: > > On 11/12/2019 00:51, Jason Molenda via lldb-commits wrote: > > That was my first inclination -- I don't see how it can work correctly on a > > remote setup, just like TestMultilineCompletion.py which I added the same > &g

[Lldb-commits] [lldb] 52c5342 - update TestThreadStepOut.py to expect correct source line on arm64.

2019-12-11 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-11T09:17:03-08:00 New Revision: 52c5342ebcc173b25c1644335cba7aef8ec73b92 URL: https://github.com/llvm/llvm-project/commit/52c5342ebcc173b25c1644335cba7aef8ec73b92 DIFF: https://github.com/llvm/llvm-project/commit/52c5342ebcc173b25c1644335cba7aef8ec73b92.diff

[Lldb-commits] [lldb] 6d64162 - return-object-by-reference ("non trivial") xfail on arm64 in TestTrivialABI.py

2019-12-11 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-11T12:00:16-08:00 New Revision: 6d64162a2d0df2230faf02ff7ee677c448faf4af URL: https://github.com/llvm/llvm-project/commit/6d64162a2d0df2230faf02ff7ee677c448faf4af DIFF: https://github.com/llvm/llvm-project/commit/6d64162a2d0df2230faf02ff7ee677c448faf4af.diff

[Lldb-commits] [lldb] r375032 - Add arm64_32 support to lldb, an ILP32 codegen

2019-10-16 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Oct 16 12:14:49 2019 New Revision: 375032 URL: http://llvm.org/viewvc/llvm-project?rev=375032=rev Log: Add arm64_32 support to lldb, an ILP32 codegen that runs on arm64 ISA targets, specifically Apple watches. Differential Revision: https://reviews.llvm.org/D68858

[Lldb-commits] [lldb] f24ed3a - Handle the case where the 'g' packet doesn't get all regs.

2019-11-20 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-11-20T14:15:08-08:00 New Revision: f24ed3a05198003ef2c76ead91019561a45d26b5 URL: https://github.com/llvm/llvm-project/commit/f24ed3a05198003ef2c76ead91019561a45d26b5 DIFF: https://github.com/llvm/llvm-project/commit/f24ed3a05198003ef2c76ead91019561a45d26b5.diff

[Lldb-commits] [lldb] r374264 - Change debugserver to use the brk #0 for breakpoints.

2019-10-09 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Wed Oct 9 17:12:05 2019 New Revision: 374264 URL: http://llvm.org/viewvc/llvm-project?rev=374264=rev Log: Change debugserver to use the brk #0 for breakpoints. debugserver had been using an instruction that would work for armv7 or aarch64 processes, but we don't have

[Lldb-commits] [lldb] r373789 - Expand on the qfProcessInfo documentation, add examples from

2019-10-04 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Fri Oct 4 14:01:52 2019 New Revision: 373789 URL: http://llvm.org/viewvc/llvm-project?rev=373789=rev Log: Expand on the qfProcessInfo documentation, add examples from lldb-gdb-remote.txt and text explaining the no-criteria mode. Modified:

[Lldb-commits] [lldb] 7026b34 - make err msg in MachSymtabSectionInfo::GetSection clear about the file

2019-12-18 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-18T16:13:17-08:00 New Revision: 7026b34702f3f71ff157876831f29c76b3cb8bb1 URL: https://github.com/llvm/llvm-project/commit/7026b34702f3f71ff157876831f29c76b3cb8bb1 DIFF: https://github.com/llvm/llvm-project/commit/7026b34702f3f71ff157876831f29c76b3cb8bb1.diff

[Lldb-commits] [lldb] 997bc8b - Add prototype for a function we call.

2019-12-18 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2019-12-18T14:18:52-08:00 New Revision: 997bc8b2e6b973dd8c9b17414310cac822543f79 URL: https://github.com/llvm/llvm-project/commit/997bc8b2e6b973dd8c9b17414310cac822543f79 DIFF: https://github.com/llvm/llvm-project/commit/997bc8b2e6b973dd8c9b17414310cac822543f79.diff

[Lldb-commits] [lldb] f9fdd11 - Rewrite default "could not attach" msg to point to hints

2020-02-11 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-11T16:18:49-08:00 New Revision: f9fdd1172c8b326126463f1efcfee721e5222334 URL: https://github.com/llvm/llvm-project/commit/f9fdd1172c8b326126463f1efcfee721e5222334 DIFF: https://github.com/llvm/llvm-project/commit/f9fdd1172c8b326126463f1efcfee721e5222334.diff

[Lldb-commits] [lldb] 9ed9742 - Only perform the login_session_has_gui_access on macOS

2020-02-10 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-10T18:16:31-08:00 New Revision: 9ed9742ec05091e4c16d93005acbfafc6f801e7d URL: https://github.com/llvm/llvm-project/commit/9ed9742ec05091e4c16d93005acbfafc6f801e7d DIFF: https://github.com/llvm/llvm-project/commit/9ed9742ec05091e4c16d93005acbfafc6f801e7d.diff

[Lldb-commits] [lldb] 1287977 - Document third option to python synthetic type summary

2020-02-13 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-13T13:04:51-08:00 New Revision: 1287977b9edd86a4983542b50a082dd0996ae67e URL: https://github.com/llvm/llvm-project/commit/1287977b9edd86a4983542b50a082dd0996ae67e DIFF: https://github.com/llvm/llvm-project/commit/1287977b9edd86a4983542b50a082dd0996ae67e.diff

[Lldb-commits] [lldb] 14d6863 - Small reformat to avoid tripping up possible formatting.

2020-02-13 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-13T13:06:44-08:00 New Revision: 14d686309a1ac9cc41522b00da7a751db592ef6e URL: https://github.com/llvm/llvm-project/commit/14d686309a1ac9cc41522b00da7a751db592ef6e DIFF: https://github.com/llvm/llvm-project/commit/14d686309a1ac9cc41522b00da7a751db592ef6e.diff

[Lldb-commits] [lldb] 4b2b8b9 - Re-land Unwind past an interrupt handler correctly on arm or at pc==0

2020-02-25 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-25T14:58:20-08:00 New Revision: 4b2b8b96db2837a95e8c3ceca3f31ac5641ca001 URL: https://github.com/llvm/llvm-project/commit/4b2b8b96db2837a95e8c3ceca3f31ac5641ca001 DIFF: https://github.com/llvm/llvm-project/commit/4b2b8b96db2837a95e8c3ceca3f31ac5641ca001.diff

[Lldb-commits] [lldb] edc4f4c - Unwind past an interrupt handler correctly on arm or at pc==0

2020-02-24 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-24T16:11:15-08:00 New Revision: edc4f4c9c9d90b2a4f8831ba4c873f08eaa5395a URL: https://github.com/llvm/llvm-project/commit/edc4f4c9c9d90b2a4f8831ba4c873f08eaa5395a DIFF: https://github.com/llvm/llvm-project/commit/edc4f4c9c9d90b2a4f8831ba4c873f08eaa5395a.diff

[Lldb-commits] [lldb] 082f1a3 - My prevous commit to RegisterContextLLDB is causing a test fail

2020-02-24 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-24T17:19:06-08:00 New Revision: 082f1a3b15999c803265fabcb555ad253a00d477 URL: https://github.com/llvm/llvm-project/commit/082f1a3b15999c803265fabcb555ad253a00d477 DIFF: https://github.com/llvm/llvm-project/commit/082f1a3b15999c803265fabcb555ad253a00d477.diff

[Lldb-commits] [lldb] 4fdd2ed - Revert "Unwind past an interrupt handler correctly on arm or at pc==0"

2020-02-24 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-24T19:03:22-08:00 New Revision: 4fdd2edbdb4bfe6a95df0fac12e8beffcbe33b86 URL: https://github.com/llvm/llvm-project/commit/4fdd2edbdb4bfe6a95df0fac12e8beffcbe33b86 DIFF: https://github.com/llvm/llvm-project/commit/4fdd2edbdb4bfe6a95df0fac12e8beffcbe33b86.diff

[Lldb-commits] [lldb] d5a4fa0 - Revert "My prevous commit to RegisterContextLLDB is causing a test fail"

2020-02-24 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-24T19:03:22-08:00 New Revision: d5a4fa05146fe290735e2a38adb50d76052c4313 URL: https://github.com/llvm/llvm-project/commit/d5a4fa05146fe290735e2a38adb50d76052c4313 DIFF: https://github.com/llvm/llvm-project/commit/d5a4fa05146fe290735e2a38adb50d76052c4313.diff

Re: [Lldb-commits] [lldb] 1048000 - [lldb] [testsuite] Fixup: generalize `DWARFASTParserClangTests` based on `DWARFExpressionTest`'s YAML

2020-02-04 Thread Jason Molenda via lldb-commits
Thanks Jan! Sorry for not getting in touch about this earlier. > On Feb 4, 2020, at 1:52 PM, Jan Kratochvil wrote: > > Hi Jason, > > On Tue, 04 Feb 2020 22:23:52 +0100, Jason Molenda wrote: >> Hi Jan, I'm not sure which upstream change this was working around > > It was not up-to-date with:

Re: [Lldb-commits] [lldb] 1048000 - [lldb] [testsuite] Fixup: generalize `DWARFASTParserClangTests` based on `DWARFExpressionTest`'s YAML

2020-02-04 Thread Jason Molenda via lldb-commits
Hi Jan, I'm not sure which upstream change this was working around - but the macos cmake bot has been failing since these changes went in, http://green.lab.llvm.org/green/job/lldb-cmake/ http://green.lab.llvm.org/green/job/lldb-cmake/7867/console In module 'lldb_TestingSupport_Symbol'

Re: [Lldb-commits] [lldb] c25938d - Refactor CommandObjectTargetSymbolsAdd::AddModuleSymbols

2020-02-04 Thread Jason Molenda via lldb-commits
I think the new error message will be harder for users to understand. When they try to add a dSYM that doesn't match any binary currently in the Target, the error message should make that clear so the user can realize that either (1) they picked the wrong dSYM, or (2) they thought a binary was

Re: [Lldb-commits] [lldb] 2b7f328 - [lldb/Target] Add Assert StackFrame Recognizer

2020-02-05 Thread Jason Molenda via lldb-commits
Hi Ismail, I think we started picking up some failures on the greendragon lldb-cmake-sanitize bot with this commit, http://lab.llvm.org:8080/green/view/LLDB/job/lldb-cmake-sanitized/ = ==55503==ERROR: AddressSanitizer:

[Lldb-commits] [lldb] ccf900f - Two more small fixes for debugserver attach failure messaging.

2020-02-05 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-05T19:24:38-08:00 New Revision: ccf900fc932098c1bbaa6e43a94b4423c60bf53e URL: https://github.com/llvm/llvm-project/commit/ccf900fc932098c1bbaa6e43a94b4423c60bf53e DIFF: https://github.com/llvm/llvm-project/commit/ccf900fc932098c1bbaa6e43a94b4423c60bf53e.diff

Re: [Lldb-commits] [lldb] c25938d - Refactor CommandObjectTargetSymbolsAdd::AddModuleSymbols

2020-02-03 Thread Jason Molenda via lldb-commits
This is causing a test failure on the macos cmake bot in TestAddDsymCommand.py where we load a binary with uuid A, then try to add-dsym a dSYM uuid B and the test is looking for the error text, error: symbol file 'FILENAME' does not match any existing module but we're now getting, error: the

Re: [Lldb-commits] [lldb] c25938d - Refactor CommandObjectTargetSymbolsAdd::AddModuleSymbols

2020-02-03 Thread Jason Molenda via lldb-commits
I'm going to xfail it for tonight; we end up copying the base filename into the ModuleSpec that we use for searching, if (!module_spec.GetUUID().IsValid()) { if (!module_spec.GetFileSpec() && !module_spec.GetPlatformFileSpec()) module_spec.GetFileSpec().GetFilename() =

[Lldb-commits] [lldb] bc3f87c - Xfail this test temporarily until AdrianM or I can

2020-02-03 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-03T18:53:17-08:00 New Revision: bc3f87cc029e7f8519e584e38ba0b4b2500a7258 URL: https://github.com/llvm/llvm-project/commit/bc3f87cc029e7f8519e584e38ba0b4b2500a7258 DIFF: https://github.com/llvm/llvm-project/commit/bc3f87cc029e7f8519e584e38ba0b4b2500a7258.diff

[Lldb-commits] [lldb] f60de4c - Except, get the TARGET_OS_OSX check correct.

2020-02-06 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-06T20:28:40-08:00 New Revision: f60de4cdf7b8ca1b22700a6325a61a9b0da6a54b URL: https://github.com/llvm/llvm-project/commit/f60de4cdf7b8ca1b22700a6325a61a9b0da6a54b DIFF: https://github.com/llvm/llvm-project/commit/f60de4cdf7b8ca1b22700a6325a61a9b0da6a54b.diff

[Lldb-commits] [lldb] e2fa760 - Fix my use of the TARGET_OS_OSX TargetConditional.

2020-02-06 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-06T20:28:28-08:00 New Revision: e2fa760cdde2ebaa93cf1e959189dece3e949a68 URL: https://github.com/llvm/llvm-project/commit/e2fa760cdde2ebaa93cf1e959189dece3e949a68 DIFF: https://github.com/llvm/llvm-project/commit/e2fa760cdde2ebaa93cf1e959189dece3e949a68.diff

[Lldb-commits] [lldb] 8eb9b67 - Add final description of why attach failed with poss error string.

2020-02-06 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-06T17:28:49-08:00 New Revision: 8eb9b67bdacdaefc82a61921e52d2908f6f06931 URL: https://github.com/llvm/llvm-project/commit/8eb9b67bdacdaefc82a61921e52d2908f6f06931 DIFF: https://github.com/llvm/llvm-project/commit/8eb9b67bdacdaefc82a61921e52d2908f6f06931.diff

[Lldb-commits] [lldb] f5cdfb3 - Detect attach fail in debugserver due to non-interactive

2020-02-06 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-06T16:16:01-08:00 New Revision: f5cdfb34cd4b92bc6475f6c61f2996ada3a2ad1f URL: https://github.com/llvm/llvm-project/commit/f5cdfb34cd4b92bc6475f6c61f2996ada3a2ad1f DIFF: https://github.com/llvm/llvm-project/commit/f5cdfb34cd4b92bc6475f6c61f2996ada3a2ad1f.diff

[Lldb-commits] [lldb] 843a0f9 - Enhance debugserver's err reporting on attach fails

2020-02-04 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-04T19:46:55-08:00 New Revision: 843a0f97717a006fd21cd89fd229b064506e5d05 URL: https://github.com/llvm/llvm-project/commit/843a0f97717a006fd21cd89fd229b064506e5d05 DIFF: https://github.com/llvm/llvm-project/commit/843a0f97717a006fd21cd89fd229b064506e5d05.diff

[Lldb-commits] [lldb] 83bea6d - Remove 'process launch failed:' message prefix in Target::Launch

2020-02-14 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-02-14T18:42:38-08:00 New Revision: 83bea6d99dd17d893b7160e045700aef6173a49d URL: https://github.com/llvm/llvm-project/commit/83bea6d99dd17d893b7160e045700aef6173a49d DIFF: https://github.com/llvm/llvm-project/commit/83bea6d99dd17d893b7160e045700aef6173a49d.diff

[Lldb-commits] [lldb] d44a074 - Save more descriptive error msg from FBS/BKS, relay it up to lldb.

2020-01-08 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-01-08T18:47:35-08:00 New Revision: d44a0743175fc781aa2a23d638d683ded6eb10b8 URL: https://github.com/llvm/llvm-project/commit/d44a0743175fc781aa2a23d638d683ded6eb10b8 DIFF: https://github.com/llvm/llvm-project/commit/d44a0743175fc781aa2a23d638d683ded6eb10b8.diff

[Lldb-commits] [lldb] 1f45914 - Embed a zero-length /dev/null in darwin-debug for the special section.

2020-01-22 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-01-22T15:50:33-08:00 New Revision: 1f45914b4289db7e5ec8d5759707c16e865f02e5 URL: https://github.com/llvm/llvm-project/commit/1f45914b4289db7e5ec8d5759707c16e865f02e5 DIFF: https://github.com/llvm/llvm-project/commit/1f45914b4289db7e5ec8d5759707c16e865f02e5.diff

[Lldb-commits] [lldb] 83a131b - Fix an over-suspend bug with LaunchInNewTerminalWithAppleScript sessions

2020-01-21 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-01-21T14:55:46-08:00 New Revision: 83a131b276426a0dc97f43c139a0f3b308f24154 URL: https://github.com/llvm/llvm-project/commit/83a131b276426a0dc97f43c139a0f3b308f24154 DIFF: https://github.com/llvm/llvm-project/commit/83a131b276426a0dc97f43c139a0f3b308f24154.diff

[Lldb-commits] [lldb] 0211391 - When reading Aux file in chunks, read consecutive byte ranges

2020-01-09 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-01-09T16:05:38-08:00 New Revision: 02113918ed6b5e514afd7d1e007131d36ac13f1d URL: https://github.com/llvm/llvm-project/commit/02113918ed6b5e514afd7d1e007131d36ac13f1d DIFF: https://github.com/llvm/llvm-project/commit/02113918ed6b5e514afd7d1e007131d36ac13f1d.diff

[Lldb-commits] [lldb] 450073c - Change the patterns to include the prefix '= ' so we don't pass errantly.

2020-01-06 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-01-06T15:20:13-08:00 New Revision: 450073c639d7f182e48ec8b1b588212194089a52 URL: https://github.com/llvm/llvm-project/commit/450073c639d7f182e48ec8b1b588212194089a52 DIFF: https://github.com/llvm/llvm-project/commit/450073c639d7f182e48ec8b1b588212194089a52.diff

[Lldb-commits] [lldb] 5e2f4dc - Rewrite comment about what watchpoints Aarch64 supports.

2020-01-07 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-01-07T16:13:23-08:00 New Revision: 5e2f4dc37b1bf72bd27e929a68fec18ae1f5cfa8 URL: https://github.com/llvm/llvm-project/commit/5e2f4dc37b1bf72bd27e929a68fec18ae1f5cfa8 DIFF: https://github.com/llvm/llvm-project/commit/5e2f4dc37b1bf72bd27e929a68fec18ae1f5cfa8.diff

[Lldb-commits] [lldb] 1cd92e4 - Bug where insn-based unwind plans on arm64 could be wrong

2020-04-14 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-04-14T16:57:25-07:00 New Revision: 1cd92e480c12c03ab9a381b29e4e3964892afa01 URL: https://github.com/llvm/llvm-project/commit/1cd92e480c12c03ab9a381b29e4e3964892afa01 DIFF: https://github.com/llvm/llvm-project/commit/1cd92e480c12c03ab9a381b29e4e3964892afa01.diff

[Lldb-commits] [lldb] 7fa342b - Remove attach-failed-due-to-SIP checks which were not working

2020-04-16 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-04-16T15:22:14-07:00 New Revision: 7fa342bd2a6be51998c399f145143d8f45da1f4d URL: https://github.com/llvm/llvm-project/commit/7fa342bd2a6be51998c399f145143d8f45da1f4d DIFF: https://github.com/llvm/llvm-project/commit/7fa342bd2a6be51998c399f145143d8f45da1f4d.diff

[Lldb-commits] [lldb] 836534f - Add more detailed symbol type categorization, based on a swift patch by

2020-04-06 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-04-06T14:05:33-07:00 New Revision: 836534f9970295ff559ef49d6c49958aac6171f9 URL: https://github.com/llvm/llvm-project/commit/836534f9970295ff559ef49d6c49958aac6171f9 DIFF: https://github.com/llvm/llvm-project/commit/836534f9970295ff559ef49d6c49958aac6171f9.diff

[Lldb-commits] [lldb] f0a5af9 - Merge in symbols from Mach-O dyld trie to the symbol table

2020-03-27 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-03-27T22:53:15-07:00 New Revision: f0a5af906b41b654ef0c71dee5f81bf7496524b2 URL: https://github.com/llvm/llvm-project/commit/f0a5af906b41b654ef0c71dee5f81bf7496524b2 DIFF: https://github.com/llvm/llvm-project/commit/f0a5af906b41b654ef0c71dee5f81bf7496524b2.diff

[Lldb-commits] [lldb] 2b8b783 - Quote error string from qLaunchSuccess

2020-05-11 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-05-11T20:05:57-07:00 New Revision: 2b8b783b1ab4a2388d5d80136221729871f65a32 URL: https://github.com/llvm/llvm-project/commit/2b8b783b1ab4a2388d5d80136221729871f65a32 DIFF: https://github.com/llvm/llvm-project/commit/2b8b783b1ab4a2388d5d80136221729871f65a32.diff

[Lldb-commits] [lldb] 5034102 - Log the NSError str and object description on app launch fail

2020-05-05 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-05-05T15:51:50-07:00 New Revision: 5034102b249f850109ccd7b2c8a02a246edcd95a URL: https://github.com/llvm/llvm-project/commit/5034102b249f850109ccd7b2c8a02a246edcd95a DIFF: https://github.com/llvm/llvm-project/commit/5034102b249f850109ccd7b2c8a02a246edcd95a.diff

[Lldb-commits] [lldb] 5d881dd - Update so debugserver can be built on macos again with xcodebuild.

2020-03-18 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-03-18T21:46:20-07:00 New Revision: 5d881dd8a8b8ea6f80bf4ef5b900ca006dacd9bf URL: https://github.com/llvm/llvm-project/commit/5d881dd8a8b8ea6f80bf4ef5b900ca006dacd9bf DIFF: https://github.com/llvm/llvm-project/commit/5d881dd8a8b8ea6f80bf4ef5b900ca006dacd9bf.diff

Re: [Lldb-commits] [PATCH] D74398: [lldb-server] jThreadsInfo returns stack memory

2020-03-22 Thread Jason Molenda via lldb-commits
> On Mar 21, 2020, at 10:25 PM, Jason Molenda via Phabricator via lldb-commits > wrote: > > > 0x11232 <+18>: movq %rax, -0x68(%rbp) > 0x11236 <+22>: callq 0x11350 ; > std::__1::vector > >::vector at vector:497 > 0x1123b <+27>: movabsq $0x1, %rax

[Lldb-commits] [lldb] 8aa07f8 - Remove the old SecTaskAccess entry from debugserver's plist

2020-03-16 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-03-16T21:54:32-07:00 New Revision: 8aa07f81b85b7af4b0678a813dd4f5a98293b955 URL: https://github.com/llvm/llvm-project/commit/8aa07f81b85b7af4b0678a813dd4f5a98293b955 DIFF: https://github.com/llvm/llvm-project/commit/8aa07f81b85b7af4b0678a813dd4f5a98293b955.diff

[Lldb-commits] [lldb] 2ea7187 - Add a new lockdownd plist for launching posix processes

2020-05-07 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-05-07T18:53:51-07:00 New Revision: 2ea7187ab9b7f0eab38a0b5be45c48b1f4f4938d URL: https://github.com/llvm/llvm-project/commit/2ea7187ab9b7f0eab38a0b5be45c48b1f4f4938d DIFF: https://github.com/llvm/llvm-project/commit/2ea7187ab9b7f0eab38a0b5be45c48b1f4f4938d.diff

[Lldb-commits] [lldb] b198568 - Fix typeo in attach failed error message.

2020-10-15 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-10-14T23:31:24-07:00 New Revision: b19856881c1624df8b667d672193be52dfa23846 URL: https://github.com/llvm/llvm-project/commit/b19856881c1624df8b667d672193be52dfa23846 DIFF: https://github.com/llvm/llvm-project/commit/b19856881c1624df8b667d672193be52dfa23846.diff

[Lldb-commits] [lldb] e763709 - Add a new launch flag option for watchos, WatchComplicationLaunch.

2020-10-13 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-10-13T16:28:16-07:00 New Revision: e763709d14e560915e04731c2fd6f1595d7ff8ba URL: https://github.com/llvm/llvm-project/commit/e763709d14e560915e04731c2fd6f1595d7ff8ba DIFF: https://github.com/llvm/llvm-project/commit/e763709d14e560915e04731c2fd6f1595d7ff8ba.diff

[Lldb-commits] [lldb] 7d67c06 - Remove unused build configurations from debugserver xcode project

2020-10-13 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-10-13T16:39:30-07:00 New Revision: 7d67c06391bba00a043c23eb6bb478484831de98 URL: https://github.com/llvm/llvm-project/commit/7d67c06391bba00a043c23eb6bb478484831de98 DIFF: https://github.com/llvm/llvm-project/commit/7d67c06391bba00a043c23eb6bb478484831de98.diff

[Lldb-commits] [lldb] 32021ee - Un-indent the section on 'Writing Target Stop-Hooks in Python'

2020-10-17 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-10-16T23:23:25-07:00 New Revision: 32021eeff0cd4786722e0dd7c31acf7554c6fd0a URL: https://github.com/llvm/llvm-project/commit/32021eeff0cd4786722e0dd7c31acf7554c6fd0a DIFF: https://github.com/llvm/llvm-project/commit/32021eeff0cd4786722e0dd7c31acf7554c6fd0a.diff

[Lldb-commits] [lldb] c932266 - Add a nul byte to packet str before logging, increase default size.

2020-10-20 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-10-20T01:43:31-07:00 New Revision: c932266c8d0414672974eb77786f1d0f122d URL: https://github.com/llvm/llvm-project/commit/c932266c8d0414672974eb77786f1d0f122d DIFF: https://github.com/llvm/llvm-project/commit/c932266c8d0414672974eb77786f1d0f122d.diff

[Lldb-commits] [lldb] b1e856d - Ah, one test too many updated. This one should be unmodified.

2020-08-25 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-08-25T21:03:39-07:00 New Revision: b1e856d3a9019c355baa186075699d95be7b2735 URL: https://github.com/llvm/llvm-project/commit/b1e856d3a9019c355baa186075699d95be7b2735 DIFF: https://github.com/llvm/llvm-project/commit/b1e856d3a9019c355baa186075699d95be7b2735.diff

[Lldb-commits] [lldb] 99d187a - Update UnwindPlan dump to list if it is a trap handler func; also Command

2020-08-25 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-08-25T20:53:59-07:00 New Revision: 99d187a003c9bd4bdc42c17e5563bd80f4e159e9 URL: https://github.com/llvm/llvm-project/commit/99d187a003c9bd4bdc42c17e5563bd80f4e159e9 DIFF: https://github.com/llvm/llvm-project/commit/99d187a003c9bd4bdc42c17e5563bd80f4e159e9.diff

[Lldb-commits] [lldb] a1e9792 - Have kernel binary scanner load dSYMs as binary+dSYM if best thing found

2020-10-01 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-10-01T18:55:37-07:00 New Revision: a1e97923a025d09934b557ca4343d8e4b5a9973d URL: https://github.com/llvm/llvm-project/commit/a1e97923a025d09934b557ca4343d8e4b5a9973d DIFF: https://github.com/llvm/llvm-project/commit/a1e97923a025d09934b557ca4343d8e4b5a9973d.diff

[Lldb-commits] [lldb] 6e54918 - Once we've found a firmware binary and loaded it, don't search more

2020-09-28 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-09-28T12:51:23-07:00 New Revision: 6e54918db7f4dad0d5a6fbff140009ed6f151d2c URL: https://github.com/llvm/llvm-project/commit/6e54918db7f4dad0d5a6fbff140009ed6f151d2c DIFF: https://github.com/llvm/llvm-project/commit/6e54918db7f4dad0d5a6fbff140009ed6f151d2c.diff

[Lldb-commits] [lldb] 1bec6eb - Add support for firmware/standalone LC_NOTE "main bin spec" corefiles

2020-09-25 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-09-25T15:19:22-07:00 New Revision: 1bec6eb3f5cba594698bae5b2789744e0c8ee5f2 URL: https://github.com/llvm/llvm-project/commit/1bec6eb3f5cba594698bae5b2789744e0c8ee5f2 DIFF: https://github.com/llvm/llvm-project/commit/1bec6eb3f5cba594698bae5b2789744e0c8ee5f2.diff

[Lldb-commits] [lldb] c48ccb6 - Simplify conditionals in DNBArchMachARM64::EnableHardwareSingleStep

2020-06-29 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-06-29T14:04:44-07:00 New Revision: c48ccb6b4e513e467b22fab1de57a25c23af4361 URL: https://github.com/llvm/llvm-project/commit/c48ccb6b4e513e467b22fab1de57a25c23af4361 DIFF: https://github.com/llvm/llvm-project/commit/c48ccb6b4e513e467b22fab1de57a25c23af4361.diff

[Lldb-commits] [lldb] 480a383 - Upstream two performance monitor collectors to MachTask

2020-06-15 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2020-06-15T16:37:56-07:00 New Revision: 480a383551e96d9f6fb0ddcdcc9d893faf37e5b3 URL: https://github.com/llvm/llvm-project/commit/480a383551e96d9f6fb0ddcdcc9d893faf37e5b3 DIFF: https://github.com/llvm/llvm-project/commit/480a383551e96d9f6fb0ddcdcc9d893faf37e5b3.diff

<    1   2   3   4   5   6   7   8   9   10   >