LLDB mainline
SBExecutionContext.h
Go to the documentation of this file.
1//===-- SBExecutionContext.h -----------------------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_API_SBEXECUTIONCONTEXT_H
11#define LLDB_API_SBEXECUTIONCONTEXT_H
12
13#include "lldb/API/SBDefines.h"
14
15#include <cstdio>
16#include <vector>
17
18namespace lldb_private {
19namespace python {
20class SWIGBridge;
21}
22} // namespace lldb_private
23
24namespace lldb {
25
28
29public:
31
33
35
36 SBExecutionContext(const lldb::SBProcess &process);
37
38 SBExecutionContext(lldb::SBThread thread); // can't be a const& because
39 // SBThread::get() isn't itself a
40 // const function
41
43
45
46 const SBExecutionContext &operator=(const lldb::SBExecutionContext &rhs);
47
48 SBTarget GetTarget() const;
49
50 SBProcess GetProcess() const;
51
52 SBThread GetThread() const;
53
54 SBFrame GetFrame() const;
55
56protected:
57 friend class lldb_private::python::SWIGBridge;
58
60
62
63private:
65};
66
67} // namespace lldb
68
69#endif // LLDB_API_SBEXECUTIONCONTEXT_H
#define LLDB_API
Definition: SBDefines.h:28
lldb::ExecutionContextRefSP m_exe_ctx_sp
Execution context objects refer to objects in the execution of the program that is being debugged.
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
std::shared_ptr< lldb_private::ExecutionContextRef > ExecutionContextRefSP
Definition: lldb-forward.h:342