aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/API/SBFrameList.cpp
blob: d5fa955c10f700574fc440c6d7ce69a909d8dbd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//===----------------------------------------------------------------------===//
//
// 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;
}