[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / lldb / source / Target / UnwindAssembly.cpp
blob75f2b328cef88b8c20b138bcfd8a7859466db3b1
1 //===-- UnwindAssembly.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 //===----------------------------------------------------------------------===//
9 #include "lldb/Target/UnwindAssembly.h"
10 #include "lldb/Core/PluginInterface.h"
11 #include "lldb/Core/PluginManager.h"
12 #include "lldb/lldb-private.h"
14 using namespace lldb;
15 using namespace lldb_private;
17 UnwindAssemblySP UnwindAssembly::FindPlugin(const ArchSpec &arch) {
18 UnwindAssemblyCreateInstance create_callback;
20 for (uint32_t idx = 0;
21 (create_callback = PluginManager::GetUnwindAssemblyCreateCallbackAtIndex(
22 idx)) != nullptr;
23 ++idx) {
24 UnwindAssemblySP assembly_profiler_up(create_callback(arch));
25 if (assembly_profiler_up)
26 return assembly_profiler_up;
28 return nullptr;
31 UnwindAssembly::UnwindAssembly(const ArchSpec &arch) : m_arch(arch) {}