]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / Target / InstrumentationRuntimeStopInfo.h
1 //===-- InstrumentationRuntimeStopInfo.h ------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef liblldb_InstrumentationRuntimeStopInfo_h_
10 #define liblldb_InstrumentationRuntimeStopInfo_h_
11
12 #include <string>
13
14 #include "lldb/Target/StopInfo.h"
15 #include "lldb/Utility/StructuredData.h"
16
17 namespace lldb_private {
18
19 class InstrumentationRuntimeStopInfo : public StopInfo {
20 public:
21   ~InstrumentationRuntimeStopInfo() override {}
22
23   lldb::StopReason GetStopReason() const override {
24     return lldb::eStopReasonInstrumentation;
25   }
26
27   const char *GetDescription() override;
28
29   bool DoShouldNotify(Event *event_ptr) override { return true; }
30
31   static lldb::StopInfoSP CreateStopReasonWithInstrumentationData(
32       Thread &thread, std::string description,
33       StructuredData::ObjectSP additional_data);
34
35 private:
36   InstrumentationRuntimeStopInfo(Thread &thread, std::string description,
37                                  StructuredData::ObjectSP additional_data);
38 };
39
40 } // namespace lldb_private
41
42 #endif // liblldb_InstrumentationRuntimeStopInfo_h_