summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/InstrumentationRuntime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Target/InstrumentationRuntime.cpp')
-rw-r--r--lldb/source/Target/InstrumentationRuntime.cpp98
1 files changed, 48 insertions, 50 deletions
diff --git a/lldb/source/Target/InstrumentationRuntime.cpp b/lldb/source/Target/InstrumentationRuntime.cpp
index 6b52416df3d..f3bc145f8b4 100644
--- a/lldb/source/Target/InstrumentationRuntime.cpp
+++ b/lldb/source/Target/InstrumentationRuntime.cpp
@@ -11,72 +11,70 @@
// C++ Includes
// Other libraries and framework includes
// Project includes
-#include "lldb/lldb-private.h"
-#include "lldb/Target/Process.h"
+#include "lldb/Target/InstrumentationRuntime.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/ModuleList.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/Core/RegularExpression.h"
-#include "lldb/Target/InstrumentationRuntime.h"
+#include "lldb/Target/Process.h"
+#include "lldb/lldb-private.h"
using namespace lldb;
using namespace lldb_private;
-void
-InstrumentationRuntime::ModulesDidLoad(lldb_private::ModuleList &module_list, lldb_private::Process *process, InstrumentationRuntimeCollection &runtimes)
-{
- InstrumentationRuntimeCreateInstance create_callback = nullptr;
- InstrumentationRuntimeGetType get_type_callback;
- for (uint32_t idx = 0; ; ++idx)
- {
- create_callback = PluginManager::GetInstrumentationRuntimeCreateCallbackAtIndex(idx);
- if (create_callback == nullptr)
- break;
- get_type_callback = PluginManager::GetInstrumentationRuntimeGetTypeCallbackAtIndex(idx);
- InstrumentationRuntimeType type = get_type_callback();
-
- InstrumentationRuntimeCollection::iterator pos;
- pos = runtimes.find (type);
- if (pos == runtimes.end()) {
- runtimes[type] = create_callback(process->shared_from_this());
- }
+void InstrumentationRuntime::ModulesDidLoad(
+ lldb_private::ModuleList &module_list, lldb_private::Process *process,
+ InstrumentationRuntimeCollection &runtimes) {
+ InstrumentationRuntimeCreateInstance create_callback = nullptr;
+ InstrumentationRuntimeGetType get_type_callback;
+ for (uint32_t idx = 0;; ++idx) {
+ create_callback =
+ PluginManager::GetInstrumentationRuntimeCreateCallbackAtIndex(idx);
+ if (create_callback == nullptr)
+ break;
+ get_type_callback =
+ PluginManager::GetInstrumentationRuntimeGetTypeCallbackAtIndex(idx);
+ InstrumentationRuntimeType type = get_type_callback();
+
+ InstrumentationRuntimeCollection::iterator pos;
+ pos = runtimes.find(type);
+ if (pos == runtimes.end()) {
+ runtimes[type] = create_callback(process->shared_from_this());
}
+ }
}
-void
-InstrumentationRuntime::ModulesDidLoad(lldb_private::ModuleList &module_list)
-{
- if (IsActive())
- return;
+void InstrumentationRuntime::ModulesDidLoad(
+ lldb_private::ModuleList &module_list) {
+ if (IsActive())
+ return;
- if (GetRuntimeModuleSP())
- {
- Activate();
- return;
- }
+ if (GetRuntimeModuleSP()) {
+ Activate();
+ return;
+ }
- module_list.ForEach([this](const lldb::ModuleSP module_sp) -> bool {
- const FileSpec &file_spec = module_sp->GetFileSpec();
- if (!file_spec)
- return true; // Keep iterating.
+ module_list.ForEach([this](const lldb::ModuleSP module_sp) -> bool {
+ const FileSpec &file_spec = module_sp->GetFileSpec();
+ if (!file_spec)
+ return true; // Keep iterating.
- const RegularExpression &runtime_regex = GetPatternForRuntimeLibrary();
- if (runtime_regex.Execute(file_spec.GetFilename().GetCString()) || module_sp->IsExecutable())
- {
- if (CheckIfRuntimeIsValid(module_sp))
- {
- SetRuntimeModuleSP(module_sp);
- Activate();
- return false; // Stop iterating, we're done.
- }
- }
+ const RegularExpression &runtime_regex = GetPatternForRuntimeLibrary();
+ if (runtime_regex.Execute(file_spec.GetFilename().GetCString()) ||
+ module_sp->IsExecutable()) {
+ if (CheckIfRuntimeIsValid(module_sp)) {
+ SetRuntimeModuleSP(module_sp);
+ Activate();
+ return false; // Stop iterating, we're done.
+ }
+ }
- return true;
- });
+ return true;
+ });
}
lldb::ThreadCollectionSP
-InstrumentationRuntime::GetBacktracesFromExtendedStopInfo(StructuredData::ObjectSP info)
-{
- return ThreadCollectionSP(new ThreadCollection());
+InstrumentationRuntime::GetBacktracesFromExtendedStopInfo(
+ StructuredData::ObjectSP info) {
+ return ThreadCollectionSP(new ThreadCollection());
}
OpenPOWER on IntegriCloud