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