This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from c338403fc Remove a project that was completed. new 9fcaaac59 Let tablegen generate property definitions new d26359b37 Mention adding predicates to settings in the projects page.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: CMakeLists.txt | 3 + docs/status/projects.rst | 14 + include/lldb/Core/CMakeLists.txt | 7 + include/lldb/Core/Properties.td | 379 +++++++++++++++++++++ include/lldb/Core/PropertiesBase.td | 49 +++ source/Core/CMakeLists.txt | 2 + source/Core/Debugger.cpp | 116 +------ source/Core/ModuleList.cpp | 25 +- source/Interpreter/CommandInterpreter.cpp | 48 +-- .../DynamicLoader/Darwin-Kernel/CMakeLists.txt | 12 + .../Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | 16 +- .../DynamicLoader/Darwin-Kernel/Properties.td | 13 + source/Plugins/JITLoader/GDB/CMakeLists.txt | 11 + source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp | 14 +- source/Plugins/JITLoader/GDB/Properties.td | 9 + source/Plugins/Platform/MacOSX/CMakeLists.txt | 14 +- .../Platform/MacOSX/PlatformDarwinKernel.cpp | 16 +- source/Plugins/Platform/MacOSX/Properties.td | 11 + .../Plugins/Process/MacOSX-Kernel/CMakeLists.txt | 12 + .../Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp | 12 +- source/Plugins/Process/MacOSX-Kernel/Properties.td | 8 + source/Plugins/Process/gdb-remote/CMakeLists.txt | 12 + .../Process/gdb-remote/ProcessGDBRemote.cpp | 38 +-- source/Plugins/Process/gdb-remote/Properties.td | 16 + .../StructuredData/DarwinLog/CMakeLists.txt | 12 + .../Plugins/StructuredData/DarwinLog/Properties.td | 12 + .../DarwinLog/StructuredDataDarwinLog.cpp | 31 +- source/Plugins/SymbolFile/DWARF/CMakeLists.txt | 12 + source/Plugins/SymbolFile/DWARF/Properties.td | 12 + .../Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 14 +- source/Target/CMakeLists.txt | 2 + source/Target/Platform.cpp | 12 +- source/Target/Process.cpp | 49 +-- source/Target/Target.cpp | 245 +------------ source/Target/Thread.cpp | 27 +- utils/TableGen/CMakeLists.txt | 1 + utils/TableGen/LLDBPropertyDefEmitter.cpp | 173 ++++++++++ utils/TableGen/LLDBTableGen.cpp | 28 +- utils/TableGen/LLDBTableGenBackends.h | 2 + 39 files changed, 920 insertions(+), 569 deletions(-) create mode 100644 include/lldb/Core/CMakeLists.txt create mode 100644 include/lldb/Core/Properties.td create mode 100644 include/lldb/Core/PropertiesBase.td create mode 100644 source/Plugins/DynamicLoader/Darwin-Kernel/Properties.td create mode 100644 source/Plugins/JITLoader/GDB/Properties.td create mode 100644 source/Plugins/Platform/MacOSX/Properties.td create mode 100644 source/Plugins/Process/MacOSX-Kernel/Properties.td create mode 100644 source/Plugins/Process/gdb-remote/Properties.td create mode 100644 source/Plugins/StructuredData/DarwinLog/Properties.td create mode 100644 source/Plugins/SymbolFile/DWARF/Properties.td create mode 100644 utils/TableGen/LLDBPropertyDefEmitter.cpp