forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExceptionBreakpoint.h
47 lines (37 loc) · 1.31 KB
/
ExceptionBreakpoint.h
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
//===-- ExceptionBreakpoint.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_TOOLS_LLDB_DAP_EXCEPTIONBREAKPOINT_H
#define LLDB_TOOLS_LLDB_DAP_EXCEPTIONBREAKPOINT_H
#include "DAPForward.h"
#include "lldb/API/SBBreakpoint.h"
#include "lldb/lldb-enumerations.h"
#include "llvm/ADT/StringRef.h"
#include <string>
#include <utility>
namespace lldb_dap {
class ExceptionBreakpoint {
public:
ExceptionBreakpoint(DAP &d, std::string f, std::string l,
lldb::LanguageType lang)
: m_dap(d), m_filter(std::move(f)), m_label(std::move(l)),
m_language(lang), m_bp() {}
void SetBreakpoint();
void ClearBreakpoint();
lldb::break_id_t GetID() const { return m_bp.GetID(); }
llvm::StringRef GetFilter() const { return m_filter; }
llvm::StringRef GetLabel() const { return m_label; }
static constexpr bool kDefaultValue = false;
protected:
DAP &m_dap;
std::string m_filter;
std::string m_label;
lldb::LanguageType m_language;
lldb::SBBreakpoint m_bp;
};
} // namespace lldb_dap
#endif