Mercurial > hg > CbC > CbC_llvm
comparison lldb/source/Core/DynamicLoader.cpp @ 221:79ff65ed7e25
LLVM12 Original
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 15 Jun 2021 19:15:29 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
comparison
equal
deleted
inserted
replaced
220:42394fc6a535 | 221:79ff65ed7e25 |
---|---|
22 | 22 |
23 #include "llvm/ADT/StringRef.h" | 23 #include "llvm/ADT/StringRef.h" |
24 | 24 |
25 #include <memory> | 25 #include <memory> |
26 | 26 |
27 #include <assert.h> | 27 #include <cassert> |
28 | 28 |
29 using namespace lldb; | 29 using namespace lldb; |
30 using namespace lldb_private; | 30 using namespace lldb_private; |
31 | 31 |
32 DynamicLoader *DynamicLoader::FindPlugin(Process *process, | 32 DynamicLoader *DynamicLoader::FindPlugin(Process *process, |
58 return nullptr; | 58 return nullptr; |
59 } | 59 } |
60 | 60 |
61 DynamicLoader::DynamicLoader(Process *process) : m_process(process) {} | 61 DynamicLoader::DynamicLoader(Process *process) : m_process(process) {} |
62 | 62 |
63 DynamicLoader::~DynamicLoader() = default; | |
64 | |
65 // Accessosors to the global setting as to whether to stop at image (shared | 63 // Accessosors to the global setting as to whether to stop at image (shared |
66 // library) loading/unloading. | 64 // library) loading/unloading. |
67 | 65 |
68 bool DynamicLoader::GetStopWhenImagesChange() const { | 66 bool DynamicLoader::GetStopWhenImagesChange() const { |
69 return m_process->GetStopOnSharedLibraryEvents(); | 67 return m_process->GetStopOnSharedLibraryEvents(); |