Author: Jonas Devlieghere
Date: 2022-05-19T21:40:20-07:00
New Revision: b9a30b69d814971de5bd90a134b17b5954a8a2b4
URL:
https://github.com/llvm/llvm-project/commit/b9a30b69d814971de5bd90a134b17b5954a8a2b4
DIFF:
https://github.com/llvm/llvm-project/commit/b9a30b69d814971de5bd90a134b17b5954a8a2b4.d
This revision was automatically updated to reflect the committed changes.
Closed by commit rGea4864007c72: [lldb] Fix 'ptsname_r' is only
available on macOS 10.13.4 or newer (authored by JDevlieghere).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D12
Author: Jonas Devlieghere
Date: 2022-05-19T21:39:52-07:00
New Revision: ea4864007c72bfe1523013e28ceae4e391b66afc
URL:
https://github.com/llvm/llvm-project/commit/ea4864007c72bfe1523013e28ceae4e391b66afc
DIFF:
https://github.com/llvm/llvm-project/commit/ea4864007c72bfe1523013e28ceae4e391b66afc.d
jj10306 added inline comments.
Comment at: lldb/source/Plugins/Process/Linux/IntelPTMultiCoreTrace.cpp:122-129
void IntelPTMultiCoreTrace::ForEachCore(
std::function
callback) {
for (auto &it : m_traces_per_core)
-callback(it.first, *it.second);
+callbac
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG027499a82434: [lldb/test] Fix PExpect.launch issue when
disabling color support (authored by mib).
Herald added a subscriber: lldb-commits.
Reposito
Author: Med Ismail Bennani
Date: 2022-05-19T14:47:04-07:00
New Revision: 027499a82434ea7a784b2e5a0227540f00fbc307
URL:
https://github.com/llvm/llvm-project/commit/027499a82434ea7a784b2e5a0227540f00fbc307
DIFF:
https://github.com/llvm/llvm-project/commit/027499a82434ea7a784b2e5a0227540f00fbc307.
mib created this revision.
mib added a reviewer: JDevlieghere.
mib added a project: LLDB.
Herald added a project: All.
mib requested review of this revision.
This patch should fix a bug in PExpect.launch that happened when color
support is not enabled.
In that case, we need to add the `--no-use-c
clayborg added inline comments.
Comment at: lldb/tools/lldb-vscode/JSONUtils.cpp:754-755
object.try_emplace("id", frame_id);
- EmplaceSafeString(object, "name", frame.GetFunctionName());
+ bool is_optimized =
+ frame.GetFunction().IsValid() && frame.GetFunction().GetIsO
clayborg requested changes to this revision.
clayborg added inline comments.
This revision now requires changes to proceed.
Comment at: lldb/tools/lldb-vscode/JSONUtils.cpp:754-755
object.try_emplace("id", frame_id);
- EmplaceSafeString(object, "name", frame.GetFunctionName()
clayborg accepted this revision.
clayborg added a comment.
This revision is now accepted and ready to land.
A little background: we have people that end up debugging optimized code and
when a variable's SBValue had an error, we wouldn't show anything in the
variables window for the value.
Repo
yinghuitan created this revision.
yinghuitan added reviewers: clayborg, labath, jingham, jdoerfert, JDevlieghere,
kusmour, aadsm.
Herald added a project: All.
yinghuitan requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
This fixes an issue t
yinghuitan created this revision.
yinghuitan added reviewers: clayborg, labath, jingham, jdoerfert, JDevlieghere.
Herald added a project: All.
yinghuitan requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
To help user identify optimized code T
hawkinsw marked 2 inline comments as done.
hawkinsw added a comment.
@JDevlieghere So sorry! I cannot believe I missed those. Thanks for putting up
with me!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124731/new/
https://reviews.llvm.org/D124731
hawkinsw updated this revision to Diff 430781.
hawkinsw added a comment.
Stupidly missed a few of the places where bare assertions were used.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124731/new/
https://reviews.llvm.org/D124731
Files:
lldb/
mib accepted this revision.
mib added a comment.
This revision is now accepted and ready to land.
LGTM
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125995/new/
https://reviews.llvm.org/D125995
___
lldb-
JDevlieghere created this revision.
JDevlieghere added reviewers: mib, aprantl.
Herald added a project: All.
JDevlieghere requested review of this revision.
Herald added a project: LLDB.
A deployment target that's less than 10.13.4 causes an error saying that
'ptsname_r' is only available on mac
jj10306 requested changes to this revision.
jj10306 added a comment.
This revision now requires changes to proceed.
Submitting my comments so far, will continue my review in a bit
Comment at: lldb/include/lldb/Utility/TraceIntelPTGDBRemotePackets.h:26-28
static const char *k
jj10306 requested changes to this revision.
jj10306 added inline comments.
This revision now requires changes to proceed.
Comment at: lldb/source/Plugins/Process/Linux/IntelPTSingleBufferTrace.cpp:186
attr.exclude_kernel = 1;
- attr.sample_type = PERF_SAMPLE_TIME;
- attr.sam
jj10306 requested changes to this revision.
jj10306 added inline comments.
This revision now requires changes to proceed.
Comment at: lldb/source/Plugins/Process/Linux/IntelPTCollector.h:73
+ /// The target process.
NativeProcessProtocol &m_process;
/// Threads traced due
Author: David Spickett
Date: 2022-05-19T14:40:01+01:00
New Revision: 068f14f1e4ec69d218df544487f9420f2b3ab29b
URL:
https://github.com/llvm/llvm-project/commit/068f14f1e4ec69d218df544487f9420f2b3ab29b
DIFF:
https://github.com/llvm/llvm-project/commit/068f14f1e4ec69d218df544487f9420f2b3ab29b.diff
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG068f14f1e4ec: [lldb] Add --show-tags option to "memory
find" (authored by DavidSpickett).
Changed prior to commit:
https://reviews.llvm.org/D12509
DavidSpickett added a comment.
Relanded in https://reviews.llvm.org/rG13e1cf806567bc4987817e14a774198c3e3f2709.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111791/new/
https://reviews.llvm.org/D111791
Author: David Spickett
Date: 2022-05-19T13:16:36+01:00
New Revision: 13e1cf806567bc4987817e14a774198c3e3f2709
URL:
https://github.com/llvm/llvm-project/commit/13e1cf806567bc4987817e14a774198c3e3f2709
DIFF:
https://github.com/llvm/llvm-project/commit/13e1cf806567bc4987817e14a774198c3e3f2709.diff
PatriosTheGreat added a comment.
Thanks Greg,
Can you or someone please take this commit to main branch since I don't have a
commit permission?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125325/new/
https://reviews.llvm.org/D125325
___
ll
24 matches
Mail list logo