[Lldb-commits] [lldb] r359089 - Minor code style fix in ClangUserExpression.cpp [NFC]

2019-04-24 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Apr 24 05:55:00 2019 New Revision: 359089 URL: http://llvm.org/viewvc/llvm-project?rev=359089&view=rev Log: Minor code style fix in ClangUserExpression.cpp [NFC] Modified: lldb/trunk/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp Modified: lldb/tru

[Lldb-commits] [lldb] r359206 - Fixed typo in CompileUnit::GetImportedModules documentation [NFC]

2019-04-25 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Apr 25 10:08:54 2019 New Revision: 359206 URL: http://llvm.org/viewvc/llvm-project?rev=359206&view=rev Log: Fixed typo in CompileUnit::GetImportedModules documentation [NFC] Modified: lldb/trunk/include/lldb/Symbol/CompileUnit.h Modified: lldb/trunk/include/lldb/S

[Lldb-commits] [lldb] r359281 - Allow direct comparison of ConstString against StringRef

2019-04-26 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Apr 26 00:21:36 2019 New Revision: 359281 URL: http://llvm.org/viewvc/llvm-project?rev=359281&view=rev Log: Allow direct comparison of ConstString against StringRef Summary: When we want to compare a ConstString against a string literal (or any other non-ConstString),

[Lldb-commits] [lldb] r359387 - Fix UNPREDICTABLE check in EmulateInstructionARM::EmulateADDRegShift

2019-04-27 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sat Apr 27 11:15:35 2019 New Revision: 359387 URL: http://llvm.org/viewvc/llvm-project?rev=359387&view=rev Log: Fix UNPREDICTABLE check in EmulateInstructionARM::EmulateADDRegShift Summary: As reported in LLVM bug 41487, the check in this function is wrong and should be th

[Lldb-commits] [lldb] r359538 - Instantiate 'std' templates explicitly in the expression evaluator

2019-04-30 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Apr 30 01:41:35 2019 New Revision: 359538 URL: http://llvm.org/viewvc/llvm-project?rev=359538&view=rev Log: Instantiate 'std' templates explicitly in the expression evaluator Summary: This patch is a follow-up for D58125. It implements the manual instantiation and mer

[Lldb-commits] [lldb] r359546 - Sort containers alphabetically in CxxModuleHandler [NFC]

2019-04-30 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Apr 30 03:27:31 2019 New Revision: 359546 URL: http://llvm.org/viewvc/llvm-project?rev=359546&view=rev Log: Sort containers alphabetically in CxxModuleHandler [NFC] Modified: lldb/trunk/source/Symbol/CxxModuleHandler.cpp Modified: lldb/trunk/source/Symbol/CxxModul

[Lldb-commits] [lldb] r359664 - Removed unnecessary conversion to StringRef

2019-05-01 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed May 1 02:49:07 2019 New Revision: 359664 URL: http://llvm.org/viewvc/llvm-project?rev=359664&view=rev Log: Removed unnecessary conversion to StringRef Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp Modified: lldb/trunk/source/Plugins/Sym

[Lldb-commits] [lldb] r359665 - Fix build URL in new LLDB website

2019-05-01 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed May 1 02:55:00 2019 New Revision: 359665 URL: http://llvm.org/viewvc/llvm-project?rev=359665&view=rev Log: Fix build URL in new LLDB website Summary: After the LLDB website was migrated to be generated by Sphinx the build.html file lives in another location. See htt

[Lldb-commits] [lldb] r359773 - Inject only relevant local variables in the expression evaluation context

2019-05-02 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu May 2 03:12:56 2019 New Revision: 359773 URL: http://llvm.org/viewvc/llvm-project?rev=359773&view=rev Log: Inject only relevant local variables in the expression evaluation context Summary: In r259902, LLDB started injecting all the locals in every expression evaluati

[Lldb-commits] [lldb] r359777 - Rename Minion to ASTImporterDelegate

2019-05-02 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu May 2 03:58:33 2019 New Revision: 359777 URL: http://llvm.org/viewvc/llvm-project?rev=359777&view=rev Log: Rename Minion to ASTImporterDelegate Summary: I think there universal agreement that Minion isn't the best name for this class. This patch renames the class to

[Lldb-commits] [lldb] r359779 - Add std::stack and std::queue support to CxxModuleHandler

2019-05-02 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu May 2 04:25:50 2019 New Revision: 359779 URL: http://llvm.org/viewvc/llvm-project?rev=359779&view=rev Log: Add std::stack and std::queue support to CxxModuleHandler Reviewers: aprantl, shafik Reviewed By: aprantl, shafik Subscribers: lldb-commits Tags: #c_modules_i

[Lldb-commits] [lldb] r359813 - Remove unnecessary check in SymbolFileDWARF::ParseImportedModules

2019-05-02 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu May 2 11:26:58 2019 New Revision: 359813 URL: http://llvm.org/viewvc/llvm-project?rev=359813&view=rev Log: Remove unnecessary check in SymbolFileDWARF::ParseImportedModules Summary: This check seems unnecessary as we already assert the same condition above and also a

[Lldb-commits] [lldb] r359868 - C.128 override, virtual keyword handling

2019-05-03 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri May 3 03:03:28 2019 New Revision: 359868 URL: http://llvm.org/viewvc/llvm-project?rev=359868&view=rev Log: C.128 override, virtual keyword handling Summary: According to [C128] "Virtual functions should specify exactly one of `virtual`, `override`, or `final`", I've a

[Lldb-commits] [lldb] r359931 - Fixed some minor style issues in rLLDB359921 [NFC]

2019-05-03 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri May 3 14:01:45 2019 New Revision: 359931 URL: http://llvm.org/viewvc/llvm-project?rev=359931&view=rev Log: Fixed some minor style issues in rLLDB359921 [NFC] Ran clang-format on the added test file and use the new StringRef comparison over the temporary ConstStrings.

