[Lldb-commits] [lldb] r342042 - Add a basic test for 'memory region'

2018-09-12 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Sep 12 03:04:25 2018 New Revision: 342042 URL: http://llvm.org/viewvc/llvm-project?rev=342042&view=rev Log: Add a basic test for 'memory region' Summary: The 'memory region' command is at the moment not tested at all by our test suite. This patch just adds a basic tes

[Lldb-commits] [lldb] r342044 - Remove manual byte counting from internal Stream methods.

2018-09-12 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Sep 12 03:20:41 2018 New Revision: 342044 URL: http://llvm.org/viewvc/llvm-project?rev=342044&view=rev Log: Remove manual byte counting from internal Stream methods. Summary: This patch removes the manual byte counting in all internal Stream methods. This is now done b

[Lldb-commits] [lldb] r342121 - Remove byte counting from SourceManager [NFC]

2018-09-13 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Sep 13 02:19:40 2018 New Revision: 342121 URL: http://llvm.org/viewvc/llvm-project?rev=342121&view=rev Log: Remove byte counting from SourceManager [NFC] Summary: Similar to what we did in D50681, we now stop manually byte counting here in the SourceManager. Reviewers

[Lldb-commits] [lldb] r342181 - Add support for descriptions with command completions.

2018-09-13 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Sep 13 14:26:00 2018 New Revision: 342181 URL: http://llvm.org/viewvc/llvm-project?rev=342181&view=rev Log: Add support for descriptions with command completions. Summary: This patch adds a framework for adding descriptions to the command completions we provide. It al

[Lldb-commits] [lldb] r342385 - Add descriptions to completed expressions

2018-09-17 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Sep 17 05:06:07 2018 New Revision: 342385 URL: http://llvm.org/viewvc/llvm-project?rev=342385&view=rev Log: Add descriptions to completed expressions Summary: Completing inside the expression command now uses the new description API to also provide additional informati

[Lldb-commits] [lldb] r323075 - Make loop counter unsigned in SymbolFilePDB::GetCompileUnitIndex

2018-01-21 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Jan 21 22:56:09 2018 New Revision: 323075 URL: http://llvm.org/viewvc/llvm-project?rev=323075&view=rev Log: Make loop counter unsigned in SymbolFilePDB::GetCompileUnitIndex Summary: This fixes a clang warning. Reviewers: zturner Reviewed By: zturner Subscribers: ztu

[Lldb-commits] [lldb] r323076 - Fix memory leaks in TestArm64InstEmulation

2018-01-21 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Jan 21 23:22:13 2018 New Revision: 323076 URL: http://llvm.org/viewvc/llvm-project?rev=323076&view=rev Log: Fix memory leaks in TestArm64InstEmulation Summary: We never delete the created instances, so those test fail with the memory sanitizer. Reviewers: jasonmolend

[Lldb-commits] [lldb] r323081 - Fix unrepresentable float value in ScalarTest

2018-01-22 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Jan 22 00:11:29 2018 New Revision: 323081 URL: http://llvm.org/viewvc/llvm-project?rev=323081&view=rev Log: Fix unrepresentable float value in ScalarTest Summary: float can't represent the given value in the literal, so we get this UB error: `runtime error: 1.23457e+4

[Lldb-commits] [lldb] r323082 - Fix use after free in DiskFilesOrDirectories

2018-01-22 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Jan 22 01:17:16 2018 New Revision: 323082 URL: http://llvm.org/viewvc/llvm-project?rev=323082&view=rev Log: Fix use after free in DiskFilesOrDirectories Summary: We copy the local variable `Resolved` into `Storage` to keep it around. However, we then still let the `Se

[Lldb-commits] [lldb] r323085 - Fix memory leaks in MinidumpParserTest

2018-01-22 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Jan 22 01:48:40 2018 New Revision: 323085 URL: http://llvm.org/viewvc/llvm-project?rev=323085&view=rev Log: Fix memory leaks in MinidumpParserTest Summary: We never delete the allocated RegisterContext objects, causing those tests to fail with enabled memory sanitizer

[Lldb-commits] [lldb] r323119 - Fix uninitialized variable in GoParser

2018-01-22 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Jan 22 06:32:43 2018 New Revision: 323119 URL: http://llvm.org/viewvc/llvm-project?rev=323119&view=rev Log: Fix uninitialized variable in GoParser Summary: `m_last_tok` isn't initialized anywhere before it's used the first time (most likely in the `GoParser::Rule::err

[Lldb-commits] [lldb] r323138 - Fix memory leak in TestClangASTContext.TestRecordHasFields

2018-01-22 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Jan 22 10:56:33 2018 New Revision: 323138 URL: http://llvm.org/viewvc/llvm-project?rev=323138&view=rev Log: Fix memory leak in TestClangASTContext.TestRecordHasFields Summary: We can't use unique_ptr's here because we use those variables as `out` parameters to some fu

[Lldb-commits] [lldb] r323181 - Prevent unaligned memory read in parseMinidumpString

2018-01-23 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Jan 23 00:04:27 2018 New Revision: 323181 URL: http://llvm.org/viewvc/llvm-project?rev=323181&view=rev Log: Prevent unaligned memory read in parseMinidumpString Summary: It's possible to hit an unaligned memory read when reading `source_length` as the `data` array is

[Lldb-commits] [lldb] r323197 - Fix memory leaks in GoParser

2018-01-23 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Jan 23 05:50:46 2018 New Revision: 323197 URL: http://llvm.org/viewvc/llvm-project?rev=323197&view=rev Log: Fix memory leaks in GoParser Summary: The GoParser is leaking memory in the tests due to not freeing allocated nodes when encountering some parsing errors. With

[Lldb-commits] [lldb] r326727 - Including for std::bind

2018-03-05 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Mar 5 09:54:23 2018 New Revision: 326727 URL: http://llvm.org/viewvc/llvm-project?rev=326727&view=rev Log: Including for std::bind Differential Revision: https://reviews.llvm.org/D44099 Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/

