1// $FreeBSD$ 2/*===- lldb/source/Plugin/Plugins.def ---------------------------*- C++ -*-===*\ 3|* *| 4|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *| 5|* Exceptions. *| 6|* See https://llvm.org/LICENSE.txt for license information. *| 7|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *| 8|* *| 9|*===----------------------------------------------------------------------===*| 10|* *| 11|* This file enumerates all of the plugins supported by this build of LLDB. *| 12|* Clients of this file should define the LLDB_PLUGIN macro to be a *| 13|* function-like macro with a single parameter (the name of the plugin) *| 14|* including this file will then enumerate all of the plugins. Script *| 15|* interpreter plugins can be enumerated separately by defining *| 16|* LLDB_SCRIPT_PLUGIN in which case they are not part of LLDB_PLUGIN. *| 17|* *| 18|* *| 19|* The set of plugins supported by LLDB is generated at configuration *| 20|* time, at which point this header is generated. Do not modify this *| 21|* header directly. *| 22|* *| 23\*===----------------------------------------------------------------------===*/ 24 25#ifndef LLDB_PLUGIN 26# error Please define the macro LLDB_PLUGIN(PluginName) 27#endif 28 29#ifndef LLDB_SCRIPT_PLUGIN 30#define LLDB_SCRIPT_PLUGIN(p) LLDB_PLUGIN(p) 31#endif 32 33LLDB_PLUGIN(ABIAArch64) 34LLDB_PLUGIN(ABIARM) 35LLDB_PLUGIN(ABIMips) 36LLDB_PLUGIN(ABIPowerPC) 37LLDB_PLUGIN(ABIX86) 38LLDB_PLUGIN(ArchitectureArm) 39LLDB_PLUGIN(ArchitectureMips) 40LLDB_PLUGIN(ArchitecturePPC64) 41LLDB_PLUGIN(DisassemblerLLVMC) 42LLDB_PLUGIN(DynamicLoaderPosixDYLD) 43LLDB_PLUGIN(DynamicLoaderStatic) 44LLDB_PLUGIN(InstructionARM) 45LLDB_PLUGIN(InstructionARM64) 46LLDB_PLUGIN(InstructionMIPS) 47LLDB_PLUGIN(InstructionMIPS64) 48LLDB_PLUGIN(InstructionPPC64) 49LLDB_PLUGIN(InstrumentationRuntimeASan) 50LLDB_PLUGIN(InstrumentationRuntimeMainThreadChecker) 51LLDB_PLUGIN(InstrumentationRuntimeTSan) 52LLDB_PLUGIN(InstrumentationRuntimeUBSan) 53LLDB_PLUGIN(JITLoaderGDB) 54LLDB_PLUGIN(CPlusPlusLanguage) 55LLDB_PLUGIN(CXXItaniumABI) 56LLDB_PLUGIN(MemoryHistoryASan) 57LLDB_PLUGIN(ObjectContainerBSDArchive) 58LLDB_PLUGIN(ObjectFileBreakpad) 59LLDB_PLUGIN(ObjectFileELF) 60LLDB_PLUGIN(ObjectFileJIT) 61LLDB_PLUGIN(PlatformFreeBSD) 62LLDB_PLUGIN(PlatformGDB) 63LLDB_PLUGIN(ProcessElfCore) 64LLDB_SCRIPT_PLUGIN(ScriptInterpreterNone) 65LLDB_SCRIPT_PLUGIN(ScriptInterpreterLua) 66LLDB_PLUGIN(SymbolFileBreakpad) 67LLDB_PLUGIN(SymbolFileDWARF) 68LLDB_PLUGIN(SymbolFileSymtab) 69LLDB_PLUGIN(SymbolVendorELF) 70LLDB_PLUGIN(TypeSystemClang) 71LLDB_PLUGIN(UnwindAssemblyInstEmulation) 72LLDB_PLUGIN(UnwindAssemblyX86) 73LLDB_PLUGIN(ProcessGDBRemote) 74 75#undef LLDB_PLUGIN 76#undef LLDB_SCRIPT_PLUGIN 77