1/*===- lldb/source/Plugin/Plugins.def ---------------------------*- C++ -*-===*\
2|* *|
3|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
4|* Exceptions. *|
5|* See https://llvm.org/LICENSE.txt for license information. *|
6|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
7|* *|
8|*===----------------------------------------------------------------------===*|
9|* *|
10|* This file enumerates all of the plugins supported by this build of LLDB. *|
11|* Clients of this file should define the LLDB_PLUGIN macro to be a *|
12|* function-like macro with a single parameter (the name of the plugin) *|
13|* including this file will then enumerate all of the plugins. Script *|
14|* interpreter plugins can be enumerated separately by defining *|
15|* LLDB_SCRIPT_PLUGIN in which case they are not part of LLDB_PLUGIN. *|
16|* *|
17|* *|
18|* The set of plugins supported by LLDB is generated at configuration *|
19|* time, at which point this header is generated. Do not modify this *|
20|* header directly. *|
21|* *|
22\*===----------------------------------------------------------------------===*/
23
24#ifndef LLDB_PLUGIN
25# error Please define the macro LLDB_PLUGIN(PluginName)
26#endif
27
28#ifndef LLDB_SCRIPT_PLUGIN
29#define LLDB_SCRIPT_PLUGIN(p) LLDB_PLUGIN(p)
30#endif
31
32LLDB_PLUGIN(ABIAArch64)
33LLDB_PLUGIN(ABIARM)
34LLDB_PLUGIN(ABIHexagon)
35LLDB_PLUGIN(ABILoongArch)
36LLDB_PLUGIN(ABIMips)
37LLDB_PLUGIN(ABIMSP430)
38LLDB_PLUGIN(ABIPowerPC)
39LLDB_PLUGIN(ABIRISCV)
40LLDB_PLUGIN(ABISystemZ)
41LLDB_PLUGIN(ABIX86)
42LLDB_PLUGIN(ArchitectureArm)
43LLDB_PLUGIN(ArchitectureMips)
44LLDB_PLUGIN(ArchitecturePPC64)
45LLDB_PLUGIN(ArchitectureAArch64)
46LLDB_PLUGIN(DisassemblerLLVMC)
47LLDB_PLUGIN(DynamicLoaderDarwinKernel)
48LLDB_PLUGIN(DynamicLoaderFreeBSDKernel)
49LLDB_PLUGIN(DynamicLoaderMacOSXDYLD)
50LLDB_PLUGIN(DynamicLoaderPosixDYLD)
51LLDB_PLUGIN(DynamicLoaderStatic)
52LLDB_PLUGIN(DynamicLoaderHexagonDYLD)
53LLDB_PLUGIN(DynamicLoaderWindowsDYLD)
54LLDB_PLUGIN(DynamicLoaderWasmDYLD)
55LLDB_PLUGIN(InstructionARM)
56LLDB_PLUGIN(InstructionARM64)
57LLDB_PLUGIN(InstructionLoongArch)
58LLDB_PLUGIN(InstructionMIPS)
59LLDB_PLUGIN(InstructionMIPS64)
60LLDB_PLUGIN(InstructionPPC64)
61LLDB_PLUGIN(InstructionRISCV)
62LLDB_PLUGIN(InstrumentationRuntimeASan)
63LLDB_PLUGIN(InstrumentationRuntimeASanLibsanitizers)
64LLDB_PLUGIN(InstrumentationRuntimeMainThreadChecker)
65LLDB_PLUGIN(InstrumentationRuntimeTSan)
66LLDB_PLUGIN(InstrumentationRuntimeUBSan)
67LLDB_PLUGIN(JITLoaderGDB)
68LLDB_PLUGIN(CPlusPlusLanguage)
69LLDB_PLUGIN(ObjCLanguage)
70LLDB_PLUGIN(ObjCPlusPlusLanguage)
71LLDB_PLUGIN(CXXItaniumABI)
72LLDB_PLUGIN(AppleObjCRuntime)
73LLDB_PLUGIN(GNUstepObjCRuntime)
74LLDB_PLUGIN(MemoryHistoryASan)
75LLDB_PLUGIN(ObjectContainerBSDArchive)
76LLDB_PLUGIN(ObjectContainerMachOArchive)
77LLDB_PLUGIN(ObjectContainerMachOFileset)
78LLDB_PLUGIN(ObjectFileBreakpad)
79LLDB_PLUGIN(ObjectFileCOFF)
80LLDB_PLUGIN(ObjectFileELF)
81LLDB_PLUGIN(ObjectFileJSON)
82LLDB_PLUGIN(ObjectFileMachO)
83LLDB_PLUGIN(ObjectFileMinidump)
84LLDB_PLUGIN(ObjectFilePDB)
85LLDB_PLUGIN(ObjectFilePECOFF)
86LLDB_PLUGIN(ObjectFileXCOFF)
87LLDB_PLUGIN(ObjectFilePlaceholder)
88LLDB_PLUGIN(ObjectFileWasm)
89LLDB_PLUGIN(OperatingSystemPython)
90LLDB_PLUGIN(PlatformAIX)
91LLDB_PLUGIN(PlatformAndroid)
92LLDB_PLUGIN(PlatformFreeBSD)
93LLDB_PLUGIN(PlatformGDB)
94LLDB_PLUGIN(PlatformLinux)
95LLDB_PLUGIN(PlatformMacOSX)
96LLDB_PLUGIN(PlatformNetBSD)
97LLDB_PLUGIN(PlatformOpenBSD)
98LLDB_PLUGIN(PlatformQemuUser)
99LLDB_PLUGIN(PlatformWindows)
100LLDB_PLUGIN(ScriptedProcess)
101LLDB_PLUGIN(ProcessElfCore)
102LLDB_PLUGIN(ProcessMachCore)
103LLDB_PLUGIN(ProcessMinidump)
104LLDB_PLUGIN(ClangREPL)
105LLDB_PLUGIN(RegisterTypeBuilderClang)
106LLDB_SCRIPT_PLUGIN(ScriptInterpreterNone)
107LLDB_SCRIPT_PLUGIN(ScriptInterpreterPythonInterfaces)
108LLDB_SCRIPT_PLUGIN(ScriptInterpreterPython)
109LLDB_PLUGIN(StructuredDataDarwinLog)
110LLDB_PLUGIN(SymbolFileBreakpad)
111LLDB_PLUGIN(SymbolFileCTF)
112LLDB_PLUGIN(SymbolFileDWARF)
113LLDB_PLUGIN(SymbolFileJSON)
114LLDB_PLUGIN(SymbolFilePDB)
115LLDB_PLUGIN(SymbolFileSymtab)
116LLDB_PLUGIN(SystemRuntimeMacOSX)
117LLDB_PLUGIN(SymbolLocatorDebuginfod)
118LLDB_PLUGIN(SymbolLocatorDefault)
119LLDB_PLUGIN(SymbolVendorELF)
120LLDB_PLUGIN(SymbolVendorPECOFF)
121LLDB_PLUGIN(SymbolVendorWasm)
122LLDB_PLUGIN(TraceExporterCTF)
123LLDB_PLUGIN(TypeSystemClang)
124LLDB_PLUGIN(UnwindAssemblyInstEmulation)
125LLDB_PLUGIN(UnwindAssemblyX86)
126
127
128LLDB_PLUGIN(ProcessGDBRemote)
129
130
131#undef LLDB_PLUGIN
132#undef LLDB_SCRIPT_PLUGIN
133

source code of llvm_build/tools/lldb/source/Plugins/Plugins.def