[Lldb-commits] [lldb] r352175 - Refactor HAVE_LIBCOMPRESSION and related code in GDBRemoteCommunication

2019-01-25 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Jan 25 00:21:47 2019 New Revision: 352175 URL: http://llvm.org/viewvc/llvm-project?rev=352175&view=rev Log: Refactor HAVE_LIBCOMPRESSION and related code in GDBRemoteCommunication Summary: The field `m_decompression_scratch_type` is only used when `HAVE_LIBCOMPRESSION

[Lldb-commits] [lldb] r352180 - Fix typo in ClangModulesDeclVendor [NFC]

2019-01-25 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Jan 25 01:28:48 2019 New Revision: 352180 URL: http://llvm.org/viewvc/llvm-project?rev=352180&view=rev Log: Fix typo in ClangModulesDeclVendor [NFC] Modified: lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h Modified: lldb/trunk/source/Pl

[Lldb-commits] [lldb] r352249 - Simplify LangOpts initalization in ClangExpressionParser [NFC]

2019-01-25 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Jan 25 14:41:31 2019 New Revision: 352249 URL: http://llvm.org/viewvc/llvm-project?rev=352249&view=rev Log: Simplify LangOpts initalization in ClangExpressionParser [NFC] Reviewers: davide Reviewed By: davide Subscribers: shafik, davide, lldb-commits Differential Re

[Lldb-commits] [lldb] r353381 - Fix documentation formatting for ShellExpandArguments

2019-02-07 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Feb 7 01:47:57 2019 New Revision: 353381 URL: http://llvm.org/viewvc/llvm-project?rev=353381&view=rev Log: Fix documentation formatting for ShellExpandArguments Modified: lldb/trunk/include/lldb/Host/Host.h lldb/trunk/include/lldb/Target/Platform.h Modified:

[Lldb-commits] [lldb] r353642 - lldb: Fix compilation on OpenBSD

2019-02-10 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Feb 10 07:23:58 2019 New Revision: 353642 URL: http://llvm.org/viewvc/llvm-project?rev=353642&view=rev Log: lldb: Fix compilation on OpenBSD Summary: Update the OpenBSD Host.cpp for the new SetFile() function signature. Fixes compiling lldb on OpenBSD. Reviewers: kry

[Lldb-commits] [lldb] r353643 - Fix x86 return pattern detection

2019-02-10 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Feb 10 07:41:53 2019 New Revision: 353643 URL: http://llvm.org/viewvc/llvm-project?rev=353643&view=rev Log: Fix x86 return pattern detection Summary: Replace 0xc9 (LEAVE) with 0xcb (RETF) in ret_pattern_p(). Also put 0xc3 first, since it is the most common form and wi

[Lldb-commits] [lldb] r353753 - Fixed function name in log statement

2019-02-11 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Feb 11 13:45:33 2019 New Revision: 353753 URL: http://llvm.org/viewvc/llvm-project?rev=353753&view=rev Log: Fixed function name in log statement Modified: lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp Modified: lldb/trunk/source/Plugi

[Lldb-commits] [lldb] r354038 - Don't source local .lldbinit in the test suite

2019-02-14 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Feb 14 09:39:19 2019 New Revision: 354038 URL: http://llvm.org/viewvc/llvm-project?rev=354038&view=rev Log: Don't source local .lldbinit in the test suite Summary: As suggested by Pavel, we shouldn't let our tests parse the local .lldbinit to prevent random test failu

[Lldb-commits] [lldb] r354202 - Fix TestDataFormatterLibcxxListLoop.py test

2019-02-16 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sat Feb 16 04:13:30 2019 New Revision: 354202 URL: http://llvm.org/viewvc/llvm-project?rev=354202&view=rev Log: Fix TestDataFormatterLibcxxListLoop.py test Summary: The compilation of the TestDataFormatterLibcxxListLoop.py currently fails with this error: ``` functionali

Re: [Lldb-commits] [PATCH] D47625: [cmake] Detect presence of wide-char libedit at build time

2019-02-28 Thread Raphael Isemann via lldb-commits
Am Do., 28. Feb. 2019 um 17:11 Uhr schrieb Pavel Labath via lldb-commits : > > On 28/02/2019 16:18, Pavel Labath via lldb-commits wrote: > > On 28/02/2019 02:37, Davide Italiano via Phabricator wrote: > >> davide added a comment. > >> Herald added a subscriber: jdoerfert. > >> Herald added a projec

[Lldb-commits] [lldb] r355548 - Remove redundant second os.path.join call [NFC]

2019-03-06 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Mar 6 12:51:28 2019 New Revision: 355548 URL: http://llvm.org/viewvc/llvm-project?rev=355548&view=rev Log: Remove redundant second os.path.join call [NFC] Modified: lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py Modified: lldb/trunk/packages/Python/lldbsui

[Lldb-commits] [lldb] r355897 - Correctly look up declarations in inline namespaces

2019-03-12 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Mar 12 00:45:04 2019 New Revision: 355897 URL: http://llvm.org/viewvc/llvm-project?rev=355897&view=rev Log: Correctly look up declarations in inline namespaces Summary: This patch marks the inline namespaces from DWARF as inline and also ensures that looking up declar

[Lldb-commits] [lldb] r355939 - Add ability to import std module into expression parser to improve C++ debugging

2019-03-12 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Mar 12 10:09:33 2019 New Revision: 355939 URL: http://llvm.org/viewvc/llvm-project?rev=355939&view=rev Log: Add ability to import std module into expression parser to improve C++ debugging Summary: This patch is the MVP version of importing the std module into the expr

[Lldb-commits] [lldb] r356174 - Safer casting in ClangExpressionParser code completion

2019-03-14 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Mar 14 10:39:39 2019 New Revision: 356174 URL: http://llvm.org/viewvc/llvm-project?rev=356174&view=rev Log: Safer casting in ClangExpressionParser code completion Summary: Makes the code a bit safer in the unlikely situation that we don't get a ClangUserExpression whe

[Lldb-commits] [lldb] r356592 - Remove the unused return value in ASTImporter::Imported [NFC]

