clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
//===-- SBExecutionContext.h -----------------------------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLDB_API_SBEXECUTIONCONTEXT_H
|
|
#define LLDB_API_SBEXECUTIONCONTEXT_H
|
|
|
|
#include "lldb/API/SBDefines.h"
|
|
|
|
#include <cstdio>
|
|
#include <vector>
|
|
|
|
namespace lldb_private {
|
|
namespace python {
|
|
class SWIGBridge;
|
|
}
|
|
} // namespace lldb_private
|
|
|
|
namespace lldb {
|
|
|
|
class LLDB_API SBExecutionContext {
|
|
friend class SBCommandInterpreter;
|
|
|
|
public:
|
|
SBExecutionContext();
|
|
|
|
SBExecutionContext(const lldb::SBExecutionContext &rhs);
|
|
|
|
SBExecutionContext(const lldb::SBTarget &target);
|
|
|
|
SBExecutionContext(const lldb::SBProcess &process);
|
|
|
|
SBExecutionContext(lldb::SBThread thread); // can't be a const& because
|
|
// SBThread::get() isn't itself a
|
|
// const function
|
|
|
|
SBExecutionContext(const lldb::SBFrame &frame);
|
|
|
|
~SBExecutionContext();
|
|
|
|
const SBExecutionContext &operator=(const lldb::SBExecutionContext &rhs);
|
|
|
|
SBTarget GetTarget() const;
|
|
|
|
SBProcess GetProcess() const;
|
|
|
|
SBThread GetThread() const;
|
|
|
|
SBFrame GetFrame() const;
|
|
|
|
protected:
|
|
friend class lldb_private::python::SWIGBridge;
|
|
|
|
lldb_private::ExecutionContextRef *get() const;
|
|
|
|
SBExecutionContext(lldb::ExecutionContextRefSP exe_ctx_ref_sp);
|
|
|
|
private:
|
|
mutable lldb::ExecutionContextRefSP m_exe_ctx_sp;
|
|
};
|
|
|
|
} // namespace lldb
|
|
|
|
#endif // LLDB_API_SBEXECUTIONCONTEXT_H
|