[Lldb-commits] [lldb] [lldb] Fix windows debug build after 9d07f43 (PR #104896)

2024-08-20 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben closed https://github.com/llvm/llvm-project/pull/104896 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb/Interpreter] Introduce `ScriptedStopHook{, Python}Interface` & make use of it (PR #105449)

2024-08-20 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben created https://github.com/llvm/llvm-project/pull/105449 This patch introduces new `ScriptedStopHook{,Python}Interface` classes that make use of the Scripted Interface infrastructure and makes use of it in `StopHookScripted`. It also relax the requirement on th

[Lldb-commits] [lldb] [lldb] Remove limit on max memory read size (PR #105765)

2024-08-22 Thread Med Ismail Bennani via lldb-commits
@@ -102,7 +102,7 @@ let Definition = "target" in { DefaultUnsignedValue<1024>, Desc<"Maximum number of characters to show when using %s in summary strings.">; def MaxMemReadSize: Property<"max-memory-read-size", "UInt64">, -DefaultUnsignedValue<1024>, +Defaul

[Lldb-commits] [lldb] [lldb] Remove limit on max memory read size (PR #105765)

2024-08-23 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/105765 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Remove limit on max memory read size (PR #105765)

2024-08-23 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: > both of the linux PR tests failed in Unwind/trap_frame_sym_ctx.test, I could > have sworn the only test failure I had before was in > TestMemoryReadMaximumSize.py, I don't see how this PR breaks that test case. > Hmm. I believe that failure is unrelated to your PR since

[Lldb-commits] [lldb] [llvm] [Docs] Use cacheable myst_heading_slug_func value (PR #104847)

2024-08-26 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/104847 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [llvm] [Docs] Use cacheable myst_heading_slug_func value (PR #104847)

2024-08-26 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: > Requires myst_parser 0.19.0 (specifically > [executablebooks/MyST-Parser#696](https://github.com/executablebooks/MyST-Parser/pull/696)) > which is over a year old by now. Do we mandate any minimum version for these > dependencies? Kinda: [llvm/docs/requirements.txt](htt

[Lldb-commits] [clang] [compiler-rt] [libcxx] [lld] [lldb] [llvm] [mlir] [polly] python: use raw strings for regex (PR #105990)

2024-08-26 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: Nice! Please make sure to run the python formatter (`darker`) before landing this. https://github.com/llvm/llvm-project/pull/105990 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/li

[Lldb-commits] [lldb] [lldb] Turn lldb_private::Status into a value type. (PR #106163)

2024-08-26 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben edited https://github.com/llvm/llvm-project/pull/106163 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Turn lldb_private::Status into a value type. (PR #106163)

2024-08-26 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben commented: Cool stuff! I think this is fine except for the python files. https://github.com/llvm/llvm-project/pull/106163 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/l

[Lldb-commits] [lldb] [lldb] Turn lldb_private::Status into a value type. (PR #106163)

2024-08-26 Thread Med Ismail Bennani via lldb-commits
@@ -15,7 +15,7 @@ def __init__(self, exe_ctx: lldb.SBExecutionContext, args: lldb.SBStructuredData def read_memory_at_address( self, addr: int, size: int, error: lldb.SBError ) -> lldb.SBData: -error.SetErrorString("This is an invalid scripted process!"

[Lldb-commits] [lldb] [lldb] Turn lldb_private::Status into a value type. (PR #106163)

2024-08-26 Thread Med Ismail Bennani via lldb-commits
@@ -56,19 +56,41 @@ class Status { /// /// \param[in] type /// The type for \a err. - explicit Status(ValueType err, - lldb::ErrorType type = lldb::eErrorTypeGeneric); + explicit Status(ValueType err, lldb::ErrorType type = lldb::eErrorTypeGeneric,

[Lldb-commits] [lldb] [LLDB][SBSaveCore] Add selectable memory regions to SBSaveCore (PR #105442)

2024-08-27 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: It looks like this broke lldb macOS bots: https://green.lab.llvm.org/job/llvm.org/view/LLDB/job/as-lldb-cmake/10450/ @Jlalond can you take a look ? Thanks. https://github.com/llvm/llvm-project/pull/105442 ___ lldb-commits mailing

[Lldb-commits] [lldb] [lldb] Add Status::Detail to store expression evaluator diagnostics [… (PR #106442)

2024-08-28 Thread Med Ismail Bennani via lldb-commits
@@ -130,13 +120,17 @@ class DiagnosticManager { m_diagnostics.back()->AppendMessage(str); } - // Returns a string containing errors in this format: - // - // "error: error text\n - // warning: warning text\n - // remark text\n" + /// Returns a string containing e

[Lldb-commits] [lldb] [lldb] Add Status::Detail to store expression evaluator diagnostics [… (PR #106442)

2024-08-28 Thread Med Ismail Bennani via lldb-commits
@@ -47,7 +48,34 @@ class Status { /// into ValueType. typedef uint32_t ValueType; - Status(); + /// A customizable "detail" for an error. For example, expression + /// evaluation failures often have more than one diagnostic that the + /// UI layer might want to render

[Lldb-commits] [lldb] [lldb] Add Status::Detail to store expression evaluator diagnostics [… (PR #106442)

2024-08-28 Thread Med Ismail Bennani via lldb-commits
@@ -65,6 +65,23 @@ std::string DiagnosticManager::GetString(char separator) { return ret; } +Status DiagnosticManager::GetAsStatus(lldb::ExpressionResults result) { + llvm::SmallVector details; + details.reserve(m_diagnostics.size()); + for (const auto &diagnostic : m_dia

[Lldb-commits] [lldb] [lldb] Add Status::Detail to store expression evaluator diagnostics [… (PR #106442)

2024-08-28 Thread Med Ismail Bennani via lldb-commits
@@ -328,18 +328,19 @@ UserExpression::Evaluate(ExecutionContext &exe_ctx, } if (!parse_success) { - std::string msg; - { -llvm::raw_string_ostream os(msg); -if (!diagnostic_manager.Diagnostics().empty()) - os << diagnostic_manager.Get

[Lldb-commits] [lldb] [lldb] Inline expression evaluator error visualization (PR #106470)

2024-08-28 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben requested changes to this pull request. Let's make `std::optional offset_in_command` a default member of the `CommandObject` base class to avoid changing all the `DoExecute` implementations, even when not needed. https://github.com/llvm/llvm-project/pull/106470

[Lldb-commits] [lldb] [lldb] Inline expression evaluator error visualization (PR #106470)

2024-08-28 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben edited https://github.com/llvm/llvm-project/pull/106470 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Inline expression evaluator error visualization (PR #106470)

2024-08-28 Thread Med Ismail Bennani via lldb-commits
@@ -2076,7 +2077,11 @@ bool CommandInterpreter::HandleCommand(const char *command_line, } ElapsedTime elapsed(execute_time); -cmd_obj->Execute(remainder.c_str(), result); +size_t nchar = real_original_command_string.find(remainder); +std::optional pos_in_c

[Lldb-commits] [lldb] [lldb] Inline expression evaluator error visualization (PR #106470)

2024-08-29 Thread Med Ismail Bennani via lldb-commits
@@ -2076,7 +2077,11 @@ bool CommandInterpreter::HandleCommand(const char *command_line, } ElapsedTime elapsed(execute_time); -cmd_obj->Execute(remainder.c_str(), result); +size_t nchar = real_original_command_string.find(remainder); +std::optional pos_in_c

[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)

2024-08-30 Thread Med Ismail Bennani via lldb-commits
@@ -33,16 +33,16 @@ class RemoteAwarePlatformTester : public RemoteAwarePlatform { MOCK_METHOD0(CalculateTrapHandlerSymbolNames, void()); MOCK_METHOD2(ResolveExecutable, - std::pair(const ModuleSpec &, - const FileSp

[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)

2024-09-01 Thread Med Ismail Bennani via lldb-commits
@@ -97,7 +97,7 @@ class LLDB_API SBError { friend class lldb_private::ScriptInterpreter; friend class lldb_private::python::SWIGBridge; - SBError(const lldb_private::Status &error); + SBError(lldb_private::Status &&error); medismailben wrote: +1 https:

[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)

2024-08-30 Thread Med Ismail Bennani via lldb-commits
@@ -96,16 +128,49 @@ Status Status::FromErrorStringWithFormat(const char *format, ...) { return Status(string); } -llvm::Error Status::ToError() const { - if (Success()) +Status Status::FromExpressionError(lldb::ExpressionResults result, +

[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)

2024-08-30 Thread Med Ismail Bennani via lldb-commits
@@ -27,15 +27,15 @@ TEST(StatusTest, Formatv) { } TEST(StatusTest, ErrorConstructor) { - EXPECT_TRUE(Status(llvm::Error::success()).Success()); + EXPECT_TRUE(Status::FromError(llvm::Error::success()).Success()); - Status eagain( + Status eagain = Status::FromError(

[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)

2024-08-30 Thread Med Ismail Bennani via lldb-commits
@@ -133,36 +198,30 @@ static std::string RetrieveWin32ErrorString(uint32_t error_code) { } #endif +std::string MachKernelError::message() const { +#if defined(__APPLE__) + if (const char *s = ::mach_error_string(convertToErrorCode().value())) +return s; +#endif + return

[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)

2024-08-30 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. This is great! LGTM with comments. https://github.com/llvm/llvm-project/pull/106774 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/ll

[Lldb-commits] [lldb] [lldb] Change the implementation of Status to store an llvm::Error (NFC) (PR #106774)

2024-08-30 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben edited https://github.com/llvm/llvm-project/pull/106774 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [clang] [compiler-rt] [libcxx] [lldb] [llvm] Rename Sanitizer Coverage => Coverage Sanitizer (PR #106505)

2024-09-03 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM for lldb's part https://github.com/llvm/llvm-project/pull/106505 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Print a warning on checksum mismatch (PR #107968)

2024-09-11 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/107968 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Add a comment in the SB API doc about keeping the SB API's lightweight. (PR #108462)

2024-09-12 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. https://github.com/llvm/llvm-project/pull/108462 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Emit signpost intervals for progress events (NFC) (PR #108498)

2024-09-13 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/108498 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] colorize symbols in image lookup (PR #69422)

2023-11-27 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?José?= L. Junior ,taalhaataahir0102 <23100...@lums.edu.pk>, =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior ,taalhaataahir0102 <23100...@lums.edu.pk> Message-ID: In-Reply-To: medismailben wrote: Guys, this sounds very cool, but I don't think I've seen any screenshot of what

[Lldb-commits] [lldb] Add --copyExecutable and --ignoreNegativeCache to dsymForUUID invoke (PR #72579)

2023-11-27 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: Seems to have been resolved in #72669 https://github.com/llvm/llvm-project/pull/72579 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Add --copyExecutable and --ignoreNegativeCache to dsymForUUID invoke (PR #72579)

2023-11-27 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben closed https://github.com/llvm/llvm-project/pull/72579 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][progress] Always report progress upon Progress object destruction (PR #73605)

2023-11-27 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben edited https://github.com/llvm/llvm-project/pull/73605 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][progress] Always report progress upon Progress object destruction (PR #73605)

2023-11-27 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM with comment. https://github.com/llvm/llvm-project/pull/73605 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][progress] Always report progress upon Progress object destruction (PR #73605)

2023-11-27 Thread Med Ismail Bennani via lldb-commits
@@ -32,8 +32,8 @@ Progress::~Progress() { std::lock_guard guard(m_mutex); if (!m_completed) { m_completed = m_total; -ReportProgress(); } medismailben wrote: Remove the braces: https://llvm.org/docs/CodingStandards.html#don-t-use-braces-on-simp

[Lldb-commits] [lldb] [lldb][progress] Add discrete boolean flag to progress reports (PR #69516)

2023-11-29 Thread Med Ismail Bennani via lldb-commits
@@ -1402,22 +1402,24 @@ void Debugger::SetDestroyCallback( static void PrivateReportProgress(Debugger &debugger, uint64_t progress_id, std::string title, std::string details, uint64_t completed, uint64_t total,

[Lldb-commits] [lldb] [lldb][progress] Add discrete boolean flag to progress reports (PR #69516)

2023-11-29 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben edited https://github.com/llvm/llvm-project/pull/69516 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][progress] Add discrete boolean flag to progress reports (PR #69516)

2023-11-29 Thread Med Ismail Bennani via lldb-commits
@@ -55,6 +55,11 @@ namespace lldb_private { class Progress { public: + /// Enum that indicates the type of progress report + enum ProgressReportType { medismailben wrote: `enum class` ? https://github.com/llvm/llvm-project/pull/69516 __

[Lldb-commits] [lldb] [lldb][progress] Add discrete boolean flag to progress reports (PR #69516)

2023-11-29 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM with comments. https://github.com/llvm/llvm-project/pull/69516 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Fix a stall in running `quit` while a live process is running (PR #74687)

2023-12-06 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM! https://github.com/llvm/llvm-project/pull/74687 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb][progress] Add discrete boolean flag to progress reports (PR #69516)

2023-12-11 Thread Med Ismail Bennani via lldb-commits
@@ -2225,7 +2225,8 @@ void ObjectFileMachO::ParseSymtab(Symtab &symtab) { const char *file_name = file.GetFilename().AsCString(""); LLDB_SCOPED_TIMERF("ObjectFileMachO::ParseSymtab () module = %s", file_name); LLDB_LOG(log, "Parsing symbol table for {0}", file_name); - P

[Lldb-commits] [lldb] 1f5f416 - [lldb] Fix dead lock issue when loading modules in Scripted Process

2023-07-06 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-07-06T14:33:52-07:00 New Revision: 1f5f4169c427c51c6919e0013c89a191dba564e8 URL: https://github.com/llvm/llvm-project/commit/1f5f4169c427c51c6919e0013c89a191dba564e8 DIFF: https://github.com/llvm/llvm-project/commit/1f5f4169c427c51c6919e0013c89a191dba564e8.

[Lldb-commits] [lldb] 57bd882 - [lldb] Convert script native types to StructuredData counterpart

2023-07-21 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-07-21T18:47:46-07:00 New Revision: 57bd882343f8e4cca598b6ad47da93476cffb987 URL: https://github.com/llvm/llvm-project/commit/57bd882343f8e4cca598b6ad47da93476cffb987 DIFF: https://github.com/llvm/llvm-project/commit/57bd882343f8e4cca598b6ad47da93476cffb987.

[Lldb-commits] [lldb] f043e66 - [lldb/crashlog] Make register output match lldb ordering in legacy mode

2023-08-12 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-11T23:59:41-07:00 New Revision: f043e66e98836e3acf3c978fd0dc429f74b228da URL: https://github.com/llvm/llvm-project/commit/f043e66e98836e3acf3c978fd0dc429f74b228da DIFF: https://github.com/llvm/llvm-project/commit/f043e66e98836e3acf3c978fd0dc429f74b228da.

[Lldb-commits] [lldb] 8f75c4d - [lldb/crashlog] Make TextCrashLogParser more resilient to new lines

2023-08-12 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-11T23:59:42-07:00 New Revision: 8f75c4d01eff3c65d7ae40bfd05582de7dffa590 URL: https://github.com/llvm/llvm-project/commit/8f75c4d01eff3c65d7ae40bfd05582de7dffa590 DIFF: https://github.com/llvm/llvm-project/commit/8f75c4d01eff3c65d7ae40bfd05582de7dffa590.

[Lldb-commits] [lldb] 4677041 - [lldb/crashlog] Move CrashLogParseMode into TextCrashLogParser (NFC)

2023-08-12 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-11T23:59:42-07:00 New Revision: 4677041d61dbe929e886649a97e4d3f49572b0ca URL: https://github.com/llvm/llvm-project/commit/4677041d61dbe929e886649a97e4d3f49572b0ca DIFF: https://github.com/llvm/llvm-project/commit/4677041d61dbe929e886649a97e4d3f49572b0ca.

[Lldb-commits] [lldb] 75bed96 - [lldb/crashlog] Fix sticky image parsing logic

2023-08-12 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-11T23:59:42-07:00 New Revision: 75bed9655a54c82e0485b28026605cb8e1f7c78a URL: https://github.com/llvm/llvm-project/commit/75bed9655a54c82e0485b28026605cb8e1f7c78a DIFF: https://github.com/llvm/llvm-project/commit/75bed9655a54c82e0485b28026605cb8e1f7c78a.

[Lldb-commits] [lldb] 706e875 - [lldb/crashlog] Skip images with empty path and 0 UUID from loading

2023-08-12 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-11T23:59:42-07:00 New Revision: 706e875da3a21f2d6ba612ca991dbdbccb339327 URL: https://github.com/llvm/llvm-project/commit/706e875da3a21f2d6ba612ca991dbdbccb339327 DIFF: https://github.com/llvm/llvm-project/commit/706e875da3a21f2d6ba612ca991dbdbccb339327.

[Lldb-commits] [lldb] 7602641 - [lldb/crashlog] Add test for 8f75c4d01eff3c65d7ae40bfd05582de7dffa590 (NFC)

2023-08-18 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-18T20:50:39+01:00 New Revision: 7602641d7bf96b727e1739e2f68db1cadc27324a URL: https://github.com/llvm/llvm-project/commit/7602641d7bf96b727e1739e2f68db1cadc27324a DIFF: https://github.com/llvm/llvm-project/commit/7602641d7bf96b727e1739e2f68db1cadc27324a.

[Lldb-commits] [lldb] eef5ead - [lldb/crashlog] Replace deprecated optparse by argparse (NFC)

2023-08-18 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-18T20:50:39+01:00 New Revision: eef5eadbe617a9530d982a9ea3cfc284d2a52858 URL: https://github.com/llvm/llvm-project/commit/eef5eadbe617a9530d982a9ea3cfc284d2a52858 DIFF: https://github.com/llvm/llvm-project/commit/eef5eadbe617a9530d982a9ea3cfc284d2a52858.

[Lldb-commits] [lldb] 21a597c - [lldb/crashlog] Fix module loading for crashed thread behaviour

2023-08-18 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-18T20:50:39+01:00 New Revision: 21a597c31cb8ad03e18a293c73ecd7c498387ef8 URL: https://github.com/llvm/llvm-project/commit/21a597c31cb8ad03e18a293c73ecd7c498387ef8 DIFF: https://github.com/llvm/llvm-project/commit/21a597c31cb8ad03e18a293c73ecd7c498387ef8.

[Lldb-commits] [lldb] 3054a0c - [lldb/crashlog] Remove dead code (NFC)

2023-08-18 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-18T20:50:39+01:00 New Revision: 3054a0c4bc50856156f26b528895ddcfba4210fa URL: https://github.com/llvm/llvm-project/commit/3054a0c4bc50856156f26b528895ddcfba4210fa DIFF: https://github.com/llvm/llvm-project/commit/3054a0c4bc50856156f26b528895ddcfba4210fa.

[Lldb-commits] [lldb] 4c4f0d8 - [lldb/crashlog] Add support for Last Exception Backtrace

2023-08-18 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-18T20:50:39+01:00 New Revision: 4c4f0d81f47cf9ad785dc2ea323ec2f0aedb72df URL: https://github.com/llvm/llvm-project/commit/4c4f0d81f47cf9ad785dc2ea323ec2f0aedb72df DIFF: https://github.com/llvm/llvm-project/commit/4c4f0d81f47cf9ad785dc2ea323ec2f0aedb72df.

[Lldb-commits] [lldb] 9a44eed - [lldb/crashlog] Skip non-crashed threads in batch mode

2023-08-18 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-18T20:50:39+01:00 New Revision: 9a44eedb842d03b0e4d24f8dcc57a49e1a9cc1ac URL: https://github.com/llvm/llvm-project/commit/9a44eedb842d03b0e4d24f8dcc57a49e1a9cc1ac DIFF: https://github.com/llvm/llvm-project/commit/9a44eedb842d03b0e4d24f8dcc57a49e1a9cc1ac.

[Lldb-commits] [lldb] a3e6ac1 - [lldb/test] Fix TestSaveCrashlog.py following changes in eef5eadbe617

2023-08-18 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-18T23:29:40+01:00 New Revision: a3e6ac16ffc32e794da3f60150e903027f279f27 URL: https://github.com/llvm/llvm-project/commit/a3e6ac16ffc32e794da3f60150e903027f279f27 DIFF: https://github.com/llvm/llvm-project/commit/a3e6ac16ffc32e794da3f60150e903027f279f27.

[Lldb-commits] [lldb] 446abb5 - [lldb/crashlog] Fix python version requirement issue

2023-08-21 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-21T21:52:44+01:00 New Revision: 446abb5125f76423232e5d4d3ed116cccfbd8b99 URL: https://github.com/llvm/llvm-project/commit/446abb5125f76423232e5d4d3ed116cccfbd8b99 DIFF: https://github.com/llvm/llvm-project/commit/446abb5125f76423232e5d4d3ed116cccfbd8b99.

[Lldb-commits] [lldb] a6c97a1 - [lldb/test] Fix `Crashlog/no-args.test` on ASAN builds (NFC)

2023-08-23 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-23T07:32:35-07:00 New Revision: a6c97a1a308e413bda63cbeaa3bebe7b2e739902 URL: https://github.com/llvm/llvm-project/commit/a6c97a1a308e413bda63cbeaa3bebe7b2e739902 DIFF: https://github.com/llvm/llvm-project/commit/a6c97a1a308e413bda63cbeaa3bebe7b2e739902.

[Lldb-commits] [lldb] eea8874 - [lldb/infra] Revamp lldb.llvm.org

2023-08-24 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-24T15:41:16+01:00 New Revision: eea887406498d3a420ed0afbb654915a7e08e2ad URL: https://github.com/llvm/llvm-project/commit/eea887406498d3a420ed0afbb654915a7e08e2ad DIFF: https://github.com/llvm/llvm-project/commit/eea887406498d3a420ed0afbb654915a7e08e2ad.

[Lldb-commits] [lldb] dfb48dc - Revert "[lldb/infra] Revamp lldb.llvm.org"

2023-08-24 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-24T19:44:16+01:00 New Revision: dfb48dcc9cb6217bd62aed1dc8a5f30736eafba7 URL: https://github.com/llvm/llvm-project/commit/dfb48dcc9cb6217bd62aed1dc8a5f30736eafba7 DIFF: https://github.com/llvm/llvm-project/commit/dfb48dcc9cb6217bd62aed1dc8a5f30736eafba7.

[Lldb-commits] [lldb] 6a2552a - [lldb/infra] Revamp lldb.llvm.org

2023-08-26 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-26T09:54:56+01:00 New Revision: 6a2552a1419d674033c8d2f8bfeeb981a70a2e67 URL: https://github.com/llvm/llvm-project/commit/6a2552a1419d674033c8d2f8bfeeb981a70a2e67 DIFF: https://github.com/llvm/llvm-project/commit/6a2552a1419d674033c8d2f8bfeeb981a70a2e67.

[Lldb-commits] [lldb] 498b59e - [lldb/docs] Silence warnings when generating website

2023-08-29 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-29T13:45:30+01:00 New Revision: 498b59e01133bed16c72dd939a9daa8ae1f359e4 URL: https://github.com/llvm/llvm-project/commit/498b59e01133bed16c72dd939a9daa8ae1f359e4 DIFF: https://github.com/llvm/llvm-project/commit/498b59e01133bed16c72dd939a9daa8ae1f359e4.

[Lldb-commits] [lldb] 18f1c1a - Revert "[lldb/docs] Silence warnings when generating website"

2023-08-29 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-29T13:57:35+01:00 New Revision: 18f1c1ace7a6099f3e8e56cf4b81aa0f64a7dd23 URL: https://github.com/llvm/llvm-project/commit/18f1c1ace7a6099f3e8e56cf4b81aa0f64a7dd23 DIFF: https://github.com/llvm/llvm-project/commit/18f1c1ace7a6099f3e8e56cf4b81aa0f64a7dd23.

[Lldb-commits] [lldb] f0731d5 - Re-land "[lldb/docs] Silence warnings when generating website"

2023-08-29 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-29T16:24:33+01:00 New Revision: f0731d5b61ba798e6d5a63a92d9228010e5a3b50 URL: https://github.com/llvm/llvm-project/commit/f0731d5b61ba798e6d5a63a92d9228010e5a3b50 DIFF: https://github.com/llvm/llvm-project/commit/f0731d5b61ba798e6d5a63a92d9228010e5a3b50.

[Lldb-commits] [lldb] 8e0a087 - [lldb] Fix build failures introduced in f0731d5b61ba (NFCI)

2023-08-29 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-29T16:34:56+01:00 New Revision: 8e0a087571a31057bb98939e3ada73227bed83c7 URL: https://github.com/llvm/llvm-project/commit/8e0a087571a31057bb98939e3ada73227bed83c7 DIFF: https://github.com/llvm/llvm-project/commit/8e0a087571a31057bb98939e3ada73227bed83c7.

[Lldb-commits] [lldb] f2f5d6f - [lldb] Fix test failures introduced by 8e0a087571a3

2023-08-29 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-29T16:52:30+01:00 New Revision: f2f5d6fb8d53bc4bd93a3d4e110134ed017b636f URL: https://github.com/llvm/llvm-project/commit/f2f5d6fb8d53bc4bd93a3d4e110134ed017b636f DIFF: https://github.com/llvm/llvm-project/commit/f2f5d6fb8d53bc4bd93a3d4e110134ed017b636f.

[Lldb-commits] [lldb] 380c5da - Revert "Re-land "[lldb/docs] Silence warnings when generating website""

2023-08-31 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-31T16:31:10+01:00 New Revision: 380c5da98efa62920e9fbf3aa9a4fa8add236fb9 URL: https://github.com/llvm/llvm-project/commit/380c5da98efa62920e9fbf3aa9a4fa8add236fb9 DIFF: https://github.com/llvm/llvm-project/commit/380c5da98efa62920e9fbf3aa9a4fa8add236fb9.

[Lldb-commits] [lldb] 6813ef3 - Re-land "[lldb/docs] Silence warnings when generating website"

2023-08-31 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-31T20:35:10+01:00 New Revision: 6813ef37377e8d8fadf6efe01e1ed80cc53b9c86 URL: https://github.com/llvm/llvm-project/commit/6813ef37377e8d8fadf6efe01e1ed80cc53b9c86 DIFF: https://github.com/llvm/llvm-project/commit/6813ef37377e8d8fadf6efe01e1ed80cc53b9c86.

[Lldb-commits] [lldb] c9ecaf3 - [lldb] Fix test failure for breakpoint_function_callback.test

2023-08-31 Thread Med Ismail Bennani via lldb-commits
Author: Med Ismail Bennani Date: 2023-08-31T22:19:02+01:00 New Revision: c9ecaf32f6aa92f79a054478df55b4b8c3e53697 URL: https://github.com/llvm/llvm-project/commit/c9ecaf32f6aa92f79a054478df55b4b8c3e53697 DIFF: https://github.com/llvm/llvm-project/commit/c9ecaf32f6aa92f79a054478df55b4b8c3e53697.

[Lldb-commits] [lldb] [lldb][NFCI] Remove typedef for TypeCategoryMap::ValueSP (PR #65555)

2023-09-07 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. https://github.com/llvm/llvm-project/pull/6 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior Message-ID: In-Reply-To: @@ -38,7 +40,40 @

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: https://github.com/medismailben edited https://github.com/llvm/llvm-

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior Message-ID: In-Reply-To: @@ -103,6 +103,8

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior Message-ID: In-Reply-To: @@ -160,6 +166,10

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: @@ -160,6 +166,10 @@ class Language : public PluginI

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: @@ -27,6 +27,8 @@ class ObjCPlusPlusLanguage : publi

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior Message-ID: In-Reply-To: @@ -127,6 +127,8

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: @@ -38,7 +40,40 @@ Status CommandOptionsProcessLaunc

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior Message-ID: In-Reply-To: https://github.com/medismailben ap

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: medismailben wrote: @junior-jl I'm actually in favor of adding a `st

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior , =?utf-8?q?José?= L. Junior Message-ID: In-Reply-To: medismailben wrote: > Hi, @medismailben. I changed the code with you

[Lldb-commits] [lldb] [lldb] add stop-at-user-entry option to process launch (PR #67019)

2023-09-29 Thread Med Ismail Bennani via lldb-commits
=?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior , =?utf-8?q?Jos=C3=A9?= L. Junior ,Leandro Lupori ,David Spick

[Lldb-commits] [lldb] [lldb] Fix term-width setting (PR #82736)

2024-02-22 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM! https://github.com/llvm/llvm-project/pull/82736 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Start to clean up the process of defining command arguments. (PR #83097)

2024-02-26 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. This looks great! Left a comment. https://github.com/llvm/llvm-project/pull/83097 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb

[Lldb-commits] [lldb] Start to clean up the process of defining command arguments. (PR #83097)

2024-02-26 Thread Med Ismail Bennani via lldb-commits
@@ -694,27 +712,32 @@ void CommandObject::GenerateHelpText(Stream &output_strm) { } } -void CommandObject::AddIDsArgumentData(CommandArgumentEntry &arg, - CommandArgumentType ID, - CommandArgumentTy

[Lldb-commits] [lldb] Start to clean up the process of defining command arguments. (PR #83097)

2024-02-26 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben edited https://github.com/llvm/llvm-project/pull/83097 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Remove -d(ebug) mode from the lldb driver (PR #83330)

2024-02-28 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM! https://github.com/llvm/llvm-project/pull/83330 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb] Ignore swig warnings about shadowed overloads (PR #83317)

2024-02-28 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. Yeay 🥳 https://github.com/llvm/llvm-project/pull/83317 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Change `image list -r` so that it actually shows the ref count and whether the image is in the shared cache. (PR #83341)

2024-02-28 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: Does it make sense to have an image multiple times in the shared cache ? If not, instead of saying `{Y/N count}` what about printing `{location(shared cache/module collection)} and only print it ref count if it's not in the shared cache ? https://github.com/llvm/llvm-proje

[Lldb-commits] [lldb] Change `image list -r` so that it actually shows the ref count and whether the image is in the shared cache. (PR #83341)

2024-02-28 Thread Med Ismail Bennani via lldb-commits
medismailben wrote: > Does it make sense to have an image multiple times in the shared cache ? If > not, instead of saying `{Y/N count}` what about printing `{location(shared > cache/module collection)}` and only print it ref count if it's not in the > shared cache ? My bad, I thought you wer

[Lldb-commits] [lldb] Change `image list -r` so that it actually shows the ref count and whether the image is in the shared cache. (PR #83341)

2024-02-28 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. https://github.com/llvm/llvm-project/pull/83341 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] Fix interactive use of "command script add". (PR #83350)

2024-02-28 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. Thanks for fixing this think-o and adding a test https://github.com/llvm/llvm-project/pull/83350 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailm

[Lldb-commits] [lldb] [lldb] Add support for sorting by size to `target module dump symtab` (PR #83527)

2024-02-29 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben approved this pull request. LGTM! https://github.com/llvm/llvm-project/pull/83527 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb/crashlog] Fix breaking changes in textual report format (PR #83861)

2024-03-04 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben created https://github.com/llvm/llvm-project/pull/83861 This patch should address some register parsing issue in the legacy report format. rdar://107210149 >From b3ad739752a6e07eeeda47055d17a12fc960adcb Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: S

[Lldb-commits] [lldb] [lldb/Test] Fix oversight in ProcessEventDataTest::SetUp (NFC) (PR #83895)

2024-03-04 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben created https://github.com/llvm/llvm-project/pull/83895 This patch addresses an oversight in `ProcessEventDataTest::SetUp` unittest to ensure the Debugger is initialized properly. >From 1ed521f9de503fd48834a250fb2f071c2d86b1c9 Mon Sep 17 00:00:00 2001 From: Med

[Lldb-commits] [lldb] [lldb/Test] Fix oversight in ProcessEventDataTest::SetUp (NFC) (PR #83895)

2024-03-04 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben updated https://github.com/llvm/llvm-project/pull/83895 >From 0b71b6aafe6a11875ebdb77ecafd63d1ad4556f4 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Mon, 4 Mar 2024 11:25:07 -0800 Subject: [PATCH] [lldb/Test] Fix oversight in ProcessEventDataTest::SetUp

[Lldb-commits] [lldb] [lldb/Test] Fix oversight in ProcessEventDataTest::SetUp (NFC) (PR #83895)

2024-03-04 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben closed https://github.com/llvm/llvm-project/pull/83895 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] [lldb/crashlog] Fix breaking changes in textual report format (PR #83861)

2024-03-04 Thread Med Ismail Bennani via lldb-commits
https://github.com/medismailben updated https://github.com/llvm/llvm-project/pull/83861 >From 5cc9da6d222ff39f2939cdb725477e94f8fb24f8 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Mon, 4 Mar 2024 15:41:45 -0800 Subject: [PATCH] [lldb/crashlog] Fix breaking changes in textual report f

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