2019-03-20 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Mar 20 12:00:25 2019 New Revision: 356592 URL: http://llvm.org/viewvc/llvm-project?rev=356592&view=rev Log: Remove the unused return value in ASTImporter::Imported [NFC] Summary: `ASTImporter::Imported` currently returns a Decl, but that return value is not used by th

Re: [Lldb-commits] [PATCH] D59537: Instantiate 'std' templates explicitly in the expression evaluator

2019-04-09 Thread Raphael Isemann via lldb-commits
The Darwin failure reproduces for me when I just add Darwin to the supported list of platforms in the import-std-module tests and run them on macOS. The dwo failure can also be reproduced by just whitelisting it in the tests. This will cause the tests to fail for me on Arch Linux. I didn’t test if

[Lldb-commits] [lldb] r358357 - Prevent unnecessary conversion from StringRef to C-string [NFC]

2019-04-14 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Apr 14 07:01:49 2019 New Revision: 358357 URL: http://llvm.org/viewvc/llvm-project?rev=358357&view=rev Log: Prevent unnecessary conversion from StringRef to C-string [NFC] There is an alternative method to GetConstCStringWithLength that takes a StringRef. GetConstCStri

[Lldb-commits] [lldb] r358477 - Correctly check if a warning message lacks a trailing new line

2019-04-16 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Apr 16 00:48:11 2019 New Revision: 358477 URL: http://llvm.org/viewvc/llvm-project?rev=358477&view=rev Log: Correctly check if a warning message lacks a trailing new line Summary: Fixes LLVM bug 41489. Reviewers: clayborg Reviewed By: clayborg Subscribers: lldb-comm

[Lldb-commits] [lldb] r358479 - Fix typo in ArmUnwindInfo::GetUnwindPlan

2019-04-16 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Apr 16 01:06:56 2019 New Revision: 358479 URL: http://llvm.org/viewvc/llvm-project?rev=358479&view=rev Log: Fix typo in ArmUnwindInfo::GetUnwindPlan Summary: As reported in LLVM bug 41486, the check `(byte1 & 0xf8) == 0xc0` is wrong. We want to check for `11010nnn`, s

