diff options
Diffstat (limited to 'lldb/source/Plugins')
21 files changed, 42 insertions, 42 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt index b4ba84a7fde..e29ddca343f 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(DynamicLoaderDarwinKernelProperties.inc -gen-lldb-property-defs + SOURCE DynamicLoaderDarwinKernelProperties.td TARGET LLDBPluginDynamicLoaderDarwinKernelPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(DynamicLoaderDarwinKernelPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE DynamicLoaderDarwinKernelProperties.td TARGET LLDBPluginDynamicLoaderDarwinKernelPropertiesEnumGen) add_lldb_library(lldbPluginDynamicLoaderDarwinKernel PLUGIN diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp index b6a98bcc5cd..51f128f9706 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp @@ -73,11 +73,11 @@ static constexpr OptionEnumValueElement g_kaslr_kernel_scan_enum_values[] = { "on 32-bit targets)."}}; #define LLDB_PROPERTIES_dynamicloaderdarwinkernel -#include "Properties.inc" +#include "DynamicLoaderDarwinKernelProperties.inc" enum { #define LLDB_PROPERTIES_dynamicloaderdarwinkernel -#include "PropertiesEnum.inc" +#include "DynamicLoaderDarwinKernelPropertiesEnum.inc" }; class DynamicLoaderDarwinKernelProperties : public Properties { diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/Properties.td b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernelProperties.td index 6c662d737fa..6c662d737fa 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/Properties.td +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernelProperties.td diff --git a/lldb/source/Plugins/JITLoader/GDB/CMakeLists.txt b/lldb/source/Plugins/JITLoader/GDB/CMakeLists.txt index 88e8fce4a6d..774d85b16a2 100644 --- a/lldb/source/Plugins/JITLoader/GDB/CMakeLists.txt +++ b/lldb/source/Plugins/JITLoader/GDB/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(JITLoaderGDBProperties.inc -gen-lldb-property-defs + SOURCE JITLoaderGDBProperties.td TARGET LLDBPluginJITLoaderGDBPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(JITLoaderGDBPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE JITLoaderGDBProperties.td TARGET LLDBPluginJITLoaderGDBPropertiesEnumGen) add_lldb_library(lldbPluginJITLoaderGDB PLUGIN diff --git a/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp index 08c134c984b..0593af4caad 100644 --- a/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp +++ b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp @@ -67,11 +67,11 @@ static constexpr OptionEnumValueElement g_enable_jit_loader_gdb_enumerators[] = }; #define LLDB_PROPERTIES_jitloadergdb -#include "Properties.inc" +#include "JITLoaderGDBProperties.inc" enum { #define LLDB_PROPERTIES_jitloadergdb -#include "PropertiesEnum.inc" +#include "JITLoaderGDBPropertiesEnum.inc" ePropertyEnableJITBreakpoint }; diff --git a/lldb/source/Plugins/JITLoader/GDB/Properties.td b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td index 0493838bc85..0493838bc85 100644 --- a/lldb/source/Plugins/JITLoader/GDB/Properties.td +++ b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDBProperties.td diff --git a/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt b/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt index d8fd2aafe71..49084dc6d4a 100644 --- a/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt +++ b/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(PlatformMacOSXProperties.inc -gen-lldb-property-defs + SOURCE PlatformMacOSXProperties.td TARGET LLDBPluginPlatformMacOSXPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(PlatformMacOSXPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE PlatformMacOSXProperties.td TARGET LLDBPluginPlatformMacOSXPropertiesEnumGen) list(APPEND PLUGIN_PLATFORM_MACOSX_SOURCES diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp index a196a5fabf4..7ca5397595c 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp @@ -178,11 +178,11 @@ const char *PlatformDarwinKernel::GetDescriptionStatic() { /// Code to handle the PlatformDarwinKernel settings #define LLDB_PROPERTIES_platformdarwinkernel -#include "Properties.inc" +#include "PlatformMacOSXProperties.inc" enum { #define LLDB_PROPERTIES_platformdarwinkernel -#include "PropertiesEnum.inc" +#include "PlatformMacOSXPropertiesEnum.inc" }; class PlatformDarwinKernelProperties : public Properties { diff --git a/lldb/source/Plugins/Platform/MacOSX/Properties.td b/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td index 07e4e3e81d8..07e4e3e81d8 100644 --- a/lldb/source/Plugins/Platform/MacOSX/Properties.td +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/CMakeLists.txt b/lldb/source/Plugins/Process/MacOSX-Kernel/CMakeLists.txt index 56720083631..ddce25c6204 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/CMakeLists.txt +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(ProcessKDPProperties.inc -gen-lldb-property-defs + SOURCE ProcessKDPProperties.td TARGET LLDBPluginProcessMacOSXKernelPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(ProcessKDPPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE ProcessKDPProperties.td TARGET LLDBPluginProcessMacOSXKernelPropertiesEnumGen) add_lldb_library(lldbPluginProcessMacOSXKernel PLUGIN diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp index 1782661edbe..491c0b012b0 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp @@ -53,11 +53,11 @@ using namespace lldb_private; namespace { #define LLDB_PROPERTIES_processkdp -#include "Properties.inc" +#include "ProcessKDPProperties.inc" enum { #define LLDB_PROPERTIES_processkdp -#include "PropertiesEnum.inc" +#include "ProcessKDPPropertiesEnum.inc" }; class PluginProperties : public Properties { diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/Properties.td b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td index 0063bdbec00..0063bdbec00 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/Properties.td +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td diff --git a/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt b/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt index 2e0b4a8041c..477f224b940 100644 --- a/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt +++ b/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(ProcessGDBRemoteProperties.inc -gen-lldb-property-defs + SOURCE ProcessGDBRemoteProperties.td TARGET LLDBPluginProcessGDBRemotePropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(ProcessGDBRemotePropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE ProcessGDBRemoteProperties.td TARGET LLDBPluginProcessGDBRemotePropertiesEnumGen) if (CMAKE_SYSTEM_NAME MATCHES "Darwin") diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 51670adc2a6..cd59fc1179b 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -111,11 +111,11 @@ void DumpProcessGDBRemotePacketHistory(void *p, const char *path) { namespace { #define LLDB_PROPERTIES_processgdbremote -#include "Properties.inc" +#include "ProcessGDBRemoteProperties.inc" enum { #define LLDB_PROPERTIES_processgdbremote -#include "PropertiesEnum.inc" +#include "ProcessGDBRemotePropertiesEnum.inc" }; class PluginProperties : public Properties { diff --git a/lldb/source/Plugins/Process/gdb-remote/Properties.td b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td index 16e7723e306..16e7723e306 100644 --- a/lldb/source/Plugins/Process/gdb-remote/Properties.td +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td diff --git a/lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt b/lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt index 0b921851aa1..7d1d03fe908 100644 --- a/lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt +++ b/lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(StructuredDataDarwinLogProperties.inc -gen-lldb-property-defs + SOURCE StructuredDataDarwinLogProperties.td TARGET LLDBPluginStructuredDataDarwinLogPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(StructuredDataDarwinLogPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE StructuredDataDarwinLogProperties.td TARGET LLDBPluginStructuredDataDarwinLogPropertiesEnumGen) add_lldb_library(lldbPluginStructuredDataDarwinLog PLUGIN diff --git a/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp b/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp index b05c389931e..3fa3f68227b 100644 --- a/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp +++ b/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp @@ -105,11 +105,11 @@ void SetGlobalEnableOptions(const DebuggerSP &debugger_sp, /// Code to handle the StructuredDataDarwinLog settings #define LLDB_PROPERTIES_darwinlog -#include "Properties.inc" +#include "StructuredDataDarwinLogProperties.inc" enum { #define LLDB_PROPERTIES_darwinlog -#include "PropertiesEnum.inc" +#include "StructuredDataDarwinLogPropertiesEnum.inc" }; class StructuredDataDarwinLogProperties : public Properties { diff --git a/lldb/source/Plugins/StructuredData/DarwinLog/Properties.td b/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td index 5c22158542f..5c22158542f 100644 --- a/lldb/source/Plugins/StructuredData/DarwinLog/Properties.td +++ b/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLogProperties.td diff --git a/lldb/source/Plugins/SymbolFile/DWARF/CMakeLists.txt b/lldb/source/Plugins/SymbolFile/DWARF/CMakeLists.txt index 1ca4be3ebea..c9db96b4f98 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/CMakeLists.txt +++ b/lldb/source/Plugins/SymbolFile/DWARF/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(SymbolFileDWARFProperties.inc -gen-lldb-property-defs + SOURCE SymbolFileDWARFProperties.td TARGET LLDBPluginSymbolFileDWARFPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(SymbolFileDWARFPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE SymbolFileDWARFProperties.td TARGET LLDBPluginSymbolFileDWARFPropertiesEnumGen) add_lldb_library(lldbPluginSymbolFileDWARF PLUGIN diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp index f24e403985a..f8ce1442698 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp @@ -114,11 +114,11 @@ using namespace lldb_private; namespace { #define LLDB_PROPERTIES_symbolfiledwarf -#include "Properties.inc" +#include "SymbolFileDWARFProperties.inc" enum { #define LLDB_PROPERTIES_symbolfiledwarf -#include "PropertiesEnum.inc" +#include "SymbolFileDWARFPropertiesEnum.inc" }; class PluginProperties : public Properties { diff --git a/lldb/source/Plugins/SymbolFile/DWARF/Properties.td b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td index ef6ae349858..ef6ae349858 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/Properties.td +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td |