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(ABIMips)
36LLDB_PLUGIN(ABIMSP430)
37LLDB_PLUGIN(ABIPowerPC)
38LLDB_PLUGIN(ABIRISCV)
39LLDB_PLUGIN(ABISystemZ)
40LLDB_PLUGIN(ABIX86)
41LLDB_PLUGIN(ArchitectureArm)
42LLDB_PLUGIN(ArchitectureMips)
43LLDB_PLUGIN(ArchitecturePPC64)
44LLDB_PLUGIN(ArchitectureAArch64)
45LLDB_PLUGIN(DisassemblerLLVMC)
46LLDB_PLUGIN(DynamicLoaderDarwinKernel)
47LLDB_PLUGIN(DynamicLoaderFreeBSDKernel)
48LLDB_PLUGIN(DynamicLoaderMacOSXDYLD)
49LLDB_PLUGIN(DynamicLoaderPosixDYLD)
50LLDB_PLUGIN(DynamicLoaderStatic)
51LLDB_PLUGIN(DynamicLoaderHexagonDYLD)
52LLDB_PLUGIN(DynamicLoaderWindowsDYLD)
53LLDB_PLUGIN(DynamicLoaderWasmDYLD)
54LLDB_PLUGIN(InstructionARM)
55LLDB_PLUGIN(InstructionARM64)
56LLDB_PLUGIN(InstructionLoongArch)
57LLDB_PLUGIN(InstructionMIPS)
58LLDB_PLUGIN(InstructionMIPS64)
59LLDB_PLUGIN(InstructionPPC64)
60LLDB_PLUGIN(InstructionRISCV)
61LLDB_PLUGIN(InstrumentationRuntimeASan)
62LLDB_PLUGIN(InstrumentationRuntimeASanLibsanitizers)
63LLDB_PLUGIN(InstrumentationRuntimeMainThreadChecker)
64LLDB_PLUGIN(InstrumentationRuntimeTSan)
65LLDB_PLUGIN(InstrumentationRuntimeUBSan)
66LLDB_PLUGIN(JITLoaderGDB)
67LLDB_PLUGIN(CPlusPlusLanguage)
68LLDB_PLUGIN(ObjCLanguage)
69LLDB_PLUGIN(ObjCPlusPlusLanguage)
70LLDB_PLUGIN(CXXItaniumABI)
71LLDB_PLUGIN(AppleObjCRuntime)
72LLDB_PLUGIN(GNUstepObjCRuntime)
73LLDB_PLUGIN(MemoryHistoryASan)
74LLDB_PLUGIN(ObjectContainerBSDArchive)
75LLDB_PLUGIN(ObjectContainerMachOArchive)
76LLDB_PLUGIN(ObjectContainerMachOFileset)
77LLDB_PLUGIN(ObjectFileBreakpad)
78LLDB_PLUGIN(ObjectFileCOFF)
79LLDB_PLUGIN(ObjectFileELF)
80LLDB_PLUGIN(ObjectFileJSON)
81LLDB_PLUGIN(ObjectFileMachO)
82LLDB_PLUGIN(ObjectFileMinidump)
83LLDB_PLUGIN(ObjectFilePDB)
84LLDB_PLUGIN(ObjectFilePECOFF)
85LLDB_PLUGIN(ObjectFilePlaceholder)
86LLDB_PLUGIN(ObjectFileWasm)
87LLDB_PLUGIN(OperatingSystemPython)
88LLDB_PLUGIN(PlatformAndroid)
89LLDB_PLUGIN(PlatformFreeBSD)
90LLDB_PLUGIN(PlatformGDB)
91LLDB_PLUGIN(PlatformLinux)
92LLDB_PLUGIN(PlatformMacOSX)
93LLDB_PLUGIN(PlatformNetBSD)
94LLDB_PLUGIN(PlatformOpenBSD)
95LLDB_PLUGIN(PlatformQemuUser)
96LLDB_PLUGIN(PlatformWindows)
97LLDB_PLUGIN(ScriptedProcess)
98LLDB_PLUGIN(ProcessElfCore)
99LLDB_PLUGIN(ProcessMachCore)
100LLDB_PLUGIN(ProcessMinidump)
101LLDB_PLUGIN(ClangREPL)
102LLDB_PLUGIN(RegisterTypeBuilderClang)
103LLDB_SCRIPT_PLUGIN(ScriptInterpreterNone)
104LLDB_SCRIPT_PLUGIN(ScriptInterpreterPython)
105LLDB_PLUGIN(StructuredDataDarwinLog)
106LLDB_PLUGIN(SymbolFileBreakpad)
107LLDB_PLUGIN(SymbolFileCTF)
108LLDB_PLUGIN(SymbolFileDWARF)
109LLDB_PLUGIN(SymbolFileJSON)
110LLDB_PLUGIN(SymbolFilePDB)
111LLDB_PLUGIN(SymbolFileSymtab)
112LLDB_PLUGIN(SystemRuntimeMacOSX)
113LLDB_PLUGIN(SymbolLocatorDefault)
114LLDB_PLUGIN(SymbolLocatorDebuginfod)
115LLDB_PLUGIN(SymbolVendorELF)
116LLDB_PLUGIN(SymbolVendorPECOFF)
117LLDB_PLUGIN(SymbolVendorWasm)
118LLDB_PLUGIN(TraceExporterCTF)
119LLDB_PLUGIN(TypeSystemClang)
120LLDB_PLUGIN(UnwindAssemblyInstEmulation)
121LLDB_PLUGIN(UnwindAssemblyX86)
122
123
124LLDB_PLUGIN(ProcessGDBRemote)
125
126
127#undef LLDB_PLUGIN
128#undef LLDB_SCRIPT_PLUGIN
129

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