LLDB
mainline
llvm-project
lldb
source
Target
MemoryHistory.cpp
Go to the documentation of this file.
1
//===-- MemoryHistory.cpp -------------------------------------------------===//
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
#include "
lldb/Target/MemoryHistory.h
"
10
#include "
lldb/Core/PluginManager.h
"
11
12
using namespace
lldb
;
13
using namespace
lldb_private
;
14
15
lldb::MemoryHistorySP
MemoryHistory::FindPlugin
(
const
ProcessSP
process) {
16
MemoryHistoryCreateInstance
create_callback =
nullptr
;
17
18
for
(uint32_t idx = 0;
19
(create_callback =
PluginManager::GetMemoryHistoryCreateCallbackAtIndex
(
20
idx)) !=
nullptr
;
21
++idx) {
22
MemoryHistorySP
memory_history_sp(create_callback(process));
23
if
(memory_history_sp)
24
return
memory_history_sp;
25
}
26
27
return
MemoryHistorySP
();
28
}
MemoryHistory.h
PluginManager.h
lldb_private::MemoryHistory::FindPlugin
static lldb::MemoryHistorySP FindPlugin(const lldb::ProcessSP process)
Definition:
MemoryHistory.cpp:15
lldb_private::PluginManager::GetMemoryHistoryCreateCallbackAtIndex
static MemoryHistoryCreateInstance GetMemoryHistoryCreateCallbackAtIndex(uint32_t idx)
Definition:
PluginManager.cpp:1400
lldb_private
A class that represents a running process on the host machine.
Definition:
SBAddressRange.h:14
lldb_private::MemoryHistoryCreateInstance
lldb::MemoryHistorySP(* MemoryHistoryCreateInstance)(const lldb::ProcessSP &process_sp)
Definition:
lldb-private-interfaces.h:117
lldb
Definition:
SBAddress.h:15
lldb::MemoryHistorySP
std::shared_ptr< lldb_private::MemoryHistory > MemoryHistorySP
Definition:
lldb-forward.h:368
lldb::ProcessSP
std::shared_ptr< lldb_private::Process > ProcessSP
Definition:
lldb-forward.h:387
Generated on Tue Dec 3 2024 06:27:34 for LLDB by
1.9.6