diff --git a/lldb/source/Core/CMakeLists.txt b/lldb/source/Core/CMakeLists.txt --- a/lldb/source/Core/CMakeLists.txt +++ b/lldb/source/Core/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(CoreProperties.inc -gen-lldb-property-defs + SOURCE CoreProperties.td TARGET LLDBCorePropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(CorePropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE CoreProperties.td TARGET LLDBCorePropertiesEnumGen) set(LLDB_CURSES_LIBS) diff --git a/lldb/source/Core/Properties.td b/lldb/source/Core/CoreProperties.td rename from lldb/source/Core/Properties.td rename to lldb/source/Core/CoreProperties.td diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -204,12 +204,12 @@ static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_debugger -#include "Properties.inc" +#include "CoreProperties.inc" }; enum { #define LLDB_PROPERTIES_debugger -#include "PropertiesEnum.inc" +#include "CorePropertiesEnum.inc" }; LoadPluginCallbackType Debugger::g_load_plugin_callback = nullptr; diff --git a/lldb/source/Core/ModuleList.cpp b/lldb/source/Core/ModuleList.cpp --- a/lldb/source/Core/ModuleList.cpp +++ b/lldb/source/Core/ModuleList.cpp @@ -67,12 +67,12 @@ static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_modulelist -#include "Properties.inc" +#include "CoreProperties.inc" }; enum { #define LLDB_PROPERTIES_modulelist -#include "PropertiesEnum.inc" +#include "CorePropertiesEnum.inc" }; } // namespace diff --git a/lldb/source/Interpreter/CMakeLists.txt b/lldb/source/Interpreter/CMakeLists.txt --- a/lldb/source/Interpreter/CMakeLists.txt +++ b/lldb/source/Interpreter/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(InterpreterProperties.inc -gen-lldb-property-defs + SOURCE InterpreterProperties.td TARGET LLDBInterpreterPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(InterpreterPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE InterpreterProperties.td TARGET LLDBInterpreterPropertiesEnumGen) add_lldb_library(lldbInterpreter @@ -70,4 +70,4 @@ if (NOT LLDB_DISABLE_LIBEDIT) target_include_directories(lldbInterpreter PRIVATE ${libedit_INCLUDE_DIRS}) -endif() \ No newline at end of file +endif() diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -91,12 +91,12 @@ static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_commandinterpreter -#include "Properties.inc" +#include "InterpreterProperties.inc" }; enum { #define LLDB_PROPERTIES_commandinterpreter -#include "PropertiesEnum.inc" +#include "InterpreterPropertiesEnum.inc" }; ConstString &CommandInterpreter::GetStaticBroadcasterClass() { diff --git a/lldb/source/Interpreter/Properties.td b/lldb/source/Interpreter/InterpreterProperties.td rename from lldb/source/Interpreter/Properties.td rename to lldb/source/Interpreter/InterpreterProperties.td diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt --- 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 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp @@ -74,12 +74,12 @@ static constexpr PropertyDefinition g_properties[] = { #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 rename from lldb/source/Plugins/DynamicLoader/Darwin-Kernel/Properties.td rename to 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 --- 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 --- a/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp +++ b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp @@ -68,12 +68,12 @@ static constexpr PropertyDefinition g_properties[] = { #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 rename from lldb/source/Plugins/JITLoader/GDB/Properties.td rename to 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 --- 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 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp @@ -179,12 +179,12 @@ static constexpr PropertyDefinition g_properties[] = { #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 rename from lldb/source/Plugins/Platform/MacOSX/Properties.td rename to 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 --- 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 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp @@ -54,12 +54,12 @@ static constexpr PropertyDefinition g_properties[] = { #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 rename from lldb/source/Plugins/Process/MacOSX-Kernel/Properties.td rename to 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 --- 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 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -112,12 +112,12 @@ static constexpr PropertyDefinition g_properties[] = { #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 rename from lldb/source/Plugins/Process/gdb-remote/Properties.td rename to 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 --- 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 --- a/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp +++ b/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp @@ -106,12 +106,12 @@ static constexpr PropertyDefinition g_properties[] = { #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 rename from lldb/source/Plugins/StructuredData/DarwinLog/Properties.td rename to 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 --- 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 --- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp +++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp @@ -115,12 +115,12 @@ static constexpr PropertyDefinition g_properties[] = { #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 rename from lldb/source/Plugins/SymbolFile/DWARF/Properties.td rename to lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td diff --git a/lldb/source/Target/CMakeLists.txt b/lldb/source/Target/CMakeLists.txt --- a/lldb/source/Target/CMakeLists.txt +++ b/lldb/source/Target/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(TargetProperties.inc -gen-lldb-property-defs + SOURCE TargetProperties.td TARGET LLDBTargetPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(TargetPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE TargetProperties.td TARGET LLDBTargetPropertiesEnumGen) add_lldb_library(lldbTarget diff --git a/lldb/source/Target/Platform.cpp b/lldb/source/Target/Platform.cpp --- a/lldb/source/Target/Platform.cpp +++ b/lldb/source/Target/Platform.cpp @@ -65,12 +65,12 @@ static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_platform -#include "Properties.inc" +#include "TargetProperties.inc" }; enum { #define LLDB_PROPERTIES_platform -#include "PropertiesEnum.inc" +#include "TargetPropertiesEnum.inc" }; } // namespace diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -114,12 +114,12 @@ static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_process -#include "Properties.inc" +#include "TargetProperties.inc" }; enum { #define LLDB_PROPERTIES_process -#include "PropertiesEnum.inc" +#include "TargetPropertiesEnum.inc" }; ProcessProperties::ProcessProperties(lldb_private::Process *process) diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp --- a/lldb/source/Target/Target.cpp +++ b/lldb/source/Target/Target.cpp @@ -3275,12 +3275,12 @@ static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_target -#include "Properties.inc" +#include "TargetProperties.inc" }; enum { #define LLDB_PROPERTIES_target -#include "PropertiesEnum.inc" +#include "TargetPropertiesEnum.inc" ePropertyExperimental, }; @@ -3358,12 +3358,12 @@ // TargetProperties static constexpr PropertyDefinition g_experimental_properties[]{ #define LLDB_PROPERTIES_experimental -#include "Properties.inc" +#include "Target/Properties.inc" }; enum { #define LLDB_PROPERTIES_experimental -#include "PropertiesEnum.inc" +#include "Target/PropertiesEnum.inc" }; class TargetExperimentalOptionValueProperties : public OptionValueProperties { diff --git a/lldb/source/Target/Properties.td b/lldb/source/Target/TargetProperties.td rename from lldb/source/Target/Properties.td rename to lldb/source/Target/TargetProperties.td diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -65,12 +65,12 @@ static constexpr PropertyDefinition g_properties[] = { #define LLDB_PROPERTIES_thread -#include "Properties.inc" +#include "TargetProperties.inc" }; enum { #define LLDB_PROPERTIES_thread -#include "PropertiesEnum.inc" +#include "TargetPropertiesEnum.inc" }; class ThreadOptionValueProperties : public OptionValueProperties {