//===-- JITLoader.h ---------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_TARGET_JITLOADER_H #define LLDB_TARGET_JITLOADER_H #include <vector> #include "lldb/Core/PluginInterface.h" #include "lldb/Target/JITLoaderList.h" namespace lldb_private { /// \class JITLoader JITLoader.h "lldb/Target/JITLoader.h" /// A plug-in interface definition class for JIT loaders. /// /// Plugins of this kind listen for code generated at runtime in the target. /// They are very similar to dynamic loader, with the difference that they do /// not have information about the target's dyld and that there may be /// multiple JITLoader plugins per process, while there is at most one /// DynamicLoader. class JITLoader : public PluginInterface { … }; } // namespace lldb_private #endif // LLDB_TARGET_JITLOADER_H