65 lines · c
1//===-- InstrumentationRuntimeMainThreadChecker.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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_INSTRUMENTATIONRUNTIME_MAINTHREADCHECKER_INSTRUMENTATIONRUNTIMEMAINTHREADCHECKER_H10#define LLDB_SOURCE_PLUGINS_INSTRUMENTATIONRUNTIME_MAINTHREADCHECKER_INSTRUMENTATIONRUNTIMEMAINTHREADCHECKER_H11 12#include "lldb/Target/ABI.h"13#include "lldb/Target/InstrumentationRuntime.h"14#include "lldb/Utility/StructuredData.h"15#include "lldb/lldb-private.h"16 17namespace lldb_private {18 19class InstrumentationRuntimeMainThreadChecker20 : public lldb_private::InstrumentationRuntime {21public:22 ~InstrumentationRuntimeMainThreadChecker() override;23 24 static lldb::InstrumentationRuntimeSP25 CreateInstance(const lldb::ProcessSP &process_sp);26 27 static void Initialize();28 29 static void Terminate();30 31 static llvm::StringRef GetPluginNameStatic() { return "MainThreadChecker"; }32 33 static lldb::InstrumentationRuntimeType GetTypeStatic();34 35 llvm::StringRef GetPluginName() override { return GetPluginNameStatic(); }36 37 virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); }38 39 lldb::ThreadCollectionSP40 GetBacktracesFromExtendedStopInfo(StructuredData::ObjectSP info) override;41 42private:43 InstrumentationRuntimeMainThreadChecker(const lldb::ProcessSP &process_sp)44 : lldb_private::InstrumentationRuntime(process_sp) {}45 46 const RegularExpression &GetPatternForRuntimeLibrary() override;47 48 bool CheckIfRuntimeIsValid(const lldb::ModuleSP module_sp) override;49 50 void Activate() override;51 52 void Deactivate();53 54 static bool NotifyBreakpointHit(void *baton,55 StoppointCallbackContext *context,56 lldb::user_id_t break_id,57 lldb::user_id_t break_loc_id);58 59 StructuredData::ObjectSP RetrieveReportData(ExecutionContextRef exe_ctx_ref);60};61 62} // namespace lldb_private63 64#endif // LLDB_SOURCE_PLUGINS_INSTRUMENTATIONRUNTIME_MAINTHREADCHECKER_INSTRUMENTATIONRUNTIMEMAINTHREADCHECKER_H65