LLDB
mainline
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Variables
a
b
d
e
f
g
h
i
k
l
n
p
r
s
t
v
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
v
w
Enumerator
a
c
d
e
f
g
i
k
l
n
o
p
s
t
u
v
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Related Functions
:
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
_
a
b
c
d
e
g
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Typedefs
_
a
b
c
d
e
f
g
i
j
l
m
o
p
r
s
t
u
v
Enumerations
Enumerator
a
b
d
e
f
g
h
k
l
m
n
p
r
s
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
Examples
llvm-project
lldb
include
lldb
API
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
18
namespace
lldb_private
{
19
class
ScriptInterpreter;
20
namespace
python {
21
class
SWIGBridge;
22
}
23
}
// namespace lldb_private
24
25
namespace
lldb
{
26
27
class
LLDB_API
SBExecutionContext
{
28
friend
class
SBCommandInterpreter
;
29
30
public
:
31
SBExecutionContext
();
32
33
SBExecutionContext
(
const
lldb::SBExecutionContext
&rhs);
34
35
SBExecutionContext
(
const
lldb::SBTarget
&target);
36
37
SBExecutionContext
(
const
lldb::SBProcess
&process);
38
39
SBExecutionContext
(
lldb::SBThread
thread);
// can't be a const& because
40
// SBThread::get() isn't itself a
41
// const function
42
43
SBExecutionContext
(
const
lldb::SBFrame
&frame);
44
45
~SBExecutionContext
();
46
47
const
SBExecutionContext
&operator=(
const
lldb::SBExecutionContext
&rhs);
48
49
SBTarget
GetTarget()
const
;
50
51
SBProcess
GetProcess()
const
;
52
53
SBThread
GetThread()
const
;
54
55
SBFrame
GetFrame()
const
;
56
57
protected
:
58
friend
class
lldb_private::python::SWIGBridge;
59
friend
class
lldb_private::ScriptInterpreter
;
60
61
lldb_private::ExecutionContextRef
*get()
const
;
62
63
SBExecutionContext
(
lldb::ExecutionContextRefSP
exe_ctx_ref_sp);
64
65
private
:
66
mutable
lldb::ExecutionContextRefSP
m_exe_ctx_sp
;
67
};
68
69
}
// namespace lldb
70
71
#endif
// LLDB_API_SBEXECUTIONCONTEXT_H
SBDefines.h
LLDB_API
#define LLDB_API
Definition:
SBDefines.h:28
lldb::SBCommandInterpreter
Definition:
SBCommandInterpreter.h:24
lldb::SBExecutionContext
Definition:
SBExecutionContext.h:27
lldb::SBExecutionContext::~SBExecutionContext
~SBExecutionContext()
lldb::SBExecutionContext::m_exe_ctx_sp
lldb::ExecutionContextRefSP m_exe_ctx_sp
Definition:
SBExecutionContext.h:66
lldb::SBFrame
Definition:
SBFrame.h:26
lldb::SBProcess
Definition:
SBProcess.h:29
lldb::SBTarget
Definition:
SBTarget.h:37
lldb::SBThread
Definition:
SBThread.h:26
lldb_private::ExecutionContextRef
Execution context objects refer to objects in the execution of the program that is being debugged.
Definition:
ExecutionContext.h:72
lldb_private::ScriptInterpreter
Definition:
ScriptInterpreter.h:137
lldb_private
A class that represents a running process on the host machine.
Definition:
SBAddressRange.h:14
lldb
Definition:
SBAddress.h:15
lldb::ExecutionContextRefSP
std::shared_ptr< lldb_private::ExecutionContextRef > ExecutionContextRefSP
Definition:
lldb-forward.h:350
Generated on Wed Apr 2 2025 17:06:32 for LLDB by
1.9.6