[Lldb-commits] [lldb] [lldb][FreeBSD] Add dynamic loader handle class for FreeBSD Kernel (PR #67106)

2023-09-22 Thread Alex Langford via lldb-commits
@@ -0,0 +1,770 @@ +#include "lldb/Breakpoint/StoppointCallbackContext.h" +#include "lldb/Core/Debugger.h" +#include "lldb/Core/Module.h" +#include "lldb/Core/ModuleSpec.h" +#include "lldb/Core/PluginManager.h" +#include "lldb/Core/Section.h" +#include "lldb/Core/StreamFile.h"

[Lldb-commits] [lldb] [lldb][FreeBSD] Add dynamic loader handle class for FreeBSD Kernel (PR #67106)

2023-09-22 Thread Alex Langford via lldb-commits
@@ -0,0 +1,770 @@ +#include "lldb/Breakpoint/StoppointCallbackContext.h" +#include "lldb/Core/Debugger.h" +#include "lldb/Core/Module.h" +#include "lldb/Core/ModuleSpec.h" +#include "lldb/Core/PluginManager.h" +#include "lldb/Core/Section.h" +#include "lldb/Core/StreamFile.h"

[Lldb-commits] [lldb] [lldb][FreeBSD] Add dynamic loader handle class for FreeBSD Kernel (PR #67106)

2023-09-22 Thread Alex Langford via lldb-commits
@@ -0,0 +1,770 @@ +#include "lldb/Breakpoint/StoppointCallbackContext.h" +#include "lldb/Core/Debugger.h" +#include "lldb/Core/Module.h" +#include "lldb/Core/ModuleSpec.h" +#include "lldb/Core/PluginManager.h" +#include "lldb/Core/Section.h" +#include "lldb/Core/StreamFile.h"

[Lldb-commits] [lldb] [lldb][FreeBSD] Add dynamic loader handle class for FreeBSD Kernel (PR #67106)

2023-09-22 Thread Alex Langford via lldb-commits
@@ -0,0 +1,165 @@ +#ifndef LLDB_SOURCE_PLUGINS_DYNAMICLOADER_FREEBSD_KERNEL_DYNAMICLOADERFREEBSDKERNEL_H bulbazord wrote: This file needs a license header. https://github.com/llvm/llvm-project/pull/67106 ___

[Lldb-commits] [lldb] [lldb][FreeBSD] Add dynamic loader handle class for FreeBSD Kernel (PR #67106)

2023-09-22 Thread Alex Langford via lldb-commits
@@ -935,6 +935,16 @@ lldb_private::Address ObjectFileELF::GetEntryPointAddress() { } Address ObjectFileELF::GetBaseAddress() { + if (GetType() == ObjectFile::eTypeObjectFile) { +for (SectionHeaderCollIter I = std::next(m_section_headers.begin()); + I !=

[Lldb-commits] [lldb] [lldb] add command start (PR #67019)

2023-09-22 Thread Alex Langford via lldb-commits
=?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: bulbazord wrote: You also may want to change the title of your PR to reflect the actual change you'll be making as well. When you squash and merge, you'll have an opportunity to rewrite the commit message to more accurately reflect what

[Lldb-commits] [lldb] [lldb] add command start (PR #67019)

2023-09-22 Thread Alex Langford via lldb-commits
=?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: bulbazord wrote: Concretely, you can revert the first commit and push that so that your branch has your first commit, second commit, and a revert commit for the first one. As Walter said, it should squash down and resolve correctly.

[Lldb-commits] [lldb] [lldb] Modify the DWARFDebugAbbrev interface to be closer to LLVM's (PR #67190)

2023-09-22 Thread Alex Langford via lldb-commits
https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/67190 I want to work towards unifying the implementations. It would be a lot easier to do if LLDB's DWARFDebugAbbrev looked more similar to LLVM's implementation, so this change moves in that direction. >From

[Lldb-commits] [lldb] [lldb][NFCI] Change parameter type in UserExpression::GetObjectPointer (PR #67055)

2023-09-22 Thread Alex Langford via lldb-commits
https://github.com/bulbazord closed https://github.com/llvm/llvm-project/pull/67055 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][NFC] Move some ctors and tors to cpp files (PR #67165)

2023-09-22 Thread Alex Langford via lldb-commits
https://github.com/bulbazord approved this pull request. Makes sense to me, if we're defining a lot of the methods for these classes in implementation files, we should do the same for constructors and destructors too. https://github.com/llvm/llvm-project/pull/67165

[Lldb-commits] [lldb] [lldb][NFCI] Change parameter type in UserExpression::GetObjectPointer (PR #67055)

2023-09-21 Thread Alex Langford via lldb-commits
https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/67055 GetObjectPointer (and other related methods) do not need `ConstString` parameters. The string parameter in these methods boil down to getting a StringRef and calling

[Lldb-commits] [lldb] b927490 - [lldb][NFCI] Remove unused struct ConstString::StringIsEqual

2023-09-19 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-09-19T17:39:22-07:00 New Revision: b927490d73eebe0a7e8071047d79a330145b0488 URL: https://github.com/llvm/llvm-project/commit/b927490d73eebe0a7e8071047d79a330145b0488 DIFF: https://github.com/llvm/llvm-project/commit/b927490d73eebe0a7e8071047d79a330145b0488.diff

[Lldb-commits] [lldb] [lldb][NFCI] Remove unneccessary allocation in ScriptInterpreterPythonImpl::GetSyntheticTypeName (PR #66724)

2023-09-19 Thread Alex Langford via lldb-commits
bulbazord wrote: Fixed with `f1097e88d22511f3ec96386ca165b75bb75aaa7a`. https://github.com/llvm/llvm-project/pull/66724 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] f1097e8 - [lldb] Fix build after d5a62b78b8ae

2023-09-19 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-09-19T10:56:13-07:00 New Revision: f1097e88d22511f3ec96386ca165b75bb75aaa7a URL: https://github.com/llvm/llvm-project/commit/f1097e88d22511f3ec96386ca165b75bb75aaa7a DIFF: https://github.com/llvm/llvm-project/commit/f1097e88d22511f3ec96386ca165b75bb75aaa7a.diff

[Lldb-commits] [lldb] [lldb][NFCI] Remove unneccessary allocation in ScriptInterpreterPythonImpl::GetSyntheticTypeName (PR #66724)

2023-09-19 Thread Alex Langford via lldb-commits
bulbazord wrote: I'm aware this has broken the build, working on it. Thanks for your patience. https://github.com/llvm/llvm-project/pull/66724 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [lldb] [lldb][NFCI] Remove unneccessary allocation in ScriptInterpreterPythonImpl::GetSyntheticTypeName (PR #66724)

2023-09-19 Thread Alex Langford via lldb-commits
https://github.com/bulbazord closed https://github.com/llvm/llvm-project/pull/66724 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][NFCI] Remove unneeded ConstString from intel-pt plugin (PR #66721)

2023-09-19 Thread Alex Langford via lldb-commits
https://github.com/bulbazord closed https://github.com/llvm/llvm-project/pull/66721 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][NFCI] Remove unneccessary allocation in ScriptInterpreterPythonImpl::GetSyntheticTypeName (PR #66724)

2023-09-18 Thread Alex Langford via lldb-commits
https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/66724 Instead of copying memory out of the PythonString (via a std::string) and then using that to create a ConstString, it would make more sense to just create the ConstString from the original StringRef in the

[Lldb-commits] [lldb] [lldb][NFCI] Remove unneeded ConstString from intel-pt plugin (PR #66721)

2023-09-18 Thread Alex Langford via lldb-commits
https://github.com/bulbazord created https://github.com/llvm/llvm-project/pull/66721 This is a follow-up to 14d95b26aee0ac0ac8a70252e8a3c7a986e0e812. I would have changed it in that commit, but I don't build the intel-pt plugin so I didn't see this until later. >From

[Lldb-commits] [lldb] [lldb] Add 'modify' type watchpoints, make it default (PR #66308)

2023-09-14 Thread Alex Langford via lldb-commits
bulbazord wrote: > > ``` > >SBWatchpoint SBTarget::WatchpointCreateByAddress(addr_t address, size_t > > size, uint32_t access_flags, SBError ); > > ``` > > > > > > > > > > > > > > > > > > > > > > > > with `eWatchpointAccess{Read,Write,Modify}` flags

[Lldb-commits] [lldb] a5a2a5a - [lldb][NFCI] Remove use of ConstString in StructuredData

2023-09-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-09-14T10:53:39-07:00 New Revision: a5a2a5a3eca06998d9f71186db2ce78ae2716022 URL: https://github.com/llvm/llvm-project/commit/a5a2a5a3eca06998d9f71186db2ce78ae2716022 DIFF: https://github.com/llvm/llvm-project/commit/a5a2a5a3eca06998d9f71186db2ce78ae2716022.diff

[Lldb-commits] [lldb] 2f377c5 - [lldb][NFCI] Remove use of ConstString from UnixSignals

2023-09-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-09-14T10:19:53-07:00 New Revision: 2f377c5bd713e9ee72faa6a99088bb81358059e3 URL: https://github.com/llvm/llvm-project/commit/2f377c5bd713e9ee72faa6a99088bb81358059e3 DIFF: https://github.com/llvm/llvm-project/commit/2f377c5bd713e9ee72faa6a99088bb81358059e3.diff

[Lldb-commits] [lldb] [lldb] Add 'modify' type watchpoints, make it default (PR #66308)

2023-09-14 Thread Alex Langford via lldb-commits
@@ -3109,14 +3109,15 @@ static GDBStoppointType GetGDBStoppointType(Watchpoint *wp) { assert(wp); bool watch_read = wp->WatchpointRead(); bool watch_write = wp->WatchpointWrite(); + bool watch_modify = wp->WatchpointModify(); - // watch_read and watch_write cannot

[Lldb-commits] [lldb] [lldb] Add 'modify' type watchpoints, make it default (PR #66308)

2023-09-14 Thread Alex Langford via lldb-commits
@@ -211,6 +212,35 @@ bool Watchpoint::CaptureWatchedValue(const ExecutionContext _ctx) { return (m_new_value_sp && m_new_value_sp->GetError().Success()); } +bool Watchpoint::WatchedValueReportable(const ExecutionContext _ctx) { + if (!m_watch_modify) +return true; +

[Lldb-commits] [lldb] [lldb][Docs] Document our major differences from the LLVM style (PR #66345)

2023-09-14 Thread Alex Langford via lldb-commits
bulbazord wrote: > @bulbazord This would be a good place to put your plugin dependency / const > string guidance. Or tell me where it lives now and I'll link to it. Oh, yes! I'd be happy to take care of that after this goes in, thanks for pointing that out! :)

[Lldb-commits] [lldb] [lldb][Docs] Document our major differences from the LLVM style (PR #66345)

2023-09-14 Thread Alex Langford via lldb-commits
@@ -18,19 +18,38 @@ Please refer to the `LLVM Developer Policy authoring and uploading a patch. LLDB differs from the LLVM Developer Policy in the following respects. - - **Test infrastructure**: Like LLVM it is important to submit tests with your - patches, but note that

[Lldb-commits] [lldb] [lldb][Docs] Document our major differences from the LLVM style (PR #66345)

2023-09-14 Thread Alex Langford via lldb-commits
@@ -18,19 +18,38 @@ Please refer to the `LLVM Developer Policy authoring and uploading a patch. LLDB differs from the LLVM Developer Policy in the following respects. - - **Test infrastructure**: Like LLVM it is important to submit tests with your - patches, but note that

[Lldb-commits] [lldb] [lldb][Docs] Document our major differences from the LLVM style (PR #66345)

2023-09-14 Thread Alex Langford via lldb-commits
@@ -18,19 +18,38 @@ Please refer to the `LLVM Developer Policy authoring and uploading a patch. LLDB differs from the LLVM Developer Policy in the following respects. - - **Test infrastructure**: Like LLVM it is important to submit tests with your - patches, but note that

[Lldb-commits] [lldb] [lldb][Docs] Document our major differences from the LLVM style (PR #66345)

2023-09-14 Thread Alex Langford via lldb-commits
@@ -18,19 +18,38 @@ Please refer to the `LLVM Developer Policy authoring and uploading a patch. LLDB differs from the LLVM Developer Policy in the following respects. - - **Test infrastructure**: Like LLVM it is important to submit tests with your - patches, but note that

[Lldb-commits] [lldb] [lldb][Docs] Document our major differences from the LLVM style (PR #66345)

2023-09-14 Thread Alex Langford via lldb-commits
https://github.com/bulbazord edited https://github.com/llvm/llvm-project/pull/66345 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][Docs] Document our major differences from the LLVM style (PR #66345)

2023-09-14 Thread Alex Langford via lldb-commits
https://github.com/bulbazord commented: Excellent write up, thanks for taking care of that! https://github.com/llvm/llvm-project/pull/66345 ___ lldb-commits mailing list lldb-commits@lists.llvm.org

[Lldb-commits] [lldb] 5bff905 - [lldb][NFCI] Remove unused method TypeCategoryMap::Get(uint32_t, ValueSP &)

2023-09-05 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-09-05T10:53:56-07:00 New Revision: 5bff905c0de50ff87b73e6a1e93d0a5b0f38e1a9 URL: https://github.com/llvm/llvm-project/commit/5bff905c0de50ff87b73e6a1e93d0a5b0f38e1a9 DIFF: https://github.com/llvm/llvm-project/commit/5bff905c0de50ff87b73e6a1e93d0a5b0f38e1a9.diff

[Lldb-commits] [lldb] 764287f - [lldb] Add support for recognizing swift ast sections in object files

2023-08-31 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-31T15:16:12-07:00 New Revision: 764287f1ad69469cc264bb094e8fcdcfdd0fcdfb URL: https://github.com/llvm/llvm-project/commit/764287f1ad69469cc264bb094e8fcdcfdd0fcdfb DIFF: https://github.com/llvm/llvm-project/commit/764287f1ad69469cc264bb094e8fcdcfdd0fcdfb.diff

[Lldb-commits] [lldb] 14d95b2 - [lldb][NFCI] Remove unneeded ConstString conversions

2023-08-31 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-31T11:27:59-07:00 New Revision: 14d95b26aee0ac0ac8a70252e8a3c7a986e0e812 URL: https://github.com/llvm/llvm-project/commit/14d95b26aee0ac0ac8a70252e8a3c7a986e0e812 DIFF: https://github.com/llvm/llvm-project/commit/14d95b26aee0ac0ac8a70252e8a3c7a986e0e812.diff

[Lldb-commits] [lldb] 9ed72d4 - [lldb][NFCI] Replace bespoke iterator check with std::next

2023-08-31 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-31T10:55:00-07:00 New Revision: 9ed72d4d4d507b60a54f6b74e86433f837ded93c URL: https://github.com/llvm/llvm-project/commit/9ed72d4d4d507b60a54f6b74e86433f837ded93c DIFF: https://github.com/llvm/llvm-project/commit/9ed72d4d4d507b60a54f6b74e86433f837ded93c.diff

[Lldb-commits] [lldb] 5d49c9c - [lldb][NFCI] Remove StructuredData::Array::GetItemAtIndexAsString overloads with ConstString

2023-08-29 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-29T16:02:26-07:00 New Revision: 5d49c9ce65881467295fd5ef2022b60d6601e82f URL: https://github.com/llvm/llvm-project/commit/5d49c9ce65881467295fd5ef2022b60d6601e82f DIFF: https://github.com/llvm/llvm-project/commit/5d49c9ce65881467295fd5ef2022b60d6601e82f.diff

[Lldb-commits] [lldb] ebff12d - [lldb][NFCI] Change return type of UnixSignals::GetSignalInfo

2023-08-22 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-22T10:54:06-07:00 New Revision: ebff12d675aa4db4ee8762c165a387a8d86dd0d5 URL: https://github.com/llvm/llvm-project/commit/ebff12d675aa4db4ee8762c165a387a8d86dd0d5 DIFF: https://github.com/llvm/llvm-project/commit/ebff12d675aa4db4ee8762c165a387a8d86dd0d5.diff

[Lldb-commits] [lldb] a43e23a - [lldb][NFCI] Silence warning about unhandled value eManglingSchemeSwift in switch statement

2023-08-22 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-22T10:35:36-07:00 New Revision: a43e23a2141f4fa78940844d810648ff8d40f474 URL: https://github.com/llvm/llvm-project/commit/a43e23a2141f4fa78940844d810648ff8d40f474 DIFF: https://github.com/llvm/llvm-project/commit/a43e23a2141f4fa78940844d810648ff8d40f474.diff

[Lldb-commits] [lldb] edc64d4 - [lldb] Add support for recognizing swift mangled names

2023-08-22 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-22T10:28:55-07:00 New Revision: edc64d49de92d33e709bcde1db5670ff430f5fad URL: https://github.com/llvm/llvm-project/commit/edc64d49de92d33e709bcde1db5670ff430f5fad DIFF: https://github.com/llvm/llvm-project/commit/edc64d49de92d33e709bcde1db5670ff430f5fad.diff

[Lldb-commits] [lldb] 58fe7b7 - [lldb] Change UnixSignals::GetSignalAsCString to GetSignalAsStringRef

2023-08-21 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-21T12:44:17-07:00 New Revision: 58fe7b751dc4a611a013a7708c1c0cac159b5f1e URL: https://github.com/llvm/llvm-project/commit/58fe7b751dc4a611a013a7708c1c0cac159b5f1e DIFF: https://github.com/llvm/llvm-project/commit/58fe7b751dc4a611a013a7708c1c0cac159b5f1e.diff

[Lldb-commits] [lldb] 3415798 - [lldb][NFCI] Remove unneeded ConstString from ValueObject::GetValueForExpressionPath_Impl

2023-08-17 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-17T10:44:01-07:00 New Revision: 3415798f7993974a19bd22b0481f2f6a71e4a2ab URL: https://github.com/llvm/llvm-project/commit/3415798f7993974a19bd22b0481f2f6a71e4a2ab DIFF: https://github.com/llvm/llvm-project/commit/3415798f7993974a19bd22b0481f2f6a71e4a2ab.diff

[Lldb-commits] [lldb] 9e6d48e - [lldb][NFCI] Module constructor should take ConstString by value

2023-08-17 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-17T10:34:57-07:00 New Revision: 9e6d48ef6085b762d8eb2531bbb481f57446da1c URL: https://github.com/llvm/llvm-project/commit/9e6d48ef6085b762d8eb2531bbb481f57446da1c DIFF: https://github.com/llvm/llvm-project/commit/9e6d48ef6085b762d8eb2531bbb481f57446da1c.diff

[Lldb-commits] [lldb] 90c5675 - [lldb][NFCI] Rewrite error-handling code in ProcessGDBRemote::MonitorDebugserverProcess

2023-08-17 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-17T10:32:23-07:00 New Revision: 90c5675a3db2319dd449a1753c79568355dfaaed URL: https://github.com/llvm/llvm-project/commit/90c5675a3db2319dd449a1753c79568355dfaaed DIFF: https://github.com/llvm/llvm-project/commit/90c5675a3db2319dd449a1753c79568355dfaaed.diff

[Lldb-commits] [lldb] 2f382bf - [lldb][NFCI] Remove unused method overload of ValueObject::GetChildAtNamePath

2023-08-16 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-16T14:23:58-07:00 New Revision: 2f382bfb14e38429e69885406ae8cedc9bb3028e URL: https://github.com/llvm/llvm-project/commit/2f382bfb14e38429e69885406ae8cedc9bb3028e DIFF: https://github.com/llvm/llvm-project/commit/2f382bfb14e38429e69885406ae8cedc9bb3028e.diff

[Lldb-commits] [lldb] 5a25f97 - [lldb][NFCI] Change parameter type in Process::SetExitStatus

2023-08-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-14T15:49:03-07:00 New Revision: 5a25f97e69500d4f65ce0e56027787752c7aab61 URL: https://github.com/llvm/llvm-project/commit/5a25f97e69500d4f65ce0e56027787752c7aab61 DIFF: https://github.com/llvm/llvm-project/commit/5a25f97e69500d4f65ce0e56027787752c7aab61.diff

[Lldb-commits] [lldb] 69fdbdc - [lldb] Remove support for SBHostOS threading functionality

2023-08-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-14T14:33:08-07:00 New Revision: 69fdbdc4493aacf4d418a063930b39b02b5e18c5 URL: https://github.com/llvm/llvm-project/commit/69fdbdc4493aacf4d418a063930b39b02b5e18c5 DIFF: https://github.com/llvm/llvm-project/commit/69fdbdc4493aacf4d418a063930b39b02b5e18c5.diff

[Lldb-commits] [lldb] e634c2f - [lldb] Remove use of __future__ in python

2023-08-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-14T14:14:48-07:00 New Revision: e634c2f7149392b62e93c1b2b75701a12bc06721 URL: https://github.com/llvm/llvm-project/commit/e634c2f7149392b62e93c1b2b75701a12bc06721 DIFF: https://github.com/llvm/llvm-project/commit/e634c2f7149392b62e93c1b2b75701a12bc06721.diff

[Lldb-commits] [lldb] d21ec35 - [lldb][NFCI] Remove use of ifdef __cpluplus where unneeded

2023-08-10 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-10T11:24:40-07:00 New Revision: d21ec35dcf3c351395522807beac0f45b7bcf6b9 URL: https://github.com/llvm/llvm-project/commit/d21ec35dcf3c351395522807beac0f45b7bcf6b9 DIFF: https://github.com/llvm/llvm-project/commit/d21ec35dcf3c351395522807beac0f45b7bcf6b9.diff

[Lldb-commits] [lldb] f2d32dd - [lldb] Sink StreamFile into lldbHost

2023-08-09 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-09T17:17:18-07:00 New Revision: f2d32ddcec82c20582c6aa32558b82ca7c3d3c50 URL: https://github.com/llvm/llvm-project/commit/f2d32ddcec82c20582c6aa32558b82ca7c3d3c50 DIFF: https://github.com/llvm/llvm-project/commit/f2d32ddcec82c20582c6aa32558b82ca7c3d3c50.diff

[Lldb-commits] [lldb] 20c77a5 - [lldb] Sink StreamBuffer into lldbUtility

2023-08-09 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-09T17:10:13-07:00 New Revision: 20c77a5789331956cd47d1804df7885a82094964 URL: https://github.com/llvm/llvm-project/commit/20c77a5789331956cd47d1804df7885a82094964 DIFF: https://github.com/llvm/llvm-project/commit/20c77a5789331956cd47d1804df7885a82094964.diff

[Lldb-commits] [lldb] 44c876f - [lldb][NFCI] Remove MappedHash.h

2023-08-09 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-09T15:48:23-07:00 New Revision: 44c876fd75c26482d197a5c5312eac6f43fe URL: https://github.com/llvm/llvm-project/commit/44c876fd75c26482d197a5c5312eac6f43fe DIFF: https://github.com/llvm/llvm-project/commit/44c876fd75c26482d197a5c5312eac6f43fe.diff

[Lldb-commits] [lldb] 335d0e3 - [lldb][NFCI] Remove unused IOStreamMacros

2023-08-09 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-09T11:42:41-07:00 New Revision: 335d0e3a6e8de8cccd535d9dbaa3df5600884ad7 URL: https://github.com/llvm/llvm-project/commit/335d0e3a6e8de8cccd535d9dbaa3df5600884ad7 DIFF: https://github.com/llvm/llvm-project/commit/335d0e3a6e8de8cccd535d9dbaa3df5600884ad7.diff

[Lldb-commits] [lldb] 08dc847 - [lldb][NFCI] Add SBTraceCursor.h to swig headers file

2023-08-03 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-03T16:41:17-07:00 New Revision: 08dc847d55fbdfa7ff6cb8034633139df0199562 URL: https://github.com/llvm/llvm-project/commit/08dc847d55fbdfa7ff6cb8034633139df0199562 DIFF: https://github.com/llvm/llvm-project/commit/08dc847d55fbdfa7ff6cb8034633139df0199562.diff

[Lldb-commits] [lldb] 6c2e324 - [lldb] Re-add compile-time checks for SPI in HosInfoMacOSX

2023-08-02 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-02T10:21:54-07:00 New Revision: 6c2e3249160f5b68f6e09fed0435ee043659f2d9 URL: https://github.com/llvm/llvm-project/commit/6c2e3249160f5b68f6e09fed0435ee043659f2d9 DIFF: https://github.com/llvm/llvm-project/commit/6c2e3249160f5b68f6e09fed0435ee043659f2d9.diff

[Lldb-commits] [lldb] b8aba26 - [lldb][NFCI] More forward declarations in SBDefines.h

2023-08-01 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-01T09:57:07-07:00 New Revision: b8aba26c82f270a3bdbc85e2c886e8446f0d6820 URL: https://github.com/llvm/llvm-project/commit/b8aba26c82f270a3bdbc85e2c886e8446f0d6820 DIFF: https://github.com/llvm/llvm-project/commit/b8aba26c82f270a3bdbc85e2c886e8446f0d6820.diff

[Lldb-commits] [lldb] 6888de1 - [lldb] Fix building LLDB standlone without framework

2023-08-01 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-08-01T09:50:36-07:00 New Revision: 6888de118707e6392b46073fc35738804f9f1d80 URL: https://github.com/llvm/llvm-project/commit/6888de118707e6392b46073fc35738804f9f1d80 DIFF: https://github.com/llvm/llvm-project/commit/6888de118707e6392b46073fc35738804f9f1d80.diff

[Lldb-commits] [lldb] db9087a - [lldb] Clean up uses of UuidCompatibility.h

2023-07-31 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-31T10:30:07-07:00 New Revision: db9087a696a65042701049b9028096aeda82aa98 URL: https://github.com/llvm/llvm-project/commit/db9087a696a65042701049b9028096aeda82aa98 DIFF: https://github.com/llvm/llvm-project/commit/db9087a696a65042701049b9028096aeda82aa98.diff

[Lldb-commits] [lldb] a809720 - [lldb][NFCI] Change logic to find clang resource dir in standalone builds

2023-07-25 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-25T15:52:33-07:00 New Revision: a809720102fae8d1b5a7073f99f9dae9395c5f41 URL: https://github.com/llvm/llvm-project/commit/a809720102fae8d1b5a7073f99f9dae9395c5f41 DIFF: https://github.com/llvm/llvm-project/commit/a809720102fae8d1b5a7073f99f9dae9395c5f41.diff

[Lldb-commits] [lldb] 5876eee - [lldb][NFCI] Add some missing SB class forward declarations

2023-07-24 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-24T10:33:30-07:00 New Revision: 5876eee1ff9278662aab219023f7466406ff4dfc URL: https://github.com/llvm/llvm-project/commit/5876eee1ff9278662aab219023f7466406ff4dfc DIFF: https://github.com/llvm/llvm-project/commit/5876eee1ff9278662aab219023f7466406ff4dfc.diff

[Lldb-commits] [lldb] 1b29a84 - [lldb][NFCI] Avoid construction of temporary std::strings in RegisterValue

2023-07-17 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-17T12:53:34-07:00 New Revision: 1b29a848ffa2d2c108de9e64de1d271e10db25f0 URL: https://github.com/llvm/llvm-project/commit/1b29a848ffa2d2c108de9e64de1d271e10db25f0 DIFF: https://github.com/llvm/llvm-project/commit/1b29a848ffa2d2c108de9e64de1d271e10db25f0.diff

[Lldb-commits] [lldb] 7ee633a - [lldb][NFCI] Remove unneeded temporary std::string allocations in SBAPI

2023-07-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-14T10:46:42-07:00 New Revision: 7ee633a24b8ce87b3a9b2f0f4bd1aace634cd2a1 URL: https://github.com/llvm/llvm-project/commit/7ee633a24b8ce87b3a9b2f0f4bd1aace634cd2a1 DIFF: https://github.com/llvm/llvm-project/commit/7ee633a24b8ce87b3a9b2f0f4bd1aace634cd2a1.diff

[Lldb-commits] [lldb] c25e48c - [lldb] Move CommandOverrideCallbackWithResult to lldb_private namespace

2023-07-13 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-13T11:21:35-07:00 New Revision: c25e48c5d776c5fb8f94f13a73f44cd930968c29 URL: https://github.com/llvm/llvm-project/commit/c25e48c5d776c5fb8f94f13a73f44cd930968c29 DIFF: https://github.com/llvm/llvm-project/commit/c25e48c5d776c5fb8f94f13a73f44cd930968c29.diff

[Lldb-commits] [lldb] 1d7a3dc - [lldb] Forward declare SBPlatform and SBTypeMember in SBDefines

2023-07-13 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-13T10:51:48-07:00 New Revision: 1d7a3dcff77837d63a2ef4a25ab3c683ed623ec8 URL: https://github.com/llvm/llvm-project/commit/1d7a3dcff77837d63a2ef4a25ab3c683ed623ec8 DIFF: https://github.com/llvm/llvm-project/commit/1d7a3dcff77837d63a2ef4a25ab3c683ed623ec8.diff

[Lldb-commits] [lldb] 1d796b4 - [lldb][NFCI] Methods to load scripting resources should take a Stream by reference

2023-07-11 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-11T10:36:11-07:00 New Revision: 1d796b48e4d48bd0e4b29972a1b8d653493ee30c URL: https://github.com/llvm/llvm-project/commit/1d796b48e4d48bd0e4b29972a1b8d653493ee30c DIFF: https://github.com/llvm/llvm-project/commit/1d796b48e4d48bd0e4b29972a1b8d653493ee30c.diff

[Lldb-commits] [lldb] e7c48ff - [lldb][NFCI] Avoid construction of temporary std::strings in Variable

2023-07-11 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-11T10:22:02-07:00 New Revision: e7c48ffde1c8137822a1b0a1ba6c4be5b4624aa6 URL: https://github.com/llvm/llvm-project/commit/e7c48ffde1c8137822a1b0a1ba6c4be5b4624aa6 DIFF: https://github.com/llvm/llvm-project/commit/e7c48ffde1c8137822a1b0a1ba6c4be5b4624aa6.diff

[Lldb-commits] [lldb] 1e7101a - [lldb][NFCI] TestEmulation should take a Stream ref

2023-07-10 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-10T11:17:25-07:00 New Revision: 1e7101a3d95884c791d566b7b6192fbac55f55e0 URL: https://github.com/llvm/llvm-project/commit/1e7101a3d95884c791d566b7b6192fbac55f55e0 DIFF: https://github.com/llvm/llvm-project/commit/1e7101a3d95884c791d566b7b6192fbac55f55e0.diff

[Lldb-commits] [lldb] 564ff8f - [lldb][NFCI] Remove use of Stream * from TypeSystem

2023-07-07 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-07T10:09:43-07:00 New Revision: 564ff8ffe75d9353ac02be5a4d3aa424cb79429c URL: https://github.com/llvm/llvm-project/commit/564ff8ffe75d9353ac02be5a4d3aa424cb79429c DIFF: https://github.com/llvm/llvm-project/commit/564ff8ffe75d9353ac02be5a4d3aa424cb79429c.diff

[Lldb-commits] [lldb] 8f7e41d - [lldb][NFCI] Minor cleanups to StructuredData::GetObjectForDotSeparatedPath

2023-07-06 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-06T08:51:54-07:00 New Revision: 8f7e41d0400ecc41f8120e330baed15b0d203036 URL: https://github.com/llvm/llvm-project/commit/8f7e41d0400ecc41f8120e330baed15b0d203036 DIFF: https://github.com/llvm/llvm-project/commit/8f7e41d0400ecc41f8120e330baed15b0d203036.diff

[Lldb-commits] [lldb] fc55b0b - [lldb][NFCI] Remove use of ConstString from OptionValue

2023-07-06 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-06T08:49:07-07:00 New Revision: fc55b0b38446be8948a291057b3086b4a01fe0a7 URL: https://github.com/llvm/llvm-project/commit/fc55b0b38446be8948a291057b3086b4a01fe0a7 DIFF: https://github.com/llvm/llvm-project/commit/fc55b0b38446be8948a291057b3086b4a01fe0a7.diff

[Lldb-commits] [lldb] fd5748c - [lldb][NFCI] Minor cleanup of default OptionValue::GetSubValue implementation

2023-07-05 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-05T09:00:59-07:00 New Revision: fd5748cb5a45c4178b84eb329bea9055f8ee485d URL: https://github.com/llvm/llvm-project/commit/fd5748cb5a45c4178b84eb329bea9055f8ee485d DIFF: https://github.com/llvm/llvm-project/commit/fd5748cb5a45c4178b84eb329bea9055f8ee485d.diff

[Lldb-commits] [lldb] 20f9927 - [lldb][NFCI] Deprecate SBValue::GetOpaqueType

2023-07-05 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-05T08:52:32-07:00 New Revision: 20f99278dbb81e880c23c65688e9752ce7ad019a URL: https://github.com/llvm/llvm-project/commit/20f99278dbb81e880c23c65688e9752ce7ad019a DIFF: https://github.com/llvm/llvm-project/commit/20f99278dbb81e880c23c65688e9752ce7ad019a.diff

[Lldb-commits] [lldb] 1c7c997 - [lldb] Deprecate SBHostOS threading functionality

2023-07-05 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-05T08:46:48-07:00 New Revision: 1c7c9970379e1949a0b338eba2746dbf84b0bda4 URL: https://github.com/llvm/llvm-project/commit/1c7c9970379e1949a0b338eba2746dbf84b0bda4 DIFF: https://github.com/llvm/llvm-project/commit/1c7c9970379e1949a0b338eba2746dbf84b0bda4.diff

[Lldb-commits] [lldb] b709149 - [lldb][NFCI] Target::StopHook::GetDescription should take a Stream ref instead of pointer

2023-07-03 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-03T11:39:38-07:00 New Revision: b709149b76277e8bea4a3d7977ccb4e818499b7b URL: https://github.com/llvm/llvm-project/commit/b709149b76277e8bea4a3d7977ccb4e818499b7b DIFF: https://github.com/llvm/llvm-project/commit/b709149b76277e8bea4a3d7977ccb4e818499b7b.diff

[Lldb-commits] [lldb] ebec53e - [lldb] Introduce a macro to mark methods as unsupported with no replacement

2023-07-03 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-03T11:17:48-07:00 New Revision: ebec53e2d7c79b519aec455d048f5f03fc2e7abe URL: https://github.com/llvm/llvm-project/commit/ebec53e2d7c79b519aec455d048f5f03fc2e7abe DIFF: https://github.com/llvm/llvm-project/commit/ebec53e2d7c79b519aec455d048f5f03fc2e7abe.diff

[Lldb-commits] [lldb] e3921b8 - [lldb][NFCI] Remove use of ConstString from ProcessElfCore

2023-07-03 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-03T11:13:50-07:00 New Revision: e3921b8bff693649602760a6221cd1150420a287 URL: https://github.com/llvm/llvm-project/commit/e3921b8bff693649602760a6221cd1150420a287 DIFF: https://github.com/llvm/llvm-project/commit/e3921b8bff693649602760a6221cd1150420a287.diff

[Lldb-commits] [lldb] 1b10288 - [lldb][NFCI] Change return type of GetProcessPluginName

2023-07-03 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-03T10:03:49-07:00 New Revision: 1b102886c0c33bb01ff8f2360b57c7b8d039abcc URL: https://github.com/llvm/llvm-project/commit/1b102886c0c33bb01ff8f2360b57c7b8d039abcc DIFF: https://github.com/llvm/llvm-project/commit/1b102886c0c33bb01ff8f2360b57c7b8d039abcc.diff

[Lldb-commits] [lldb] a2ff292 - [lldb][NFCI] TypeSystemClang::CreateStructForIdentifier should take a StringRef

2023-07-03 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-03T09:35:24-07:00 New Revision: a2ff2921e84aa435e124ad275f70855a185cfb1c URL: https://github.com/llvm/llvm-project/commit/a2ff2921e84aa435e124ad275f70855a185cfb1c DIFF: https://github.com/llvm/llvm-project/commit/a2ff2921e84aa435e124ad275f70855a185cfb1c.diff

[Lldb-commits] [lldb] 673f910 - [lldb][NFCI] Remove unneeded use of ConstString in ASTResultSynthesizer

2023-07-03 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-07-03T09:31:10-07:00 New Revision: 673f91055a41b2273e159eafe86d0d7d87fa474f URL: https://github.com/llvm/llvm-project/commit/673f91055a41b2273e159eafe86d0d7d87fa474f DIFF: https://github.com/llvm/llvm-project/commit/673f91055a41b2273e159eafe86d0d7d87fa474f.diff

[Lldb-commits] [lldb] 1bd69ae - [lldb][NFCI] Apply LLDB_DEPRECATED to things that have deprecated comments

2023-06-27 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-27T10:46:34-07:00 New Revision: 1bd69ae0c5a7e704979f6efa1c7d7c39d4e2d5c9 URL: https://github.com/llvm/llvm-project/commit/1bd69ae0c5a7e704979f6efa1c7d7c39d4e2d5c9 DIFF: https://github.com/llvm/llvm-project/commit/1bd69ae0c5a7e704979f6efa1c7d7c39d4e2d5c9.diff

[Lldb-commits] [lldb] 7ec0831 - [lldb][NFCI] Remove use of ConstString from PluginManager

2023-06-27 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-27T10:43:35-07:00 New Revision: 7ec083107ff2dd72cb28e9cd8a45749e2619046c URL: https://github.com/llvm/llvm-project/commit/7ec083107ff2dd72cb28e9cd8a45749e2619046c DIFF: https://github.com/llvm/llvm-project/commit/7ec083107ff2dd72cb28e9cd8a45749e2619046c.diff

[Lldb-commits] [lldb] 7ed3c2e - [lldb] Increase the maximum number of classes we can read from shared cache

2023-06-26 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-26T14:59:55-07:00 New Revision: 7ed3c2edf017840e0c7c358aa48d2d67d4b55dcb URL: https://github.com/llvm/llvm-project/commit/7ed3c2edf017840e0c7c358aa48d2d67d4b55dcb DIFF: https://github.com/llvm/llvm-project/commit/7ed3c2edf017840e0c7c358aa48d2d67d4b55dcb.diff

[Lldb-commits] [lldb] 9442e81 - [lldb][NFCI] Remove ConstString from Process::ConfigureStructuredData

2023-06-26 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-26T11:09:09-07:00 New Revision: 9442e81f02a7e83132432269c9ada7c03eab7a38 URL: https://github.com/llvm/llvm-project/commit/9442e81f02a7e83132432269c9ada7c03eab7a38 DIFF: https://github.com/llvm/llvm-project/commit/9442e81f02a7e83132432269c9ada7c03eab7a38.diff

[Lldb-commits] [lldb] 2014572 - [lldb][NFCI] Remove unneeded ConstString constructions for OptionValueProperties::AppendProperty

2023-06-26 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-26T11:06:29-07:00 New Revision: 2014572d9a6839745a920ec19ebfa73814548061 URL: https://github.com/llvm/llvm-project/commit/2014572d9a6839745a920ec19ebfa73814548061 DIFF: https://github.com/llvm/llvm-project/commit/2014572d9a6839745a920ec19ebfa73814548061.diff

[Lldb-commits] [lldb] 5f69e66 - [lldb][NFCI] Timer::DumpCategoryTimes should take a reference instead of a pointer

2023-06-26 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-26T10:36:41-07:00 New Revision: 5f69e6682bf0806c13098f79cb5f1ee30f0f8c06 URL: https://github.com/llvm/llvm-project/commit/5f69e6682bf0806c13098f79cb5f1ee30f0f8c06 DIFF: https://github.com/llvm/llvm-project/commit/5f69e6682bf0806c13098f79cb5f1ee30f0f8c06.diff

[Lldb-commits] [lldb] 718e0cd - [lldb][NFCI] UUID::Dump should take a reference instead of a pointer

2023-06-26 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-26T10:33:18-07:00 New Revision: 718e0cd6e7240a1233991eec472aa904800dce00 URL: https://github.com/llvm/llvm-project/commit/718e0cd6e7240a1233991eec472aa904800dce00 DIFF: https://github.com/llvm/llvm-project/commit/718e0cd6e7240a1233991eec472aa904800dce00.diff

[Lldb-commits] [lldb] 1a397ec - [lldb][NFCI] Remove use of ConstString from StructuredDataPlugin

2023-06-23 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-23T10:29:52-07:00 New Revision: 1a397ecffdea64f5a521b4aac1fa4b98723dec22 URL: https://github.com/llvm/llvm-project/commit/1a397ecffdea64f5a521b4aac1fa4b98723dec22 DIFF: https://github.com/llvm/llvm-project/commit/1a397ecffdea64f5a521b4aac1fa4b98723dec22.diff

[Lldb-commits] [lldb] 28fb39f - [lldb] Adjust for changes in objc runtime

2023-06-22 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-22T16:42:22-07:00 New Revision: 28fb39f16af1003e53008b75c11127b3288742f8 URL: https://github.com/llvm/llvm-project/commit/28fb39f16af1003e53008b75c11127b3288742f8 DIFF: https://github.com/llvm/llvm-project/commit/28fb39f16af1003e53008b75c11127b3288742f8.diff

[Lldb-commits] [lldb] b4827a3 - [lldb][NFCI] Remove ConstString from GDBRemoteCommunicationClient::ConfigureRemoteStructuredData

2023-06-21 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-21T10:17:24-07:00 New Revision: b4827a3c0a7ef121ca376713e115b04eff0f5194 URL: https://github.com/llvm/llvm-project/commit/b4827a3c0a7ef121ca376713e115b04eff0f5194 DIFF: https://github.com/llvm/llvm-project/commit/b4827a3c0a7ef121ca376713e115b04eff0f5194.diff

[Lldb-commits] [lldb] 7d30878 - [lldb][NFCI] Avoid a few unnecessary ConstString constructions in StructuredDataDarwinLog

2023-06-16 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-16T14:19:13-07:00 New Revision: 7d30878bf8586a991264c5ca9095a7b5a5234a42 URL: https://github.com/llvm/llvm-project/commit/7d30878bf8586a991264c5ca9095a7b5a5234a42 DIFF: https://github.com/llvm/llvm-project/commit/7d30878bf8586a991264c5ca9095a7b5a5234a42.diff

[Lldb-commits] [lldb] 4493049 - [lldb][NFCI] Remove unused method Properties::GetSubProperty

2023-06-16 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-16T10:55:01-07:00 New Revision: 44930490124d29c07b9538fb08fc6c7713cd74dc URL: https://github.com/llvm/llvm-project/commit/44930490124d29c07b9538fb08fc6c7713cd74dc DIFF: https://github.com/llvm/llvm-project/commit/44930490124d29c07b9538fb08fc6c7713cd74dc.diff

[Lldb-commits] [lldb] 0b90d09 - [lldb][NFCI] Remove use of ConstString in ProcessStructReader

2023-06-16 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-16T10:53:24-07:00 New Revision: 0b90d09898cadc89105c3caf0d01f09e66c49993 URL: https://github.com/llvm/llvm-project/commit/0b90d09898cadc89105c3caf0d01f09e66c49993 DIFF: https://github.com/llvm/llvm-project/commit/0b90d09898cadc89105c3caf0d01f09e66c49993.diff

[Lldb-commits] [lldb] 193c7d1 - [lldb][NFCI] Remove custom matcher classes in Listener in favor of lambdas

2023-06-16 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-16T10:50:15-07:00 New Revision: 193c7d10cb30d846d35085a462f8a6c8ad226f1f URL: https://github.com/llvm/llvm-project/commit/193c7d10cb30d846d35085a462f8a6c8ad226f1f DIFF: https://github.com/llvm/llvm-project/commit/193c7d10cb30d846d35085a462f8a6c8ad226f1f.diff

[Lldb-commits] [lldb] 4c8b6fa - [lldb][NFCI] TypeSystemClang::GetTypeForIdentifier should take a StringRef

2023-06-16 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-16T10:44:55-07:00 New Revision: 4c8b6fae4437f9a5b17ddc146592aec0e4c78e02 URL: https://github.com/llvm/llvm-project/commit/4c8b6fae4437f9a5b17ddc146592aec0e4c78e02 DIFF: https://github.com/llvm/llvm-project/commit/4c8b6fae4437f9a5b17ddc146592aec0e4c78e02.diff

[Lldb-commits] [lldb] e29cc52 - [lldb][NFCI] Remove use of ConstString from IOHandler

2023-06-15 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-15T14:57:20-07:00 New Revision: e29cc5216a8608b026e390b69022878b2ec3071a URL: https://github.com/llvm/llvm-project/commit/e29cc5216a8608b026e390b69022878b2ec3071a DIFF: https://github.com/llvm/llvm-project/commit/e29cc5216a8608b026e390b69022878b2ec3071a.diff

[Lldb-commits] [lldb] 8fb919a - [lldb] Symtab::SectionFileAddressesChanged should clear the file address map instead of name map

2023-06-15 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-15T14:46:46-07:00 New Revision: 8fb919a1154a593fdf01e759ece7904afc73f687 URL: https://github.com/llvm/llvm-project/commit/8fb919a1154a593fdf01e759ece7904afc73f687 DIFF: https://github.com/llvm/llvm-project/commit/8fb919a1154a593fdf01e759ece7904afc73f687.diff

[Lldb-commits] [lldb] 35b0b24 - [lldb] Introduce DynamicRegisterInfo::CreateFromDict

2023-06-15 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-15T10:51:17-07:00 New Revision: 35b0b244401aad5ca3a16c9e4d97a5892ca7592b URL: https://github.com/llvm/llvm-project/commit/35b0b244401aad5ca3a16c9e4d97a5892ca7592b DIFF: https://github.com/llvm/llvm-project/commit/35b0b244401aad5ca3a16c9e4d97a5892ca7592b.diff

[Lldb-commits] [lldb] 623ad8a - [lldb] Fix SBPlatform after f4be9ff6458f

2023-06-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-14T15:46:00-07:00 New Revision: 623ad8a8ddc96e9dee4f354ee4e7b3e7c11b119f URL: https://github.com/llvm/llvm-project/commit/623ad8a8ddc96e9dee4f354ee4e7b3e7c11b119f DIFF: https://github.com/llvm/llvm-project/commit/623ad8a8ddc96e9dee4f354ee4e7b3e7c11b119f.diff

[Lldb-commits] [lldb] f6ca15c - [lldb][NFCI] Remove unused method ProcessStructReader::GetOffsetOf

2023-06-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-14T14:45:21-07:00 New Revision: f6ca15cfb20983e2a966efad663a25bd61826c07 URL: https://github.com/llvm/llvm-project/commit/f6ca15cfb20983e2a966efad663a25bd61826c07 DIFF: https://github.com/llvm/llvm-project/commit/f6ca15cfb20983e2a966efad663a25bd61826c07.diff

[Lldb-commits] [lldb] a9ddf45 - [lldb][NFCI] Remove ProcessStructReader header where unused

2023-06-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-14T14:38:18-07:00 New Revision: a9ddf45b8ace943b637837b63e38f297ac811442 URL: https://github.com/llvm/llvm-project/commit/a9ddf45b8ace943b637837b63e38f297ac811442 DIFF: https://github.com/llvm/llvm-project/commit/a9ddf45b8ace943b637837b63e38f297ac811442.diff

[Lldb-commits] [lldb] f4be9ff - [lldb][NFCI] Platforms should own their SDKBuild and SDKRootDirectory strings

2023-06-14 Thread Alex Langford via lldb-commits
Author: Alex Langford Date: 2023-06-14T09:59:58-07:00 New Revision: f4be9ff6458fe6401acaf9239865e077141dd8bc URL: https://github.com/llvm/llvm-project/commit/f4be9ff6458fe6401acaf9239865e077141dd8bc DIFF: https://github.com/llvm/llvm-project/commit/f4be9ff6458fe6401acaf9239865e077141dd8bc.diff

<    5   6   7   8   9   10   11   12   13   14   >