lldb-private-interfaces.h revision 360784
1//===-- lldb-private-interfaces.h -------------------------------*- C++ -*-===//
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//===----------------------------------------------------------------------===//
8
9#ifndef liblldb_lldb_private_interfaces_h_
10#define liblldb_lldb_private_interfaces_h_
11
12#if defined(__cplusplus)
13
14#include "lldb/lldb-enumerations.h"
15#include "lldb/lldb-forward.h"
16#include "lldb/lldb-types.h"
17
18#include "lldb/lldb-private-enumerations.h"
19
20#include <set>
21
22namespace lldb_private {
23typedef lldb::ABISP (*ABICreateInstance)(lldb::ProcessSP process_sp, const ArchSpec &arch);
24typedef Disassembler *(*DisassemblerCreateInstance)(const ArchSpec &arch,
25                                                    const char *flavor);
26typedef DynamicLoader *(*DynamicLoaderCreateInstance)(Process *process,
27                                                      bool force);
28typedef lldb::JITLoaderSP (*JITLoaderCreateInstance)(Process *process,
29                                                     bool force);
30typedef ObjectContainer *(*ObjectContainerCreateInstance)(
31    const lldb::ModuleSP &module_sp, lldb::DataBufferSP &data_sp,
32    lldb::offset_t data_offset, const FileSpec *file, lldb::offset_t offset,
33    lldb::offset_t length);
34typedef size_t (*ObjectFileGetModuleSpecifications)(
35    const FileSpec &file, lldb::DataBufferSP &data_sp,
36    lldb::offset_t data_offset, lldb::offset_t file_offset,
37    lldb::offset_t length, ModuleSpecList &module_specs);
38typedef ObjectFile *(*ObjectFileCreateInstance)(const lldb::ModuleSP &module_sp,
39                                                lldb::DataBufferSP &data_sp,
40                                                lldb::offset_t data_offset,
41                                                const FileSpec *file,
42                                                lldb::offset_t file_offset,
43                                                lldb::offset_t length);
44typedef ObjectFile *(*ObjectFileCreateMemoryInstance)(
45    const lldb::ModuleSP &module_sp, lldb::DataBufferSP &data_sp,
46    const lldb::ProcessSP &process_sp, lldb::addr_t offset);
47typedef bool (*ObjectFileSaveCore)(const lldb::ProcessSP &process_sp,
48                                   const FileSpec &outfile, Status &error);
49typedef EmulateInstruction *(*EmulateInstructionCreateInstance)(
50    const ArchSpec &arch, InstructionType inst_type);
51typedef OperatingSystem *(*OperatingSystemCreateInstance)(Process *process,
52                                                          bool force);
53typedef Language *(*LanguageCreateInstance)(lldb::LanguageType language);
54typedef LanguageRuntime *(*LanguageRuntimeCreateInstance)(
55    Process *process, lldb::LanguageType language);
56typedef lldb::CommandObjectSP (*LanguageRuntimeGetCommandObject)(
57    CommandInterpreter &interpreter);
58typedef lldb::BreakpointPreconditionSP (
59    *LanguageRuntimeGetExceptionPrecondition)(lldb::LanguageType language,
60                                              bool throw_bp);
61typedef lldb::StructuredDataPluginSP (*StructuredDataPluginCreateInstance)(
62    Process &process);
63typedef Status (*StructuredDataFilterLaunchInfo)(ProcessLaunchInfo &launch_info,
64                                                 Target *target);
65typedef SystemRuntime *(*SystemRuntimeCreateInstance)(Process *process);
66typedef lldb::PlatformSP (*PlatformCreateInstance)(bool force,
67                                                   const ArchSpec *arch);
68typedef lldb::ProcessSP (*ProcessCreateInstance)(
69    lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
70    const FileSpec *crash_file_path);
71typedef lldb::ScriptInterpreterSP (*ScriptInterpreterCreateInstance)(
72    Debugger &debugger);
73typedef SymbolFile *(*SymbolFileCreateInstance)(lldb::ObjectFileSP objfile_sp);
74typedef SymbolVendor *(*SymbolVendorCreateInstance)(
75    const lldb::ModuleSP &module_sp,
76    lldb_private::Stream
77        *feedback_strm); // Module can be NULL for default system symbol vendor
78typedef bool (*BreakpointHitCallback)(void *baton,
79                                      StoppointCallbackContext *context,
80                                      lldb::user_id_t break_id,
81                                      lldb::user_id_t break_loc_id);
82typedef bool (*WatchpointHitCallback)(void *baton,
83                                      StoppointCallbackContext *context,
84                                      lldb::user_id_t watch_id);
85typedef bool (*ThreadPlanShouldStopHereCallback)(
86    ThreadPlan *current_plan, Flags &flags, lldb::FrameComparison operation,
87    Status &status, void *baton);
88typedef lldb::ThreadPlanSP (*ThreadPlanStepFromHereCallback)(
89    ThreadPlan *current_plan, Flags &flags, lldb::FrameComparison operation,
90    Status &status, void *baton);
91typedef UnwindAssembly *(*UnwindAssemblyCreateInstance)(const ArchSpec &arch);
92typedef lldb::MemoryHistorySP (*MemoryHistoryCreateInstance)(
93    const lldb::ProcessSP &process_sp);
94typedef lldb::InstrumentationRuntimeType (*InstrumentationRuntimeGetType)();
95typedef lldb::InstrumentationRuntimeSP (*InstrumentationRuntimeCreateInstance)(
96    const lldb::ProcessSP &process_sp);
97typedef lldb::TypeSystemSP (*TypeSystemCreateInstance)(
98    lldb::LanguageType language, Module *module, Target *target);
99typedef lldb::REPLSP (*REPLCreateInstance)(Status &error,
100                                           lldb::LanguageType language,
101                                           Debugger *debugger, Target *target,
102                                           const char *repl_options);
103typedef int (*ComparisonFunction)(const void *, const void *);
104typedef void (*DebuggerInitializeCallback)(Debugger &debugger);
105
106} // namespace lldb_private
107
108#endif // #if defined(__cplusplus)
109
110#endif // liblldb_lldb_private_interfaces_h_
111