Re: [Lldb-commits] [lldb] r360564 - @skipIfLinux flaky lldb-mi tests

2019-05-13 Thread Raphael Isemann via lldb-commits
These tests are now SkipIf Windows, FreeBSD, Darwin AND Linux :( So unless someone sets up a Minix or GNU Hurd bot these tests are never run. CC'ing Alexander who was IIRC able to fix these tests in the past, so maybe he has an idea what's going on. - Raphael Am Mo., 13. Mai 2019 um 10:45 Uhr sc

[Lldb-commits] [lldb] r364967 - [lldb] Mention automatic codesign setup script [NFC]

2019-07-02 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Jul 2 14:07:25 2019 New Revision: 364967 URL: http://llvm.org/viewvc/llvm-project?rev=364967&view=rev Log: [lldb] Mention automatic codesign setup script [NFC] The script is the modern way of getting the certificate, so we should mention it in the documentation. Pat

[Lldb-commits] [lldb] r365090 - Refactor ObjectFile::GetSDKVersion

2019-07-03 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Jul 3 15:21:10 2019 New Revision: 365090 URL: http://llvm.org/viewvc/llvm-project?rev=365090&view=rev Log: Refactor ObjectFile::GetSDKVersion Summary: This patch modernizes the GetSDKVersion API and hopefully prevents problems such as the ones discovered in D61218.

[Lldb-commits] [lldb] r365157 - Add assert for 'bad' code path in GetUniqueNamespaceDeclaration

2019-07-04 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 4 12:49:31 2019 New Revision: 365157 URL: http://llvm.org/viewvc/llvm-project?rev=365157&view=rev Log: Add assert for 'bad' code path in GetUniqueNamespaceDeclaration Summary: If we call this function with a non-namespace as a second argument (and a nullptr name)

[Lldb-commits] [lldb] r365247 - [lldb] Added assert to VerifyDecl

2019-07-05 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Jul 5 14:32:39 2019 New Revision: 365247 URL: http://llvm.org/viewvc/llvm-project?rev=365247&view=rev Log: [lldb] Added assert to VerifyDecl We could VerifyDecl sometimes with a nullptr. It would be nice if we could get an actual assert here instead of triggering UB.

[Lldb-commits] [lldb] r365698 - [lldb] Fix handling of dollar characters in expr command

2019-07-10 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Jul 10 14:04:01 2019 New Revision: 365698 URL: http://llvm.org/viewvc/llvm-project?rev=365698&view=rev Log: [lldb] Fix handling of dollar characters in expr command Added: lldb/trunk/packages/Python/lldbsuite/test/expression_command/dollar-in-variable/ lldb/t

[Lldb-commits] [lldb] r365719 - [lldb] Disable TestDollarInVariable.py on Windows

2019-07-10 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Jul 10 17:35:31 2019 New Revision: 365719 URL: http://llvm.org/viewvc/llvm-project?rev=365719&view=rev Log: [lldb] Disable TestDollarInVariable.py on Windows It seems on Windows we don't handle the lldb_expr_result variable correctly: ``` AssertionError: False is not

[Lldb-commits] [lldb] r365812 - [lldb] Don't use __FUNCTION__ as a file name

2019-07-11 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 11 12:26:55 2019 New Revision: 365812 URL: http://llvm.org/viewvc/llvm-project?rev=365812&view=rev Log: [lldb] Don't use __FUNCTION__ as a file name Summary: I saw while debugging that we call this file `ParseInternal`, which is not a very good name for our fake e

[Lldb-commits] [lldb] r365813 - [lldb] Make TestDeletedExecutable more reliable

2019-07-11 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 11 12:27:33 2019 New Revision: 365813 URL: http://llvm.org/viewvc/llvm-project?rev=365813&view=rev Log: [lldb] Make TestDeletedExecutable more reliable Summary: It seems that calling Popen can return to the caller before the started process has read all the needed

[Lldb-commits] [lldb] r365908 - [lldb] Let table gen create command option initializers.

2019-07-12 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Jul 12 08:30:55 2019 New Revision: 365908 URL: http://llvm.org/viewvc/llvm-project?rev=365908&view=rev Log: [lldb] Let table gen create command option initializers. Summary: We currently have man large arrays containing initializers for our command options. These tabl

[Lldb-commits] [lldb] r366083 - [lldb][doc] Document how our LLDB table gen initialized options

2019-07-15 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Jul 15 10:10:44 2019 New Revision: 366083 URL: http://llvm.org/viewvc/llvm-project?rev=366083&view=rev Log: [lldb][doc] Document how our LLDB table gen initialized options Summary: This patch adds documentation that should make it easier to migrate from using the old

[Lldb-commits] [lldb] r366196 - [lldb] Rename Options.inc to CommandOptions.inc [NFC]

2019-07-16 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Tue Jul 16 02:27:02 2019 New Revision: 366196 URL: http://llvm.org/viewvc/llvm-project?rev=366196&view=rev Log: [lldb] Rename Options.inc to CommandOptions.inc [NFC] It seems having two Options.inc files in the same project is giving our custom Xcode project a hard time. T

[Lldb-commits] [lldb] r366316 - [lldb][NFC] Tablegenify watchpoint commands

2019-07-17 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Jul 17 04:48:29 2019 New Revision: 366316 URL: http://llvm.org/viewvc/llvm-project?rev=366316&view=rev Log: [lldb][NFC] Tablegenify watchpoint commands Part of the project that migrates these struct initializers to our new lldb-tablegen. Modified: lldb/trunk/sourc

[Lldb-commits] [lldb] r366347 - [lldb] Make log for ClangModulesDeclVendor's compiler flag less verbose

2019-07-17 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Wed Jul 17 09:51:16 2019 New Revision: 366347 URL: http://llvm.org/viewvc/llvm-project?rev=366347&view=rev Log: [lldb] Make log for ClangModulesDeclVendor's compiler flag less verbose Summary: Currently the ClangModulesDeclVendor is spamming the expression log with the co

[Lldb-commits] [lldb] r366415 - [lldb][NFC] Tablegenify type commands

2019-07-18 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 18 01:22:19 2019 New Revision: 366415 URL: http://llvm.org/viewvc/llvm-project?rev=366415&view=rev Log: [lldb][NFC] Tablegenify type commands Modified: lldb/trunk/source/Commands/CommandObjectType.cpp lldb/trunk/source/Commands/Options.td Modified: lldb/tr

[Lldb-commits] [lldb] r366414 - [lldb] Don't double emit option groups

2019-07-18 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 18 01:22:11 2019 New Revision: 366414 URL: http://llvm.org/viewvc/llvm-project?rev=366414&view=rev Log: [lldb] Don't double emit option groups We currently emit the option groups twice if Groups<[1,2,3]> is used in the tablegen. This leads to compilation errors. Th

[Lldb-commits] [lldb] r366425 - [lldb] Tablegenify thread commands and fix completion bug for thread step-*

2019-07-18 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 18 04:12:00 2019 New Revision: 366425 URL: http://llvm.org/viewvc/llvm-project?rev=366425&view=rev Log: [lldb] Tablegenify thread commands and fix completion bug for thread step-* Beside turning the options into the new tablegen format, this patch also fixes that a

[Lldb-commits] [lldb] r366426 - [lldb][NFC] Format 'type' commands in Options.td

2019-07-18 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 18 04:43:45 2019 New Revision: 366426 URL: http://llvm.org/viewvc/llvm-project?rev=366426&view=rev Log: [lldb][NFC] Format 'type' commands in Options.td Modified: lldb/trunk/source/Commands/Options.td Modified: lldb/trunk/source/Commands/Options.td URL: http:

[Lldb-commits] [lldb] r366440 - [lldb][NFC] Tablegenify alias/regex/history/source/script

2019-07-18 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 18 07:10:49 2019 New Revision: 366440 URL: http://llvm.org/viewvc/llvm-project?rev=366440&view=rev Log: [lldb][NFC] Tablegenify alias/regex/history/source/script (Converting these commands together as they are all simple commands that share the same file). Modifie

[Lldb-commits] [lldb] r366476 - Add offsetof support to expression evaluator.

2019-07-18 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Thu Jul 18 10:58:04 2019 New Revision: 366476 URL: http://llvm.org/viewvc/llvm-project?rev=366476&view=rev Log: Add offsetof support to expression evaluator. Summary: We currently don't support offsetof in the expression evaluator as it is implemented as a macro (which th

[Lldb-commits] [lldb] r366561 - [lldb][NFC] Tablegenify target

2019-07-19 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Jul 19 03:23:22 2019 New Revision: 366561 URL: http://llvm.org/viewvc/llvm-project?rev=366561&view=rev Log: [lldb][NFC] Tablegenify target Modified: lldb/trunk/source/Commands/CommandObjectTarget.cpp lldb/trunk/source/Commands/Options.td lldb/trunk/source/C

[Lldb-commits] [lldb] r366590 - [lldb][NFC] Cleanup mentions and code related to lldb-mi

2019-07-19 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Fri Jul 19 08:55:23 2019 New Revision: 366590 URL: http://llvm.org/viewvc/llvm-project?rev=366590&view=rev Log: [lldb][NFC] Cleanup mentions and code related to lldb-mi Summary: lldb-mi has been removed, but there are still a bunch of references in the code base. This pat

[Lldb-commits] [lldb] r366653 - [lldb] Fix crash when looking up type coming from the ClangModuleDeclVendor

2019-07-21 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Sun Jul 21 03:31:13 2019 New Revision: 366653 URL: http://llvm.org/viewvc/llvm-project?rev=366653&view=rev Log: [lldb] Fix crash when looking up type coming from the ClangModuleDeclVendor Summary: We assume in LLDB that every type comes from an ASTContext with an associate

[Lldb-commits] [lldb] r366673 - [lldb][NFC] Tablegenify breakpoint

2019-07-22 Thread Raphael Isemann via lldb-commits
Author: teemperor Date: Mon Jul 22 03:02:09 2019 New Revision: 366673 URL: http://llvm.org/viewvc/llvm-project?rev=366673&view=rev Log: [lldb][NFC] Tablegenify breakpoint Modified: lldb/trunk/source/Commands/CommandObjectBreakpoint.cpp lldb/trunk/source/Commands/CommandObjectBreakpointCom

[Lldb-commits] [lldb] bb1d702 - [lldb][NFC] Make GetShellSafeArgument return std::string and unittest it.

2020-10-22 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-22T14:47:10+02:00 New Revision: bb1d702e25f5f23e8d5a755295f2921caaea2abb URL: https://github.com/llvm/llvm-project/commit/bb1d702e25f5f23e8d5a755295f2921caaea2abb DIFF: https://github.com/llvm/llvm-project/commit/bb1d702e25f5f23e8d5a755295f2921caaea2abb.dif

[Lldb-commits] [lldb] 4118522 - [lldb] Explicitly use the configuration architecture when building test executables

2020-10-22 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-22T15:30:25+02:00 New Revision: 41185226f6d80663b4a1064c6f47581ee567d78d URL: https://github.com/llvm/llvm-project/commit/41185226f6d80663b4a1064c6f47581ee567d78d DIFF: https://github.com/llvm/llvm-project/commit/41185226f6d80663b4a1064c6f47581ee567d78d.dif

[Lldb-commits] [lldb] 30d5590 - [lldb] Fix TestTargetAPI.py on Apple simulators

2020-10-22 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-22T16:41:54+02:00 New Revision: 30d5590d171c40e05b65585d1b531d8489e783e2 URL: https://github.com/llvm/llvm-project/commit/30d5590d171c40e05b65585d1b531d8489e783e2 DIFF: https://github.com/llvm/llvm-project/commit/30d5590d171c40e05b65585d1b531d8489e783e2.dif

[Lldb-commits] [lldb] 5dc7033 - Revert "[lldb] Explicitly use the configuration architecture when building test executables"

2020-10-22 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-22T18:42:19+02:00 New Revision: 5dc70332d53cc5744aedf72a12d0367988559776 URL: https://github.com/llvm/llvm-project/commit/5dc70332d53cc5744aedf72a12d0367988559776 DIFF: https://github.com/llvm/llvm-project/commit/5dc70332d53cc5744aedf72a12d0367988559776.dif

[Lldb-commits] [lldb] d0ee1d8 - [lldb][NFC] Make GetShellSafeArgument simpler and faster

2020-10-26 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-26T15:29:13+01:00 New Revision: d0ee1d8efe804b3184b1073cd367a307867f1372 URL: https://github.com/llvm/llvm-project/commit/d0ee1d8efe804b3184b1073cd367a307867f1372 DIFF: https://github.com/llvm/llvm-project/commit/d0ee1d8efe804b3184b1073cd367a307867f1372.dif

[Lldb-commits] [lldb] 206e8d8 - Fix SBError::SetErrorToGenericError

2020-10-26 Thread Raphael Isemann via lldb-commits
Author: Andy Yankovsky Date: 2020-10-26T15:44:38+01:00 New Revision: 206e8d8905035f6e9049b97c9cd8af0eaa5aa118 URL: https://github.com/llvm/llvm-project/commit/206e8d8905035f6e9049b97c9cd8af0eaa5aa118 DIFF: https://github.com/llvm/llvm-project/commit/206e8d8905035f6e9049b97c9cd8af0eaa5aa118.diff

[Lldb-commits] [lldb] 1f933ff - [lldb][NFC] Rewrite TestQuoting

2020-10-27 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-27T11:12:17+01:00 New Revision: 1f933ff999f2c0373c79ddf23539873cbfa923e5 URL: https://github.com/llvm/llvm-project/commit/1f933ff999f2c0373c79ddf23539873cbfa923e5 DIFF: https://github.com/llvm/llvm-project/commit/1f933ff999f2c0373c79ddf23539873cbfa923e5.dif

[Lldb-commits] [lldb] d43c70a - [lldb] Add llvm-pdbutil to lldb test dependencies

2020-10-27 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-27T15:46:25+01:00 New Revision: d43c70a2025972c60dc1a30b4661273dc584d0b8 URL: https://github.com/llvm/llvm-project/commit/d43c70a2025972c60dc1a30b4661273dc584d0b8 DIFF: https://github.com/llvm/llvm-project/commit/d43c70a2025972c60dc1a30b4661273dc584d0b8.dif

[Lldb-commits] [lldb] 45c3fc9 - [lldb][NFC] Make GetResumeCountForLaunchInfo return an unsigned.

2020-10-27 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-10-27T16:25:01+01:00 New Revision: 45c3fc97a2a5af760a55e72eb081aa5f977e9609 URL: https://github.com/llvm/llvm-project/commit/45c3fc97a2a5af760a55e72eb081aa5f977e9609 DIFF: https://github.com/llvm/llvm-project/commit/45c3fc97a2a5af760a55e72eb081aa5f977e9609.dif

[Lldb-commits] [lldb] 2f84b59 - [lldb] Also Catch invalid calls to TestPExpectTest's expect()

2020-11-05 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-05T14:08:46+01:00 New Revision: 2f84b59a4cf92a0ce1b985e7f44e17483efa33c0 URL: https://github.com/llvm/llvm-project/commit/2f84b59a4cf92a0ce1b985e7f44e17483efa33c0 DIFF: https://github.com/llvm/llvm-project/commit/2f84b59a4cf92a0ce1b985e7f44e17483efa33c0.dif

[Lldb-commits] [lldb] 239f488 - [lldb] Skip TestChangeProcessGroup on watchOS/tvOS

2020-11-05 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-05T15:11:30+01:00 New Revision: 239f488fd692f2af506b2b45d335404d0d2ab30b URL: https://github.com/llvm/llvm-project/commit/239f488fd692f2af506b2b45d335404d0d2ab30b DIFF: https://github.com/llvm/llvm-project/commit/239f488fd692f2af506b2b45d335404d0d2ab30b.dif

[Lldb-commits] [lldb] d68ebea - Reland [lldb] Explicitly use the configuration architecture when building test executables

2020-11-05 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-05T15:13:48+01:00 New Revision: d68ebea7670f6bbba136f1517a1cff3696b6a800 URL: https://github.com/llvm/llvm-project/commit/d68ebea7670f6bbba136f1517a1cff3696b6a800 DIFF: https://github.com/llvm/llvm-project/commit/d68ebea7670f6bbba136f1517a1cff3696b6a800.dif

[Lldb-commits] [lldb] 26a8e85 - [lldb] Add Apple simulator platforms to lldbplatform.py

2020-11-05 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-05T15:34:42+01:00 New Revision: 26a8e8502b5943cc13177bea48841491dadfef9b URL: https://github.com/llvm/llvm-project/commit/26a8e8502b5943cc13177bea48841491dadfef9b DIFF: https://github.com/llvm/llvm-project/commit/26a8e8502b5943cc13177bea48841491dadfef9b.dif

[Lldb-commits] [lldb] b9b5f12 - [lldb] Set the default architecture also in buildDefault

2020-11-05 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-05T16:32:05+01:00 New Revision: b9b5f12bd4cd0647ff630c1631e0cf20f430fa15 URL: https://github.com/llvm/llvm-project/commit/b9b5f12bd4cd0647ff630c1631e0cf20f430fa15 DIFF: https://github.com/llvm/llvm-project/commit/b9b5f12bd4cd0647ff630c1631e0cf20f430fa15.dif

[Lldb-commits] [lldb] 79d1676 - [lldb][NFC] Fix compiler warnings after removal of eValueTypeVector

2020-11-05 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-05T17:17:33+01:00 New Revision: 79d16764dd29aeddb7e6400e6b2d89d31653886c URL: https://github.com/llvm/llvm-project/commit/79d16764dd29aeddb7e6400e6b2d89d31653886c DIFF: https://github.com/llvm/llvm-project/commit/79d16764dd29aeddb7e6400e6b2d89d31653886c.dif

[Lldb-commits] [lldb] c50faf5 - [lldb] Fix TestErrorMessages test on standalone builds by adding lldb-server substitution

2020-11-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-10T15:26:19+01:00 New Revision: c50faf5c9d7ca7a62cd59516c7de305b73f2455c URL: https://github.com/llvm/llvm-project/commit/c50faf5c9d7ca7a62cd59516c7de305b73f2455c DIFF: https://github.com/llvm/llvm-project/commit/c50faf5c9d7ca7a62cd59516c7de305b73f2455c.dif

[Lldb-commits] [lldb] 9b0578d - [lldb] Reinstate TestGdbserverPort.test

2020-11-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-10T15:51:15+01:00 New Revision: 9b0578d54631b763a3af26bb3a94cad3b0fc220e URL: https://github.com/llvm/llvm-project/commit/9b0578d54631b763a3af26bb3a94cad3b0fc220e DIFF: https://github.com/llvm/llvm-project/commit/9b0578d54631b763a3af26bb3a94cad3b0fc220e.dif

[Lldb-commits] [lldb] 7211604 - [lldb][NFC] Add lldb-server to the shell tests disallow list

2020-11-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-10T18:48:28+01:00 New Revision: 7211604220ae7de9d96abb3385248dc2fecc9777 URL: https://github.com/llvm/llvm-project/commit/7211604220ae7de9d96abb3385248dc2fecc9777 DIFF: https://github.com/llvm/llvm-project/commit/7211604220ae7de9d96abb3385248dc2fecc9777.dif

[Lldb-commits] [lldb] 66ae40e - [lldb][test] Remove not_remote_testsuite_ready in favor of skipIfRemote decorator

2020-11-11 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-11T09:14:54+01:00 New Revision: 66ae40ebfb83c8beb2080123d3866bd08520fcef URL: https://github.com/llvm/llvm-project/commit/66ae40ebfb83c8beb2080123d3866bd08520fcef DIFF: https://github.com/llvm/llvm-project/commit/66ae40ebfb83c8beb2080123d3866bd08520fcef.dif

[Lldb-commits] [lldb] da121ff - [lldb] Introduce a LLDB printing policy for Clang type names that suppressed inline namespaces

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

[Lldb-commits] [lldb] 1115d1d - Revert "Generalize regex matching std::string variants to compensate for recent"

2020-11-12 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-12T14:01:22+01:00 New Revision: 1115d1d08302e246789b3c3915e65f3147888e47 URL: https://github.com/llvm/llvm-project/commit/1115d1d08302e246789b3c3915e65f3147888e47 DIFF: https://github.com/llvm/llvm-project/commit/1115d1d08302e246789b3c3915e65f3147888e47.dif

[Lldb-commits] [lldb] b4b8365 - [lldb][NFC] Move OptionDefinition from lldb-private-types.h to its own Utility header

2020-11-12 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-12T15:30:26+01:00 New Revision: b4b836563ae3603b601b57d8992f2d5fe60f02f8 URL: https://github.com/llvm/llvm-project/commit/b4b836563ae3603b601b57d8992f2d5fe60f02f8 DIFF: https://github.com/llvm/llvm-project/commit/b4b836563ae3603b601b57d8992f2d5fe60f02f8.dif

[Lldb-commits] [lldb] d85cc03 - [lldb] Add expect_var_path to test variable path results

2020-11-12 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-12T16:14:48+01:00 New Revision: d85cc03c9c4cc44c0281320558abc440575ae1d4 URL: https://github.com/llvm/llvm-project/commit/d85cc03c9c4cc44c0281320558abc440575ae1d4 DIFF: https://github.com/llvm/llvm-project/commit/d85cc03c9c4cc44c0281320558abc440575ae1d4.dif

[Lldb-commits] [lldb] d4b08cc - [lldb] Replace TestAbortExitCode with a debugserver specific test

2020-11-12 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-12T17:33:21+01:00 New Revision: d4b08ccb87944ec6c647f02b536a40922ec2dd73 URL: https://github.com/llvm/llvm-project/commit/d4b08ccb87944ec6c647f02b536a40922ec2dd73 DIFF: https://github.com/llvm/llvm-project/commit/d4b08ccb87944ec6c647f02b536a40922ec2dd73.dif

[Lldb-commits] [lldb] dc848a0 - [lldb][NFC] Fix flaky TestForwardDeclFromStdModule test

2020-11-13 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-13T11:40:51+01:00 New Revision: dc848a0888f0a14c03ff1e7dd7ab109db7a8c065 URL: https://github.com/llvm/llvm-project/commit/dc848a0888f0a14c03ff1e7dd7ab109db7a8c065 DIFF: https://github.com/llvm/llvm-project/commit/dc848a0888f0a14c03ff1e7dd7ab109db7a8c065.dif

[Lldb-commits] [lldb] a8350ce - [lldb] Add support for using variables with C++ keywords names in non-C++ expressions

2020-11-16 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-16T16:04:44+01:00 New Revision: a8350ce79d167643b53d06e2167535d24fe68dc3 URL: https://github.com/llvm/llvm-project/commit/a8350ce79d167643b53d06e2167535d24fe68dc3 DIFF: https://github.com/llvm/llvm-project/commit/a8350ce79d167643b53d06e2167535d24fe68dc3.dif

[Lldb-commits] [lldb] 618f11b - [lldb] Skip TestCppKeywordsAsCIdentifiers on Windows

2020-11-16 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-16T18:41:04+01:00 New Revision: 618f11ba0bf96107074e8c3f16753bbfd24b7062 URL: https://github.com/llvm/llvm-project/commit/618f11ba0bf96107074e8c3f16753bbfd24b7062 DIFF: https://github.com/llvm/llvm-project/commit/618f11ba0bf96107074e8c3f16753bbfd24b7062.dif

[Lldb-commits] [lldb] 2fa38fa - [lldb] Python3 byte<->string issue in patch-crashlog.py

2020-11-18 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-18T09:58:02+01:00 New Revision: 2fa38fa9a651553080620f4c9883d075df2a706e URL: https://github.com/llvm/llvm-project/commit/2fa38fa9a651553080620f4c9883d075df2a706e DIFF: https://github.com/llvm/llvm-project/commit/2fa38fa9a651553080620f4c9883d075df2a706e.dif

[Lldb-commits] [lldb] ccd9091 - [lldb][NFC] Don't let Process inherit from UserID

2020-11-18 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-18T14:33:48+01:00 New Revision: ccd9091d4a2fd55cb455e61fa77530e1a5de6e69 URL: https://github.com/llvm/llvm-project/commit/ccd9091d4a2fd55cb455e61fa77530e1a5de6e69 DIFF: https://github.com/llvm/llvm-project/commit/ccd9091d4a2fd55cb455e61fa77530e1a5de6e69.dif

[Lldb-commits] [lldb] a703998 - [lldb] Remove legacy casts from TestStackFromStdModule

2020-11-19 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-19T17:07:12+01:00 New Revision: a703998e66f7500442e8f55bfcddf4a5820ca023 URL: https://github.com/llvm/llvm-project/commit/a703998e66f7500442e8f55bfcddf4a5820ca023 DIFF: https://github.com/llvm/llvm-project/commit/a703998e66f7500442e8f55bfcddf4a5820ca023.dif

[Lldb-commits] [lldb] b7a09de - [lldb][NFC] Add a FIXME for ClangASTSource::FindExternalLexicalDecls's unused 'decls' parameter

2020-11-19 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-19T17:15:14+01:00 New Revision: b7a09de10ffc59dec78a7d4b39bc78d07d3110eb URL: https://github.com/llvm/llvm-project/commit/b7a09de10ffc59dec78a7d4b39bc78d07d3110eb DIFF: https://github.com/llvm/llvm-project/commit/b7a09de10ffc59dec78a7d4b39bc78d07d3110eb.dif

[Lldb-commits] [lldb] 47b7138 - [lldb] Fix incorrect error handling in GDBRemoteCommunicationClient::SendGetSupportedTraceType

2020-11-19 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-19T19:14:04+01:00 New Revision: 47b7138b484b8fc94633ac4750a11acad797473e URL: https://github.com/llvm/llvm-project/commit/47b7138b484b8fc94633ac4750a11acad797473e DIFF: https://github.com/llvm/llvm-project/commit/47b7138b484b8fc94633ac4750a11acad797473e.dif

[Lldb-commits] [lldb] c77aefb - [lldb] Fix another Python2/3 string<->bytes type error in patch-crashlog.py

2020-11-19 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-19T19:24:40+01:00 New Revision: c77aefb0ff36277c97f52e22cec3ffcc5db43064 URL: https://github.com/llvm/llvm-project/commit/c77aefb0ff36277c97f52e22cec3ffcc5db43064 DIFF: https://github.com/llvm/llvm-project/commit/c77aefb0ff36277c97f52e22cec3ffcc5db43064.dif

[Lldb-commits] [lldb] ffb3fd8 - Partially revert '[MachO] Update embedded part of ObjectFileMachO for Mangled API change'

2020-11-20 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-20T13:31:36+01:00 New Revision: ffb3fd8f1846de97d10cfca249567eb282cec980 URL: https://github.com/llvm/llvm-project/commit/ffb3fd8f1846de97d10cfca249567eb282cec980 DIFF: https://github.com/llvm/llvm-project/commit/ffb3fd8f1846de97d10cfca249567eb282cec980.dif

[Lldb-commits] [lldb] 53a14a4 - [lldb] Fix TestThreadStepOut.py after "Flush local value map on every instruction"

2020-11-26 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-26T09:43:47+01:00 New Revision: 53a14a47ee89dadb8798ca8ed19848f33f4551d5 URL: https://github.com/llvm/llvm-project/commit/53a14a47ee89dadb8798ca8ed19848f33f4551d5 DIFF: https://github.com/llvm/llvm-project/commit/53a14a47ee89dadb8798ca8ed19848f33f4551d5.dif

[Lldb-commits] [lldb] 3f6c856 - [ASTImporter] Import the default argument of TemplateTypeParmDecl

2020-11-26 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-26T18:01:30+01:00 New Revision: 3f6c856bb5ae4426a586426bca9f1ef2848a2b12 URL: https://github.com/llvm/llvm-project/commit/3f6c856bb5ae4426a586426bca9f1ef2848a2b12 DIFF: https://github.com/llvm/llvm-project/commit/3f6c856bb5ae4426a586426bca9f1ef2848a2b12.dif

[Lldb-commits] [lldb] e0e7bbe - [lldb] Always include template arguments that have their default value in the internal type name

2020-11-30 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-11-30T16:40:50+01:00 New Revision: e0e7bbeb545516c50a0354efc34d329453558c9c URL: https://github.com/llvm/llvm-project/commit/e0e7bbeb545516c50a0354efc34d329453558c9c DIFF: https://github.com/llvm/llvm-project/commit/e0e7bbeb545516c50a0354efc34d329453558c9c.dif

[Lldb-commits] [lldb] 64f0462 - [lldb][NFC] Modernize and cleanup TestClassTemplateParameterPack

2020-12-01 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-01T15:53:40+01:00 New Revision: 64f04629aa7a4cf9d2deb725683959faa4a857fe URL: https://github.com/llvm/llvm-project/commit/64f04629aa7a4cf9d2deb725683959faa4a857fe DIFF: https://github.com/llvm/llvm-project/commit/64f04629aa7a4cf9d2deb725683959faa4a857fe.dif

[Lldb-commits] [lldb] 9126ba2 - [lldb][NFC] Fix test file name in lang/cpp/non-type-template-param

2020-12-01 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-02T08:41:53+01:00 New Revision: 9126ba25a3eeffa438e20d3a18abf70eb547789d URL: https://github.com/llvm/llvm-project/commit/9126ba25a3eeffa438e20d3a18abf70eb547789d DIFF: https://github.com/llvm/llvm-project/commit/9126ba25a3eeffa438e20d3a18abf70eb547789d.dif

[Lldb-commits] [lldb] c526426 - [lldb] Don't reject empty or unnamed template parameter packs

2020-12-02 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-02T10:50:41+01:00 New Revision: c526426f5cba5308782ea4f86822047ee2ee3818 URL: https://github.com/llvm/llvm-project/commit/c526426f5cba5308782ea4f86822047ee2ee3818 DIFF: https://github.com/llvm/llvm-project/commit/c526426f5cba5308782ea4f86822047ee2ee3818.dif

[Lldb-commits] [lldb] 291cc1b - [lldb][NFC] Give class template pack test files unique class names

2020-12-02 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-02T19:19:35+01:00 New Revision: 291cc1bbea1f4a6cab829509e95b3efe40af908f URL: https://github.com/llvm/llvm-project/commit/291cc1bbea1f4a6cab829509e95b3efe40af908f DIFF: https://github.com/llvm/llvm-project/commit/291cc1bbea1f4a6cab829509e95b3efe40af908f.dif

[Lldb-commits] [lldb] c49e718 - [lldb][NFC] Make DeclOrigin::Valid() const

2020-12-02 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-03T00:08:19+01:00 New Revision: c49e71805142ac3a27a5567ce516890e9243b34e URL: https://github.com/llvm/llvm-project/commit/c49e71805142ac3a27a5567ce516890e9243b34e DIFF: https://github.com/llvm/llvm-project/commit/c49e71805142ac3a27a5567ce516890e9243b34e.dif

[Lldb-commits] [lldb] 640567d - [lldb] X-FAIL class template parameter pack tests on Windows

2020-12-02 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-03T00:38:05+01:00 New Revision: 640567d4646292f77e87e77b8710ebf1bde1f390 URL: https://github.com/llvm/llvm-project/commit/640567d4646292f77e87e77b8710ebf1bde1f390 DIFF: https://github.com/llvm/llvm-project/commit/640567d4646292f77e87e77b8710ebf1bde1f390.dif

[Lldb-commits] [lldb] 973f390 - [lldb][NFC] Rename TypeSystemClangForExpressions to ScratchTypeSystemClang

2020-12-04 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-04T09:41:42+01:00 New Revision: 973f3907a471eee85c35f7d283fe2de91ce953e2 URL: https://github.com/llvm/llvm-project/commit/973f3907a471eee85c35f7d283fe2de91ce953e2 DIFF: https://github.com/llvm/llvm-project/commit/973f3907a471eee85c35f7d283fe2de91ce953e2.dif

[Lldb-commits] [lldb] 594308c - [lldb][NFC] Rename TypeSystemClang::GetScratch to ScratchTypeSystemClang::GetForTarget

2020-12-04 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-04T11:29:08+01:00 New Revision: 594308c7ad07b4cea20f41d915aa81794e909654 URL: https://github.com/llvm/llvm-project/commit/594308c7ad07b4cea20f41d915aa81794e909654 DIFF: https://github.com/llvm/llvm-project/commit/594308c7ad07b4cea20f41d915aa81794e909654.dif

[Lldb-commits] [lldb] e97b991 - [lldb] Remove LLDB session dir and just store test traces in the respective test build directory

2020-12-04 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-04T11:43:10+01:00 New Revision: e97b991eef63663d1f635813fe375354edb7b51a URL: https://github.com/llvm/llvm-project/commit/e97b991eef63663d1f635813fe375354edb7b51a DIFF: https://github.com/llvm/llvm-project/commit/e97b991eef63663d1f635813fe375354edb7b51a.dif

[Lldb-commits] [lldb] 6face91 - [lldb][import-std-module] Add a test for typedef'd std types

2020-12-08 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-08T13:36:13+01:00 New Revision: 6face9119c811e06cfb284755953ba6cdbdaa22b URL: https://github.com/llvm/llvm-project/commit/6face9119c811e06cfb284755953ba6cdbdaa22b DIFF: https://github.com/llvm/llvm-project/commit/6face9119c811e06cfb284755953ba6cdbdaa22b.dif

[Lldb-commits] [lldb] 199ec40 - [lldb][NFC] Refactor _get_bool_config_skip_if_decorator

2020-12-09 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-09T20:02:06+01:00 New Revision: 199ec40e7bcc8548282d803b1a43b1ae1d3b57ce URL: https://github.com/llvm/llvm-project/commit/199ec40e7bcc8548282d803b1a43b1ae1d3b57ce DIFF: https://github.com/llvm/llvm-project/commit/199ec40e7bcc8548282d803b1a43b1ae1d3b57ce.dif

[Lldb-commits] [lldb] 4df4edb - [lldb][NFC] Fix a typo in TestCppMultipleInheritance

2020-12-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-10T10:56:46+01:00 New Revision: 4df4edb6ad14c7748acda8670944cde19d537621 URL: https://github.com/llvm/llvm-project/commit/4df4edb6ad14c7748acda8670944cde19d537621 DIFF: https://github.com/llvm/llvm-project/commit/4df4edb6ad14c7748acda8670944cde19d537621.dif

[Lldb-commits] [lldb] 9586082 - [lldb] Allow LLDB to automatically retry a failed expression with an imported std C++ module

2020-12-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-10T12:29:17+01:00 New Revision: 958608285eb4d04c6e3dc7071fa429b43597585b URL: https://github.com/llvm/llvm-project/commit/958608285eb4d04c6e3dc7071fa429b43597585b DIFF: https://github.com/llvm/llvm-project/commit/958608285eb4d04c6e3dc7071fa429b43597585b.dif

[Lldb-commits] [lldb] 208e3f5 - [lldb] Fix that symbols.clang-modules-cache-path is never initialized

2020-12-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-10T13:37:40+01:00 New Revision: 208e3f5d9b6c172f65dbb9cdbc9354c81c6d8911 URL: https://github.com/llvm/llvm-project/commit/208e3f5d9b6c172f65dbb9cdbc9354c81c6d8911 DIFF: https://github.com/llvm/llvm-project/commit/208e3f5d9b6c172f65dbb9cdbc9354c81c6d8911.dif

[Lldb-commits] [lldb] 839e845 - [lldb] Remove assumption from Clang-based data formatters that their types are in the scratch AST

2020-12-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-10T17:35:03+01:00 New Revision: 839e845277894ad37fbca8063cbf1955331fbeff URL: https://github.com/llvm/llvm-project/commit/839e845277894ad37fbca8063cbf1955331fbeff DIFF: https://github.com/llvm/llvm-project/commit/839e845277894ad37fbca8063cbf1955331fbeff.dif

[Lldb-commits] [lldb] 47e7ecd - [lldb] Introduce separate scratch ASTs for debug info types and types imported from C++ modules.

2020-12-10 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-10T19:28:01+01:00 New Revision: 47e7ecdd7d36ca0924aa89c0fb2d956a6345a8f5 URL: https://github.com/llvm/llvm-project/commit/47e7ecdd7d36ca0924aa89c0fb2d956a6345a8f5 DIFF: https://github.com/llvm/llvm-project/commit/47e7ecdd7d36ca0924aa89c0fb2d956a6345a8f5.dif

[Lldb-commits] [lldb] 2b09ded - [lldb] Fix import-std-module tests after libc++ got a new __memory subdirectory

2020-12-15 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-15T16:16:00+01:00 New Revision: 2b09dedac4c824c51bc0a8934b33c0f50ce0e126 URL: https://github.com/llvm/llvm-project/commit/2b09dedac4c824c51bc0a8934b33c0f50ce0e126 DIFF: https://github.com/llvm/llvm-project/commit/2b09dedac4c824c51bc0a8934b33c0f50ce0e126.dif

[Lldb-commits] [lldb] 722247c - [lldb] Unify the two CreateTypedef implementations in TypeSystemClang

2020-12-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-17T10:49:26+01:00 New Revision: 722247c8124a6b840686757ae128b16cea248130 URL: https://github.com/llvm/llvm-project/commit/722247c8124a6b840686757ae128b16cea248130 DIFF: https://github.com/llvm/llvm-project/commit/722247c8124a6b840686757ae128b16cea248130.dif

[Lldb-commits] [lldb] b833898 - [lldb] Add std::array to the supported template list of the CxxModuleHandler

2020-12-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2020-12-17T11:47:58+01:00 New Revision: b8338983e6f6ec6ebd48a7fc640b5d859e653b27 URL: https://github.com/llvm/llvm-project/commit/b8338983e6f6ec6ebd48a7fc640b5d859e653b27 DIFF: https://github.com/llvm/llvm-project/commit/b8338983e6f6ec6ebd48a7fc640b5d859e653b27.dif

[Lldb-commits] [lldb] b0dc54e - [lldb][NFC] Refactor setup code for Clang diagnostics

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

[Lldb-commits] [lldb] bab121a - [lldb][docs] Use sphinx instead of epydoc to generate LLDB's Python reference

2021-01-15 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-01-15T13:26:42+01:00 New Revision: bab121a1b66e85390cad019ec921febcba35519d URL: https://github.com/llvm/llvm-project/commit/bab121a1b66e85390cad019ec921febcba35519d DIFF: https://github.com/llvm/llvm-project/commit/bab121a1b66e85390cad019ec921febcba35519d.dif

[Lldb-commits] [lldb] 4017c6f - [lldb][docs] Translate ASCII art to restructured text formatting

2021-01-15 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-01-15T14:43:27+01:00 New Revision: 4017c6fe7f11db5f266306bcd504690be586620a URL: https://github.com/llvm/llvm-project/commit/4017c6fe7f11db5f266306bcd504690be586620a DIFF: https://github.com/llvm/llvm-project/commit/4017c6fe7f11db5f266306bcd504690be586620a.dif

[Lldb-commits] [lldb] e7bc6c5 - Reland [lldb][docs] Use sphinx instead of epydoc to generate LLDB's Python reference

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

[Lldb-commits] [lldb] acdc745 - [lldb][docs] Cleanup the Python doc strings for SB API classes

2021-01-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-01-17T16:51:07+01:00 New Revision: acdc74568927d47f94816e73b6e105c9460cc3e4 URL: https://github.com/llvm/llvm-project/commit/acdc74568927d47f94816e73b6e105c9460cc3e4 DIFF: https://github.com/llvm/llvm-project/commit/acdc74568927d47f94816e73b6e105c9460cc3e4.dif

[Lldb-commits] [lldb] 7e9e6ac - [lldb][docs] Fix some RST formatting errors related to code examples.

2021-01-17 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-01-17T17:41:05+01:00 New Revision: 7e9e6ac526ebd90fe8ec0b8d2bb6edd3516ab908 URL: https://github.com/llvm/llvm-project/commit/7e9e6ac526ebd90fe8ec0b8d2bb6edd3516ab908 DIFF: https://github.com/llvm/llvm-project/commit/7e9e6ac526ebd90fe8ec0b8d2bb6edd3516ab908.dif

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