Eugene Zelenko | d70a6e7 | 2016-02-18 18:52:47 +0000 | [diff] [blame] | 1 | //===-- UnwindAssembly.cpp --------------------------------------*- C++ -*-===// |
Greg Clayton | 7be2542 | 2011-04-25 21:14:26 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Eugene Zelenko | d70a6e7 | 2016-02-18 18:52:47 +0000 | [diff] [blame] | 10 | // C Includes |
| 11 | // C++ Includes |
| 12 | // Other libraries and framework includes |
| 13 | // Project includes |
Greg Clayton | 7be2542 | 2011-04-25 21:14:26 +0000 | [diff] [blame] | 14 | #include "lldb/Target/UnwindAssembly.h" |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 15 | #include "lldb/Core/PluginInterface.h" |
| 16 | #include "lldb/Core/PluginManager.h" |
| 17 | #include "lldb/lldb-private.h" |
Greg Clayton | 7be2542 | 2011-04-25 21:14:26 +0000 | [diff] [blame] | 18 | |
| 19 | using namespace lldb; |
| 20 | using namespace lldb_private; |
| 21 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 22 | UnwindAssemblySP UnwindAssembly::FindPlugin(const ArchSpec &arch) { |
| 23 | UnwindAssemblyCreateInstance create_callback; |
Greg Clayton | 7be2542 | 2011-04-25 21:14:26 +0000 | [diff] [blame] | 24 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 25 | for (uint32_t idx = 0; |
| 26 | (create_callback = PluginManager::GetUnwindAssemblyCreateCallbackAtIndex( |
| 27 | idx)) != nullptr; |
| 28 | ++idx) { |
| 29 | UnwindAssemblySP assembly_profiler_ap(create_callback(arch)); |
| 30 | if (assembly_profiler_ap) |
| 31 | return assembly_profiler_ap; |
| 32 | } |
| 33 | return nullptr; |
Greg Clayton | 7be2542 | 2011-04-25 21:14:26 +0000 | [diff] [blame] | 34 | } |
| 35 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame^] | 36 | UnwindAssembly::UnwindAssembly(const ArchSpec &arch) : m_arch(arch) {} |
Greg Clayton | 7be2542 | 2011-04-25 21:14:26 +0000 | [diff] [blame] | 37 | |
Eugene Zelenko | d70a6e7 | 2016-02-18 18:52:47 +0000 | [diff] [blame] | 38 | UnwindAssembly::~UnwindAssembly() = default; |