[Lldb-commits] [PATCH] D137519: [LLDB] Add LoongArch software breakpoint trap opcode

2022-11-09 Thread Lu Weining via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG97842fcba9e3: [LLDB] Add LoongArch software breakpoint trap opcode (authored by seehearfeel, committed by SixWeining). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION

[Lldb-commits] [lldb] 97842fc - [LLDB] Add LoongArch software breakpoint trap opcode

2022-11-09 Thread Weining Lu via lldb-commits
Author: Teizhu Yang Date: 2022-11-10T13:49:11+08:00 New Revision: 97842fcba9e3a3fa4db52a47215641f9141fea63 URL: https://github.com/llvm/llvm-project/commit/97842fcba9e3a3fa4db52a47215641f9141fea63 DIFF: https://github.com/llvm/llvm-project/commit/97842fcba9e3a3fa4db52a47215641f9141fea63.diff

[Lldb-commits] [lldb] 8a084f6 - Revert "Move googletest to the third-party directory"

2022-11-09 Thread Tom Stellard via lldb-commits
Author: Tom Stellard Date: 2022-11-09T11:34:59-08:00 New Revision: 8a084f68c8a1cac99d9fa0fbcf490b53ab3b6e0c URL: https://github.com/llvm/llvm-project/commit/8a084f68c8a1cac99d9fa0fbcf490b53ab3b6e0c DIFF: https://github.com/llvm/llvm-project/commit/8a084f68c8a1cac99d9fa0fbcf490b53ab3b6e0c.diff

[Lldb-commits] [PATCH] D137583: [lldb] Fix simple template names and template params with scope qualifiers

2022-11-09 Thread David Blaikie via Phabricator via lldb-commits
dblaikie added a comment. In D137583#3917706 , @aaron.ballman wrote: >> ...we expect template params to be fully qualified when comparing them for >> simple template names > > So lldb is not inspecting the AST, they're doing reflection (of a sort) on

[Lldb-commits] [lldb] 5905246 - Move googletest to the third-party directory

2022-11-09 Thread Tom Stellard via lldb-commits
Author: Tom Stellard Date: 2022-11-09T11:10:26-08:00 New Revision: 59052468c3e38cab15582cefbb5133fd4c2ffce5 URL: https://github.com/llvm/llvm-project/commit/59052468c3e38cab15582cefbb5133fd4c2ffce5 DIFF: https://github.com/llvm/llvm-project/commit/59052468c3e38cab15582cefbb5133fd4c2ffce5.diff

[Lldb-commits] [PATCH] D137583: [lldb] Fix simple template names and template params with scope qualifiers

2022-11-09 Thread Aaron Ballman via Phabricator via lldb-commits
aaron.ballman added a comment. > ...we expect template params to be fully qualified when comparing them for > simple template names So lldb is not inspecting the AST, they're doing reflection (of a sort) on the pretty printed names? Or am I misunderstanding something?

[Lldb-commits] [PATCH] D137662: Make aliases from a raw command that isn't a top-level command work

2022-11-09 Thread Jim Ingham via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rGd518ed42ae85: Handle aliasing a non-top-level command. (authored by jingham). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D137662/new/

[Lldb-commits] [lldb] d518ed4 - Handle aliasing a non-top-level command.

2022-11-09 Thread Jim Ingham via lldb-commits
Author: Jim Ingham Date: 2022-11-09T10:11:16-08:00 New Revision: d518ed42ae85786c371fd4578f72ab7eb286cb30 URL: https://github.com/llvm/llvm-project/commit/d518ed42ae85786c371fd4578f72ab7eb286cb30 DIFF: https://github.com/llvm/llvm-project/commit/d518ed42ae85786c371fd4578f72ab7eb286cb30.diff

[Lldb-commits] [PATCH] D137684: Make sure we are stopped before we try to install functions into the target

2022-11-09 Thread Jim Ingham via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rGb565e7f0c4cb: Dont try to create Expressions when the process is running. (authored by jingham). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D137684/new/

[Lldb-commits] [lldb] b565e7f - Don't try to create Expressions when the process is running.

2022-11-09 Thread Jim Ingham via lldb-commits
Author: Jim Ingham Date: 2022-11-09T10:07:09-08:00 New Revision: b565e7f0c4cb1768f6c43499aed95adb8cc4f04a URL: https://github.com/llvm/llvm-project/commit/b565e7f0c4cb1768f6c43499aed95adb8cc4f04a DIFF: https://github.com/llvm/llvm-project/commit/b565e7f0c4cb1768f6c43499aed95adb8cc4f04a.diff

[Lldb-commits] [PATCH] D137682: Change IRMemoryMap's last-resort magic address to an inaddressable address so it doesn't conflict

2022-11-09 Thread Jason Molenda via Phabricator via lldb-commits
jasonmolenda updated this revision to Diff 474297. jasonmolenda added a comment. Update the test to check all three members of the struct can be read at the different memory addresses, and CAN'T be read when it overlaps with IRMemoryMap's special address. This final test, where we test that

[Lldb-commits] [lldb] 1ca03a5 - Rename unique-types2/TestUniqueTypes.py to TestUniqueTypes2.py

2022-11-09 Thread Jason Molenda via lldb-commits
Author: Jason Molenda Date: 2022-11-09T09:21:13-08:00 New Revision: 1ca03a5d591052b9f3f1571218eb04f2fb1d8a68 URL: https://github.com/llvm/llvm-project/commit/1ca03a5d591052b9f3f1571218eb04f2fb1d8a68 DIFF: https://github.com/llvm/llvm-project/commit/1ca03a5d591052b9f3f1571218eb04f2fb1d8a68.diff

[Lldb-commits] [PATCH] D137684: Make sure we are stopped before we try to install functions into the target

2022-11-09 Thread Jason Molenda via Phabricator via lldb-commits
jasonmolenda accepted this revision. jasonmolenda added a comment. This revision is now accepted and ready to land. This looks good to me, I like all of the added error messages in `FunctionCaller::WriteFunctionWrapper` in particular. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST

[Lldb-commits] [lldb] 103bbdd - [ARM] Move Triple::getARMCPUForArch into ARMTargetParser

2022-11-09 Thread Tomas Matheson via lldb-commits
Author: Tomas Matheson Date: 2022-11-09T11:52:35Z New Revision: 103bbddde66f4157b52c2b6d7532c1dd0dfcaf94 URL: https://github.com/llvm/llvm-project/commit/103bbddde66f4157b52c2b6d7532c1dd0dfcaf94 DIFF: https://github.com/llvm/llvm-project/commit/103bbddde66f4157b52c2b6d7532c1dd0dfcaf94.diff

[Lldb-commits] [PATCH] D137564: [ARM] Move Triple::getARMCPUForArch into ARMTargetParser

2022-11-09 Thread Tomas Matheson via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG103bbddde66f: [ARM] Move Triple::getARMCPUForArch into ARMTargetParser (authored by tmatheson). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D137564/new/