[Lldb-commits] [lldb] [lldb] Use correct path separator for C++ library files lookup (PR #98144)

2024-07-09 Thread Raphael Isemann via lldb-commits
Teemperor wrote: This LGTM https://github.com/llvm/llvm-project/pull/98144 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] 9f3a3e1 - [lldb] Disable macro redefinition warnings in expression wrapper

2023-02-14 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2023-02-14T23:20:56+01:00 New Revision: 9f3a3e1f3f9767ae52c492d20d63f65e82319ed2 URL: https://github.com/llvm/llvm-project/commit/9f3a3e1f3f9767ae52c492d20d63f65e82319ed2 DIFF: https://github.com/llvm/llvm-project/commit/9f3a3e1f3f9767ae52c492d20d63f65e82319ed2.dif

[Lldb-commits] [lldb] cda1450 - [lldb][NFC] Add some tests for function-local classes and document some bugs

2021-09-09 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-09-09T14:12:02+02:00 New Revision: cda1450f1c771712718ef3585315f0ecbb708d8d URL: https://github.com/llvm/llvm-project/commit/cda1450f1c771712718ef3585315f0ecbb708d8d DIFF: https://github.com/llvm/llvm-project/commit/cda1450f1c771712718ef3585315f0ecbb708d8d.dif

[Lldb-commits] [lldb] 4f1c90a - [lldb] Fix format string in Communication::Write

2021-09-09 Thread Raphael Isemann via lldb-commits
Author: Ryan Mansfield Date: 2021-09-09T17:55:38+02:00 New Revision: 4f1c90a6d4dde9e3c6d3c7d76bb187c1c19960d5 URL: https://github.com/llvm/llvm-project/commit/4f1c90a6d4dde9e3c6d3c7d76bb187c1c19960d5 DIFF: https://github.com/llvm/llvm-project/commit/4f1c90a6d4dde9e3c6d3c7d76bb187c1c19960d5.diff

[Lldb-commits] [lldb] 0c8444b - [lldb] Fix Clang modules build after D101329

2021-09-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-09-10T13:10:19+02:00 New Revision: 0c8444bd3462a3d05c8ac637a554e1a368dee0ac URL: https://github.com/llvm/llvm-project/commit/0c8444bd3462a3d05c8ac637a554e1a368dee0ac DIFF: https://github.com/llvm/llvm-project/commit/0c8444bd3462a3d05c8ac637a554e1a368dee0ac.dif

[Lldb-commits] [lldb] 4b2e38d - [lldb][NFC] Cleanup EditlineHistory

2021-09-13 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-09-13T09:30:31+02:00 New Revision: 4b2e38d940673e6ec01c4653eacf620e7e53ae6d URL: https://github.com/llvm/llvm-project/commit/4b2e38d940673e6ec01c4653eacf620e7e53ae6d DIFF: https://github.com/llvm/llvm-project/commit/4b2e38d940673e6ec01c4653eacf620e7e53ae6d.dif

Re: [Lldb-commits] [lldb] f22c63b - [lldb/test] Start pexpect tests with a custom HOME

2021-09-14 Thread Raphael Isemann via lldb-commits
Thanks! Just FYI, I was actually about to open a review for allowing configuring the history directory which should also address this. Am Di., 14. Sept. 2021 um 15:18 Uhr schrieb Pavel Labath via lldb-commits : > > > Author: Pavel Labath > Date: 2021-09-14T15:17:10+02:00 > New Revision: f22c63b41b

[Lldb-commits] [lldb] c223299 - [lldb] Add a C language REPL to test LLDB's REPL infrastructure

2021-09-23 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-09-23T19:31:02+02:00 New Revision: c22329972f02f9d51e2f9ea54d9075a4a808ffde URL: https://github.com/llvm/llvm-project/commit/c22329972f02f9d51e2f9ea54d9075a4a808ffde DIFF: https://github.com/llvm/llvm-project/commit/c22329972f02f9d51e2f9ea54d9075a4a808ffde.dif

Re: [Lldb-commits] [lldb] eee687a - [lldb] Add minidump save-core functionality to ELF object files

2021-09-25 Thread Raphael Isemann via lldb-commits
I guess you might have already figured that out in a Google-internal chat, but msan actually requires that the used libc++ is also compiled with msan enabled. Totally forgot that this is a requirement for msan (sorry). I don't think there is a public LLDB msan bot (?), but you can probably try the

[Lldb-commits] [lldb] be2a421 - [lldb] Fix SocketTest.DomainGetConnectURI on macOS by stripping more zeroes from getpeername result

2021-09-27 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-09-27T17:34:45+02:00 New Revision: be2a4216fc5664ae465ec3dcc32fc3d40cecfdcd URL: https://github.com/llvm/llvm-project/commit/be2a4216fc5664ae465ec3dcc32fc3d40cecfdcd DIFF: https://github.com/llvm/llvm-project/commit/be2a4216fc5664ae465ec3dcc32fc3d40cecfdcd.dif

[Lldb-commits] [lldb] f939a32 - [lldb] Fix TestImportStdModule on some setups by testing minmax instead of abs

2021-09-29 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-09-29T17:03:37+02:00 New Revision: f939a32e5c483686af16561211d77c06a5579011 URL: https://github.com/llvm/llvm-project/commit/f939a32e5c483686af16561211d77c06a5579011 DIFF: https://github.com/llvm/llvm-project/commit/f939a32e5c483686af16561211d77c06a5579011.dif

Re: [Lldb-commits] [lldb] f939a32 - [lldb] Fix TestImportStdModule on some setups by testing minmax instead of abs

2021-09-30 Thread Raphael Isemann via lldb-commits
g.cgi?id=51446 by any chance? > Should I give it a spin on the release branch? > > On Wed, 29 Sept 2021 at 17:04, Raphael Isemann via lldb-commits > wrote: >> >> >> Author: Raphael Isemann >> Date: 2021-09-29T17:03:37+02:00 >> New Revision: f939a32e5c483686

[Lldb-commits] [lldb] 6fcb857 - [lldb][import-std-module] Prefer the non-module diagnostics when in fallback mode

2021-10-04 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-04T19:16:03+02:00 New Revision: 6fcb857746c19b5ed46afdf732b839082326f9d4 URL: https://github.com/llvm/llvm-project/commit/6fcb857746c19b5ed46afdf732b839082326f9d4 DIFF: https://github.com/llvm/llvm-project/commit/6fcb857746c19b5ed46afdf732b839082326f9d4.dif

[Lldb-commits] [lldb] cf818b5 - [lldb][NFC] Remove unnecessary include in cpp/const_this test

2021-10-05 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-05T14:39:10+02:00 New Revision: cf818b55e79ee637c72f1f94a183eec26b4fa3b9 URL: https://github.com/llvm/llvm-project/commit/cf818b55e79ee637c72f1f94a183eec26b4fa3b9 DIFF: https://github.com/llvm/llvm-project/commit/cf818b55e79ee637c72f1f94a183eec26b4fa3b9.dif

[Lldb-commits] [lldb] 7862728 - [lldb] Rewrite and extend TestConstThis

2021-10-06 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-06T14:51:00+02:00 New Revision: 7862728cab1b7724d2adf0f0075a3289d87ec20c URL: https://github.com/llvm/llvm-project/commit/7862728cab1b7724d2adf0f0075a3289d87ec20c DIFF: https://github.com/llvm/llvm-project/commit/7862728cab1b7724d2adf0f0075a3289d87ec20c.dif

[Lldb-commits] [lldb] f98df8a - [lldb] Make 'this' substituton error more verbose.

2021-10-06 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-06T15:07:19+02:00 New Revision: f98df8a38b00b207b5f5deda607fd6862ad550f0 URL: https://github.com/llvm/llvm-project/commit/f98df8a38b00b207b5f5deda607fd6862ad550f0 DIFF: https://github.com/llvm/llvm-project/commit/f98df8a38b00b207b5f5deda607fd6862ad550f0.dif

[Lldb-commits] [lldb] 322e13b - [lldb] Rewrite/expand TestCppTypedef and document a lookup bug.

2021-10-07 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-07T13:30:03+02:00 New Revision: 322e13b91aac23ab324c3dcbbcfe8e73894f4c28 URL: https://github.com/llvm/llvm-project/commit/322e13b91aac23ab324c3dcbbcfe8e73894f4c28 DIFF: https://github.com/llvm/llvm-project/commit/322e13b91aac23ab324c3dcbbcfe8e73894f4c28.dif

[Lldb-commits] [lldb] b5ff511 - [lldb][NFC] Early-exit in DWARFASTParserClang::ParseSingleMember

2021-10-09 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-09T14:40:39+02:00 New Revision: b5ff51104810d09071a5e6ac4c33a0c070f996ca URL: https://github.com/llvm/llvm-project/commit/b5ff51104810d09071a5e6ac4c33a0c070f996ca DIFF: https://github.com/llvm/llvm-project/commit/b5ff51104810d09071a5e6ac4c33a0c070f996ca.dif

[Lldb-commits] [lldb] 592e89c - [lldb] Don't print to stderr in TypeSystemClang::GetBuiltinTypeForDWARFEncodingAndBitSize

2021-10-11 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-11T13:33:47+02:00 New Revision: 592e89cc4e9a7d184e16d4c61abcbcb62cf7e6ed URL: https://github.com/llvm/llvm-project/commit/592e89cc4e9a7d184e16d4c61abcbcb62cf7e6ed DIFF: https://github.com/llvm/llvm-project/commit/592e89cc4e9a7d184e16d4c61abcbcb62cf7e6ed.dif

[Lldb-commits] [lldb] 3256aa8 - [lldb] Add support for DW_AT_calling_convention to the DWARF parser

2021-10-11 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-11T13:44:10+02:00 New Revision: 3256aa8fe6fd785df12cc39f95e55bef0bc371c2 URL: https://github.com/llvm/llvm-project/commit/3256aa8fe6fd785df12cc39f95e55bef0bc371c2 DIFF: https://github.com/llvm/llvm-project/commit/3256aa8fe6fd785df12cc39f95e55bef0bc371c2.dif

[Lldb-commits] [lldb] f110999 - [lldb][NFCI] Refactor out attribute parsing from DWARFASTParserClang::ParseSingleMember

2021-10-11 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-11T14:41:20+02:00 New Revision: f110999bf6b5fe1b5e2b945ea462003655f034d0 URL: https://github.com/llvm/llvm-project/commit/f110999bf6b5fe1b5e2b945ea462003655f034d0 DIFF: https://github.com/llvm/llvm-project/commit/f110999bf6b5fe1b5e2b945ea462003655f034d0.dif

[Lldb-commits] [lldb] 8249e50 - [lldb][NFC] Remove unnecessary reference from ParseChildMembers's default_accessibility parameter

2021-10-11 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-11T15:43:49+02:00 New Revision: 8249e50bf4286deee314e36ce7e67f38bcd79db2 URL: https://github.com/llvm/llvm-project/commit/8249e50bf4286deee314e36ce7e67f38bcd79db2 DIFF: https://github.com/llvm/llvm-project/commit/8249e50bf4286deee314e36ce7e67f38bcd79db2.dif

[Lldb-commits] [lldb] 7103753 - [lldb][NFC] Split out DW_TAG_inheritance parsing into own function

2021-10-13 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-13T13:14:57+02:00 New Revision: 7103753733a83602199958fb189d24f62c7400e8 URL: https://github.com/llvm/llvm-project/commit/7103753733a83602199958fb189d24f62c7400e8 DIFF: https://github.com/llvm/llvm-project/commit/7103753733a83602199958fb189d24f62c7400e8.dif

[Lldb-commits] [lldb] 0648b3c - [lldb][NFC] for-range loop when iterating over delayed_properties

2021-10-13 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-13T15:27:23+02:00 New Revision: 0648b3c0265e74a6920ae356885d0c29a1f6a44e URL: https://github.com/llvm/llvm-project/commit/0648b3c0265e74a6920ae356885d0c29a1f6a44e DIFF: https://github.com/llvm/llvm-project/commit/0648b3c0265e74a6920ae356885d0c29a1f6a44e.dif

[Lldb-commits] [lldb] 4019699 - [lldb] Add a test for CRTP

2021-10-13 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-13T17:15:02+02:00 New Revision: 4019699fa5fd153586f02fd7f6b7cfc51a688bf2 URL: https://github.com/llvm/llvm-project/commit/4019699fa5fd153586f02fd7f6b7cfc51a688bf2 DIFF: https://github.com/llvm/llvm-project/commit/4019699fa5fd153586f02fd7f6b7cfc51a688bf2.dif

[Lldb-commits] [lldb] 78e17e2 - [lldb] Rewrite TestDiamond and document some bugs.

2021-10-14 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-14T20:32:07+02:00 New Revision: 78e17e23aa0fe525d00a2e8f0c7469f9a6b94f40 URL: https://github.com/llvm/llvm-project/commit/78e17e23aa0fe525d00a2e8f0c7469f9a6b94f40 DIFF: https://github.com/llvm/llvm-project/commit/78e17e23aa0fe525d00a2e8f0c7469f9a6b94f40.dif

[Lldb-commits] [lldb] e632e90 - [lldb] Remove logging from Platform::~Platform

2021-10-14 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-14T20:42:45+02:00 New Revision: e632e900ac1092f581b42fb93662613db9977b5a URL: https://github.com/llvm/llvm-project/commit/e632e900ac1092f581b42fb93662613db9977b5a DIFF: https://github.com/llvm/llvm-project/commit/e632e900ac1092f581b42fb93662613db9977b5a.dif

[Lldb-commits] [lldb] 482c53f - [lldb] Move ~Platform to source file

2021-10-14 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-14T21:36:46+02:00 New Revision: 482c53fa0dce16c0edebb494117dcc8dd383427e URL: https://github.com/llvm/llvm-project/commit/482c53fa0dce16c0edebb494117dcc8dd383427e DIFF: https://github.com/llvm/llvm-project/commit/482c53fa0dce16c0edebb494117dcc8dd383427e.dif

[Lldb-commits] [lldb] 03a8e70 - [lldb] Add test for struct merging in scratch ASTContext

2021-10-15 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-15T17:20:03+02:00 New Revision: 03a8e70a192f382ae700d761e46e2299a38f58db URL: https://github.com/llvm/llvm-project/commit/03a8e70a192f382ae700d761e46e2299a38f58db DIFF: https://github.com/llvm/llvm-project/commit/03a8e70a192f382ae700d761e46e2299a38f58db.dif

[Lldb-commits] [lldb] ff4c98c - [lldb] Harden TestCompletion against new settings in 'target.process'

2021-10-15 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-15T18:50:21+02:00 New Revision: ff4c98c05559e498300bd3ad55272ac2a8d10dbc URL: https://github.com/llvm/llvm-project/commit/ff4c98c05559e498300bd3ad55272ac2a8d10dbc DIFF: https://github.com/llvm/llvm-project/commit/ff4c98c05559e498300bd3ad55272ac2a8d10dbc.dif

[Lldb-commits] [lldb] 60b96aa - [lldb] Split ParseSingleMember into Obj-C property and normal member/ivar parsing code.

2021-10-16 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-16T14:20:04+02:00 New Revision: 60b96aa65e5959361e9edea15b3591f90988ccad URL: https://github.com/llvm/llvm-project/commit/60b96aa65e5959361e9edea15b3591f90988ccad DIFF: https://github.com/llvm/llvm-project/commit/60b96aa65e5959361e9edea15b3591f90988ccad.dif

[Lldb-commits] [lldb] 366fb53 - [lldb] Fix missing dependency on libc++ from LLDB test suite on non-Darwin platforms

2021-10-18 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-18T15:59:34+02:00 New Revision: 366fb539485a9753e4a8167fe5140bf4fb00a098 URL: https://github.com/llvm/llvm-project/commit/366fb539485a9753e4a8167fe5140bf4fb00a098 DIFF: https://github.com/llvm/llvm-project/commit/366fb539485a9753e4a8167fe5140bf4fb00a098.dif

[Lldb-commits] [lldb] cfaa5c3 - [lldb] Filter duplicates in Target::GetScratchTypeSystems

2021-10-19 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-19T11:49:47+02:00 New Revision: cfaa5c344d5bc73aae0ec39d57d98acf7463fccf URL: https://github.com/llvm/llvm-project/commit/cfaa5c344d5bc73aae0ec39d57d98acf7463fccf DIFF: https://github.com/llvm/llvm-project/commit/cfaa5c344d5bc73aae0ec39d57d98acf7463fccf.dif

[Lldb-commits] [lldb] 9a57d1e - [lldb] Allow dumping the state of all scratch TypeSystems

2021-10-19 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-19T12:05:14+02:00 New Revision: 9a57d1e52680ac05c29d6d0d2cfbaf3b05a5cbce URL: https://github.com/llvm/llvm-project/commit/9a57d1e52680ac05c29d6d0d2cfbaf3b05a5cbce DIFF: https://github.com/llvm/llvm-project/commit/9a57d1e52680ac05c29d6d0d2cfbaf3b05a5cbce.dif

[Lldb-commits] [lldb] 7dfb139 - [lldb] Adjust udt-layout.test after MS mangling change

2021-10-19 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-19T12:43:24+02:00 New Revision: 7dfb1395549c34f4b607055c01f8c510ead6b0db URL: https://github.com/llvm/llvm-project/commit/7dfb1395549c34f4b607055c01f8c510ead6b0db DIFF: https://github.com/llvm/llvm-project/commit/7dfb1395549c34f4b607055c01f8c510ead6b0db.dif

[Lldb-commits] [lldb] 956df6f - [lldb] Improve assert message in TestCPPAccelerator

2021-10-20 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-20T12:04:28+02:00 New Revision: 956df6fa620a0ca75fd6e62b5318fb4d14304a4f URL: https://github.com/llvm/llvm-project/commit/956df6fa620a0ca75fd6e62b5318fb4d14304a4f DIFF: https://github.com/llvm/llvm-project/commit/956df6fa620a0ca75fd6e62b5318fb4d14304a4f.dif

[Lldb-commits] [lldb] 46fb5d5 - [lldb][NFC] clang-format CPlusPlusLanguage.cpp

2021-10-21 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-21T10:01:18+02:00 New Revision: 46fb5d5ddffdccbd14a09c7dcff63de6fef63c07 URL: https://github.com/llvm/llvm-project/commit/46fb5d5ddffdccbd14a09c7dcff63de6fef63c07 DIFF: https://github.com/llvm/llvm-project/commit/46fb5d5ddffdccbd14a09c7dcff63de6fef63c07.dif

[Lldb-commits] [lldb] 71cfce8 - [lldb] Fix TestCompressedVectors after array type name change

2021-10-22 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-22T10:15:53+02:00 New Revision: 71cfce832054dfea8e79769f15a3fdc05d23b733 URL: https://github.com/llvm/llvm-project/commit/71cfce832054dfea8e79769f15a3fdc05d23b733 DIFF: https://github.com/llvm/llvm-project/commit/71cfce832054dfea8e79769f15a3fdc05d23b733.dif

[Lldb-commits] [lldb] 309fccd - [lldb][NFC] Use llvm::Optional to refer to Optional

2021-10-25 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-25T11:37:15+02:00 New Revision: 309fccdac936c49d0771878b3f4dd345a5e1c5d8 URL: https://github.com/llvm/llvm-project/commit/309fccdac936c49d0771878b3f4dd345a5e1c5d8 DIFF: https://github.com/llvm/llvm-project/commit/309fccdac936c49d0771878b3f4dd345a5e1c5d8.dif

[Lldb-commits] [lldb] a24b2b6 - [lldb] Also print index of child when ValueCheck fails

2021-10-25 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-25T13:03:56+02:00 New Revision: a24b2b6aa06a001a98328acf624a5a8b1ab4139a URL: https://github.com/llvm/llvm-project/commit/a24b2b6aa06a001a98328acf624a5a8b1ab4139a DIFF: https://github.com/llvm/llvm-project/commit/a24b2b6aa06a001a98328acf624a5a8b1ab4139a.dif

[Lldb-commits] [lldb] 025f6ca - [lldb] Modernize TestBitfields

2021-10-25 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-25T13:11:39+02:00 New Revision: 025f6ca7c469b6412b58b69fab17092548d5f6c1 URL: https://github.com/llvm/llvm-project/commit/025f6ca7c469b6412b58b69fab17092548d5f6c1 DIFF: https://github.com/llvm/llvm-project/commit/025f6ca7c469b6412b58b69fab17092548d5f6c1.dif

[Lldb-commits] [lldb] 974c2f5 - [lldb] Modernize and expand TestCppBitfields

2021-10-25 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-25T18:19:26+02:00 New Revision: 974c2f5e22112659549a54ff95ee310a1aac469d URL: https://github.com/llvm/llvm-project/commit/974c2f5e22112659549a54ff95ee310a1aac469d DIFF: https://github.com/llvm/llvm-project/commit/974c2f5e22112659549a54ff95ee310a1aac469d.dif

Re: [Lldb-commits] [PATCH] D112340: [lldb/Formatters] Remove space from vector type string summaries (NFCI)

2021-10-25 Thread Raphael Isemann via lldb-commits
Not actually sure when/how Green Dragon is mailing external people, but usually someone just watches the build bot and emails/comments on commits that are breaking the buildbot. Green Dragon is more of a monte carlo simulation than a real build bot so I wouldn't be surprised if it doesn't send auto

[Lldb-commits] [lldb] 9d7006c - [lldb][NFC] Move a declaration in DWARFASTParserClang to its first use.

2021-10-27 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-27T17:46:50+02:00 New Revision: 9d7006c4aee693a4c09f18cecd244da919ebe13b URL: https://github.com/llvm/llvm-project/commit/9d7006c4aee693a4c09f18cecd244da919ebe13b DIFF: https://github.com/llvm/llvm-project/commit/9d7006c4aee693a4c09f18cecd244da919ebe13b.dif

[Lldb-commits] [lldb] f5c65be - [lldb][NFC] Improve CppModuleConfiguration documentation a bit

2021-10-28 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-28T16:39:06+02:00 New Revision: f5c65be510430605829f8ccf46b855e39b424d1e URL: https://github.com/llvm/llvm-project/commit/f5c65be510430605829f8ccf46b855e39b424d1e DIFF: https://github.com/llvm/llvm-project/commit/f5c65be510430605829f8ccf46b855e39b424d1e.dif

[Lldb-commits] [lldb] ac73f56 - [lldb] Remove forgotten FIXME on CPlusPlus formatters

2021-10-29 Thread Raphael Isemann via lldb-commits
Author: Luís Ferreira Date: 2021-10-29T11:32:40+02:00 New Revision: ac73f567cffb663712e937051b0e81a82488698b URL: https://github.com/llvm/llvm-project/commit/ac73f567cffb663712e937051b0e81a82488698b DIFF: https://github.com/llvm/llvm-project/commit/ac73f567cffb663712e937051b0e81a82488698b.diff

[Lldb-commits] [lldb] e2ede17 - [lldb] Update field offset/sizes when encountering artificial members such as vtable pointers

2021-10-30 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-30T13:22:21+02:00 New Revision: e2ede1715d4141279bb76d8850e0494b85d1eee8 URL: https://github.com/llvm/llvm-project/commit/e2ede1715d4141279bb76d8850e0494b85d1eee8 DIFF: https://github.com/llvm/llvm-project/commit/e2ede1715d4141279bb76d8850e0494b85d1eee8.dif

[Lldb-commits] [lldb] 85bcc1e - [lldb] Make SBType::IsTypeComplete more consistent by forcing the loading of definitions

2021-10-30 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-30T13:28:27+02:00 New Revision: 85bcc1eb2f56af00123a8d6b99e9ad677613767c URL: https://github.com/llvm/llvm-project/commit/85bcc1eb2f56af00123a8d6b99e9ad677613767c DIFF: https://github.com/llvm/llvm-project/commit/85bcc1eb2f56af00123a8d6b99e9ad677613767c.dif

[Lldb-commits] [lldb] 4cf9d1e - [lldb][NFC] Modernize for-loops in ModuleList

2021-10-30 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-10-30T13:40:58+02:00 New Revision: 4cf9d1e4492fe70768d13fba5fbb61d9d93adf5c URL: https://github.com/llvm/llvm-project/commit/4cf9d1e4492fe70768d13fba5fbb61d9d93adf5c DIFF: https://github.com/llvm/llvm-project/commit/4cf9d1e4492fe70768d13fba5fbb61d9d93adf5c.dif

[Lldb-commits] [lldb] 9e0a39f - [lldb] Add a test for class loading via member typedefs

2021-11-01 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-01T15:58:45+01:00 New Revision: 9e0a39f3787ac055631891be9062dcd561cf4501 URL: https://github.com/llvm/llvm-project/commit/9e0a39f3787ac055631891be9062dcd561cf4501 DIFF: https://github.com/llvm/llvm-project/commit/9e0a39f3787ac055631891be9062dcd561cf4501.dif

[Lldb-commits] [lldb] ac7c880 - [lldb][gmodules] Fix TestDataFormatterCpp with gmodules on macOS

2021-11-01 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-01T18:44:32+01:00 New Revision: ac7c8808ba89fb6188d5b1bb83bdd08e5c39d71e URL: https://github.com/llvm/llvm-project/commit/ac7c8808ba89fb6188d5b1bb83bdd08e5c39d71e DIFF: https://github.com/llvm/llvm-project/commit/ac7c8808ba89fb6188d5b1bb83bdd08e5c39d71e.dif

Re: [Lldb-commits] [lldb] 48677f5 - [lldb] Unbreak the macOS build after dfd499a61c45778b7f01458d50ccc384343f53d5

2021-11-02 Thread Raphael Isemann via lldb-commits
Thanks! Am Di., 2. Nov. 2021 um 09:48 Uhr schrieb Benjamin Kramer via lldb-commits : > > > Author: Benjamin Kramer > Date: 2021-11-02T09:47:44+01:00 > New Revision: 48677f58b06cfb8715902173c5bc3d1764d7c8c6 > > URL: > https://github.com/llvm/llvm-project/commit/48677f58b06cfb8715902173c5bc3d1764d7

[Lldb-commits] [lldb] cd2e66e - [lldb][gmodules] Fix TestDataFormatterGlobals under gmodules

2021-11-02 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-02T10:14:11+01:00 New Revision: cd2e66efa65fd63cf6f48112f49c09489a1baac0 URL: https://github.com/llvm/llvm-project/commit/cd2e66efa65fd63cf6f48112f49c09489a1baac0 DIFF: https://github.com/llvm/llvm-project/commit/cd2e66efa65fd63cf6f48112f49c09489a1baac0.dif

[Lldb-commits] [lldb] 58dd658 - [lldb] Fix a use-after-free in FindFileTest.cpp

2021-11-02 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-02T12:39:26+01:00 New Revision: 58dd658583eec9af24ca1262e1bce9f884d65487 URL: https://github.com/llvm/llvm-project/commit/58dd658583eec9af24ca1262e1bce9f884d65487 DIFF: https://github.com/llvm/llvm-project/commit/58dd658583eec9af24ca1262e1bce9f884d65487.dif

[Lldb-commits] [lldb] b738a69 - [lldb][NFC] StringRef-ify the name parameter in CreateEnumerationType

2021-11-04 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-04T14:49:16+01:00 New Revision: b738a69ab8e3da2d48fdf41aa1fa5a5673a7d3a1 URL: https://github.com/llvm/llvm-project/commit/b738a69ab8e3da2d48fdf41aa1fa5a5673a7d3a1 DIFF: https://github.com/llvm/llvm-project/commit/b738a69ab8e3da2d48fdf41aa1fa5a5673a7d3a1.dif

[Lldb-commits] [lldb] 7323d07 - [lldb][NFC] Remove a bunch of unnecessary nullptr checks

2021-11-04 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-04T15:21:03+01:00 New Revision: 7323d07483f201b2d73009deef45d2eff4dcd856 URL: https://github.com/llvm/llvm-project/commit/7323d07483f201b2d73009deef45d2eff4dcd856 DIFF: https://github.com/llvm/llvm-project/commit/7323d07483f201b2d73009deef45d2eff4dcd856.dif

[Lldb-commits] [lldb] f6b7bcc - [lldb][NFC] StringRef-ify name param in CreateClassTemplateDecl

2021-11-04 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-04T15:28:02+01:00 New Revision: f6b7bcc64a6a3f4008839777f71d2f132f74ec85 URL: https://github.com/llvm/llvm-project/commit/f6b7bcc64a6a3f4008839777f71d2f132f74ec85 DIFF: https://github.com/llvm/llvm-project/commit/f6b7bcc64a6a3f4008839777f71d2f132f74ec85.dif

[Lldb-commits] [lldb] 96a7359 - [lldb] Add support for demangling D symbols

2021-11-11 Thread Raphael Isemann via lldb-commits
Author: Luís Ferreira Date: 2021-11-11T11:11:21+01:00 New Revision: 96a7359908397d8db3ac6f8e10fb9f6dc5756a44 URL: https://github.com/llvm/llvm-project/commit/96a7359908397d8db3ac6f8e10fb9f6dc5756a44 DIFF: https://github.com/llvm/llvm-project/commit/96a7359908397d8db3ac6f8e10fb9f6dc5756a44.diff

[Lldb-commits] [lldb] 2a0e773 - [lldb][NFC] Remove no longer valid comment for TypeSystem::SetSymbolFile

2021-11-11 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-11T12:39:54+01:00 New Revision: 2a0e77362e3ac1f4de1290640ad1122f9d4e208b URL: https://github.com/llvm/llvm-project/commit/2a0e77362e3ac1f4de1290640ad1122f9d4e208b DIFF: https://github.com/llvm/llvm-project/commit/2a0e77362e3ac1f4de1290640ad1122f9d4e208b.dif

[Lldb-commits] [lldb] b72727a - [lldb][NFC] Remove commented out code in SymbolFileDWARF

2021-11-11 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-11T12:45:38+01:00 New Revision: b72727a75a64df355c18b38465324cdf81893d3c URL: https://github.com/llvm/llvm-project/commit/b72727a75a64df355c18b38465324cdf81893d3c DIFF: https://github.com/llvm/llvm-project/commit/b72727a75a64df355c18b38465324cdf81893d3c.dif

[Lldb-commits] [lldb] cef1e07 - [lldb] Fix that the embedded Python REPL crashes if it receives SIGINT

2021-11-12 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-12T14:19:15+01:00 New Revision: cef1e07cc6d00b5b429d77133201e1f404a8023c URL: https://github.com/llvm/llvm-project/commit/cef1e07cc6d00b5b429d77133201e1f404a8023c DIFF: https://github.com/llvm/llvm-project/commit/cef1e07cc6d00b5b429d77133201e1f404a8023c.dif

[Lldb-commits] [lldb] c3a3e65 - Revert "[lldb] Fix that the embedded Python REPL crashes if it receives SIGINT"

2021-11-13 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-13T18:18:24+01:00 New Revision: c3a3e65ecc082542080376e917d9c57d22901f6b URL: https://github.com/llvm/llvm-project/commit/c3a3e65ecc082542080376e917d9c57d22901f6b DIFF: https://github.com/llvm/llvm-project/commit/c3a3e65ecc082542080376e917d9c57d22901f6b.dif

[Lldb-commits] [lldb] a8bec61 - [lldb] Fix that empty target.run-args are not actually used when launching process

2022-11-18 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2022-11-18T16:48:56+01:00 New Revision: a8bec6117998cd4a9ff6798381cd0df9c9edb982 URL: https://github.com/llvm/llvm-project/commit/a8bec6117998cd4a9ff6798381cd0df9c9edb982 DIFF: https://github.com/llvm/llvm-project/commit/a8bec6117998cd4a9ff6798381cd0df9c9edb982.dif

[Lldb-commits] [lldb] 42a9c0c - [lldb] Reland "Fix UB in half2float" to fix the ubsan bot.

2021-05-24 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-05-24T15:23:32+02:00 New Revision: 42a9c0c80c23fa0de3e3b00fef0dfa6d85e18e55 URL: https://github.com/llvm/llvm-project/commit/42a9c0c80c23fa0de3e3b00fef0dfa6d85e18e55 DIFF: https://github.com/llvm/llvm-project/commit/42a9c0c80c23fa0de3e3b00fef0dfa6d85e18e55.dif

[Lldb-commits] [lldb] 54c2687 - [lldb] Introduce createTestTarget for creating a valid target in API tests

2021-05-24 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-05-24T16:18:44+02:00 New Revision: 54c2687292da54a2d7964a47b0e334155385f084 URL: https://github.com/llvm/llvm-project/commit/54c2687292da54a2d7964a47b0e334155385f084 DIFF: https://github.com/llvm/llvm-project/commit/54c2687292da54a2d7964a47b0e334155385f084.dif

[Lldb-commits] [lldb] 5d7c1d8 - [lldb] Readd deleted variable in the sample test

2021-05-24 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-05-24T16:29:25+02:00 New Revision: 5d7c1d8f33c305b5113cd1429344524ddc2316d9 URL: https://github.com/llvm/llvm-project/commit/5d7c1d8f33c305b5113cd1429344524ddc2316d9 DIFF: https://github.com/llvm/llvm-project/commit/5d7c1d8f33c305b5113cd1429344524ddc2316d9.dif

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