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(ABIMips) 35LLDB_PLUGIN(ABIPowerPC) 36LLDB_PLUGIN(ABIRISCV) 37LLDB_PLUGIN(ABIX86) 38LLDB_PLUGIN(ArchitectureArm) 39LLDB_PLUGIN(ArchitectureMips) 40LLDB_PLUGIN(ArchitecturePPC64) 41LLDB_PLUGIN(ArchitectureAArch64) 42LLDB_PLUGIN(DisassemblerLLVMC) 43LLDB_PLUGIN(DynamicLoaderFreeBSDKernel) 44LLDB_PLUGIN(DynamicLoaderPosixDYLD) 45LLDB_PLUGIN(DynamicLoaderStatic) 46LLDB_PLUGIN(InstructionARM) 47LLDB_PLUGIN(InstructionARM64) 48LLDB_PLUGIN(InstructionMIPS) 49LLDB_PLUGIN(InstructionMIPS64) 50LLDB_PLUGIN(InstructionPPC64) 51LLDB_PLUGIN(InstructionRISCV) 52LLDB_PLUGIN(InstrumentationRuntimeASan) 53LLDB_PLUGIN(InstrumentationRuntimeASanLibsanitizers) 54LLDB_PLUGIN(InstrumentationRuntimeMainThreadChecker) 55LLDB_PLUGIN(InstrumentationRuntimeTSan) 56LLDB_PLUGIN(InstrumentationRuntimeUBSan) 57LLDB_PLUGIN(JITLoaderGDB) 58LLDB_PLUGIN(CPlusPlusLanguage) 59LLDB_PLUGIN(CXXItaniumABI) 60LLDB_PLUGIN(MemoryHistoryASan) 61LLDB_PLUGIN(ObjectContainerBSDArchive) 62LLDB_PLUGIN(ObjectFileBreakpad) 63LLDB_PLUGIN(ObjectFileELF) 64LLDB_PLUGIN(PlatformFreeBSD) 65LLDB_PLUGIN(PlatformGDB) 66LLDB_PLUGIN(PlatformQemuUser) 67LLDB_PLUGIN(ScriptedProcess) 68LLDB_PLUGIN(ProcessElfCore) 69LLDB_PLUGIN(ProcessFreeBSDKernel) 70LLDB_SCRIPT_PLUGIN(ScriptInterpreterNone) 71LLDB_SCRIPT_PLUGIN(ScriptInterpreterLua) 72LLDB_PLUGIN(SymbolFileBreakpad) 73LLDB_PLUGIN(SymbolFileDWARF) 74LLDB_PLUGIN(SymbolFileSymtab) 75LLDB_PLUGIN(SymbolLocatorDefault) 76LLDB_PLUGIN(SymbolLocatorDebuginfod) 77LLDB_PLUGIN(SymbolVendorELF) 78LLDB_PLUGIN(TypeSystemClang) 79LLDB_PLUGIN(UnwindAssemblyInstEmulation) 80LLDB_PLUGIN(UnwindAssemblyX86) 81LLDB_PLUGIN(ProcessGDBRemote) 82 83#undef LLDB_PLUGIN 84#undef LLDB_SCRIPT_PLUGIN 85