1 //===-- JITLoader.cpp -------------------------------------------*- C++ -*-===//
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 
10 // C Includes
11 // C++ Includes
12 // Other libraries and framework includes
13 // Project includes
14 #include "lldb/Target/JITLoader.h"
15 #include "lldb/Core/PluginManager.h"
16 #include "lldb/Target/JITLoaderList.h"
17 #include "lldb/Target/Process.h"
18 #include "lldb/lldb-private.h"
19 
20 using namespace lldb;
21 using namespace lldb_private;
22 
23 void JITLoader::LoadPlugins(Process *process, JITLoaderList &list) {
24   JITLoaderCreateInstance create_callback = nullptr;
25   for (uint32_t idx = 0;
26        (create_callback =
27             PluginManager::GetJITLoaderCreateCallbackAtIndex(idx)) != nullptr;
28        ++idx) {
29     JITLoaderSP instance_sp(create_callback(process, false));
30     if (instance_sp)
31       list.Append(std::move(instance_sp));
32   }
33 }
34 
35 JITLoader::JITLoader(Process *process) : m_process(process) {}
36 
37 JITLoader::~JITLoader() = default;
38