mirror of
https://github.com/intel/llvm.git
synced 2026-01-13 11:02:04 +08:00
This patch introduces `SBFrameList`, a new SBAPI class that allows iterating over stack frames lazily without calling `SBThread::GetFrameAtIndex` in a loop. The new `SBThread::GetFrames()` method returns an `SBFrameList` that supports Python iteration (`for frame in frame_list:`), indexing (`frame_list[0]`, `frame_list[-1]`), and length queries (`len()`). The implementation uses `StackFrameListSP` as the opaque pointer, sharing the thread's underlying frame list to ensure frames are materialized on-demand. This is particularly useful for ScriptedFrameProviders, where user scripts will be to iterate, filter, and replace frames lazily without materializing the entire stack upfront. Signed-off-by: Med Ismail Bennani <ismail@bennani.ma>
98 lines
2.3 KiB
C++
98 lines
2.3 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/API/SBFrameList.h"
|
|
#include "lldb/API/SBFrame.h"
|
|
#include "lldb/API/SBStream.h"
|
|
#include "lldb/API/SBThread.h"
|
|
#include "lldb/Target/StackFrameList.h"
|
|
#include "lldb/Target/Thread.h"
|
|
#include "lldb/Utility/Instrumentation.h"
|
|
|
|
using namespace lldb;
|
|
using namespace lldb_private;
|
|
|
|
SBFrameList::SBFrameList() : m_opaque_sp() { LLDB_INSTRUMENT_VA(this); }
|
|
|
|
SBFrameList::SBFrameList(const SBFrameList &rhs)
|
|
: m_opaque_sp(rhs.m_opaque_sp) {
|
|
LLDB_INSTRUMENT_VA(this, rhs);
|
|
}
|
|
|
|
SBFrameList::~SBFrameList() = default;
|
|
|
|
const SBFrameList &SBFrameList::operator=(const SBFrameList &rhs) {
|
|
LLDB_INSTRUMENT_VA(this, rhs);
|
|
|
|
if (this != &rhs)
|
|
m_opaque_sp = rhs.m_opaque_sp;
|
|
return *this;
|
|
}
|
|
|
|
SBFrameList::SBFrameList(const lldb::StackFrameListSP &frame_list_sp)
|
|
: m_opaque_sp(frame_list_sp) {}
|
|
|
|
void SBFrameList::SetFrameList(const lldb::StackFrameListSP &frame_list_sp) {
|
|
m_opaque_sp = frame_list_sp;
|
|
}
|
|
|
|
SBFrameList::operator bool() const {
|
|
LLDB_INSTRUMENT_VA(this);
|
|
|
|
return m_opaque_sp.get() != nullptr;
|
|
}
|
|
|
|
bool SBFrameList::IsValid() const {
|
|
LLDB_INSTRUMENT_VA(this);
|
|
return this->operator bool();
|
|
}
|
|
|
|
uint32_t SBFrameList::GetSize() const {
|
|
LLDB_INSTRUMENT_VA(this);
|
|
|
|
if (m_opaque_sp)
|
|
return m_opaque_sp->GetNumFrames();
|
|
return 0;
|
|
}
|
|
|
|
SBFrame SBFrameList::GetFrameAtIndex(uint32_t idx) const {
|
|
LLDB_INSTRUMENT_VA(this, idx);
|
|
|
|
SBFrame sb_frame;
|
|
if (m_opaque_sp)
|
|
sb_frame.SetFrameSP(m_opaque_sp->GetFrameAtIndex(idx));
|
|
return sb_frame;
|
|
}
|
|
|
|
SBThread SBFrameList::GetThread() const {
|
|
LLDB_INSTRUMENT_VA(this);
|
|
|
|
SBThread sb_thread;
|
|
if (m_opaque_sp)
|
|
sb_thread.SetThread(m_opaque_sp->GetThread().shared_from_this());
|
|
return sb_thread;
|
|
}
|
|
|
|
void SBFrameList::Clear() {
|
|
LLDB_INSTRUMENT_VA(this);
|
|
|
|
if (m_opaque_sp)
|
|
m_opaque_sp->Clear();
|
|
}
|
|
|
|
bool SBFrameList::GetDescription(SBStream &description) const {
|
|
LLDB_INSTRUMENT_VA(this, description);
|
|
|
|
if (!m_opaque_sp)
|
|
return false;
|
|
|
|
Stream &strm = description.ref();
|
|
m_opaque_sp->Dump(&strm);
|
|
return true;
|
|
}
|