This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 4b27929 XFAIL TestNameLookup for GCC new cde848d Remove dependencies from Utility to Core and Target. new 84a197e Use StringRef and APFloat instead of lldb/StringConvert.h
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: include/lldb/Core/IOHandler.h | 3 ++- include/lldb/Core/Log.h | 2 +- include/lldb/Core/Opcode.h | 2 +- include/lldb/Core/RegisterValue.h | 2 +- include/lldb/Core/Section.h | 3 ++- include/lldb/Core/ValueObject.h | 3 ++- include/lldb/DataFormatters/ValueObjectPrinter.h | 3 ++- include/lldb/Interpreter/CommandObject.h | 3 ++- include/lldb/Interpreter/OptionValueString.h | 3 ++- include/lldb/Interpreter/Property.h | 3 ++- include/lldb/Symbol/DWARFCallFrameInfo.h | 3 ++- include/lldb/Symbol/ObjectContainer.h | 2 +- include/lldb/Symbol/ObjectFile.h | 2 +- .../Utility => include/lldb/Target}/ModuleCache.h | 6 +++--- include/lldb/Target/ProcessLaunchInfo.h | 3 ++- .../lldb/{Utility => Target}/ProcessStructReader.h | 7 +++---- include/lldb/{Utility => Target}/RegisterNumber.h | 4 ++-- include/lldb/Target/StackFrame.h | 3 ++- include/lldb/{Host => Utility}/Endian.h | 4 ++-- include/lldb/{Core => Utility}/Flags.h | 6 +++--- include/lldb/Utility/PseudoTerminal.h | 2 +- include/lldb/Utility/Stream.h | 3 ++- source/Core/ArchSpec.cpp | 2 +- source/Core/DataEncoder.cpp | 2 +- source/Core/DataExtractor.cpp | 2 +- source/Core/EmulateInstruction.cpp | 2 +- source/Core/Event.cpp | 2 +- source/Core/Opcode.cpp | 2 +- source/Core/Scalar.cpp | 2 +- source/Core/ValueObject.cpp | 2 +- source/Expression/DWARFExpression.cpp | 2 +- source/Expression/IRInterpreter.cpp | 2 +- source/Host/freebsd/Host.cpp | 2 +- source/Host/macosx/Host.mm | 4 ++-- source/Host/macosx/Symbols.cpp | 2 +- source/Host/netbsd/Host.cpp | 2 +- source/Interpreter/OptionValueProperties.cpp | 3 ++- .../Clang/ClangExpressionDeclMap.cpp | 2 +- .../Plugins/ExpressionParser/Clang/IRForTarget.cpp | 2 +- .../Plugins/Language/CPlusPlus/CxxStringTypes.cpp | 4 ++-- source/Plugins/Language/CPlusPlus/LibCxx.cpp | 4 ++-- source/Plugins/Language/CPlusPlus/LibCxxList.cpp | 2 +- source/Plugins/Language/CPlusPlus/LibCxxMap.cpp | 2 +- .../Language/CPlusPlus/LibCxxUnorderedMap.cpp | 2 +- source/Plugins/Language/CPlusPlus/LibStdcpp.cpp | 2 +- source/Plugins/Language/ObjC/CF.cpp | 2 +- source/Plugins/Language/ObjC/Cocoa.cpp | 4 ++-- source/Plugins/Language/ObjC/CoreMedia.cpp | 3 ++- source/Plugins/Language/ObjC/NSArray.cpp | 2 +- source/Plugins/Language/ObjC/NSDictionary.cpp | 2 +- source/Plugins/Language/ObjC/NSError.cpp | 5 ++--- source/Plugins/Language/ObjC/NSException.cpp | 5 ++--- source/Plugins/Language/ObjC/NSSet.cpp | 2 +- source/Plugins/Language/ObjC/NSString.cpp | 4 ++-- .../Process/Utility/RegisterContextDarwin_arm.cpp | 2 +- .../Utility/RegisterContextDarwin_arm64.cpp | 2 +- .../Process/Utility/RegisterContextDarwin_i386.cpp | 2 +- .../Utility/RegisterContextDarwin_x86_64.cpp | 2 +- .../Plugins/Process/Utility/RegisterContextLLDB.h | 2 +- .../Process/Utility/RegisterContextPOSIX_arm.cpp | 2 +- .../Process/Utility/RegisterContextPOSIX_arm64.cpp | 2 +- .../Utility/RegisterContextPOSIX_mips64.cpp | 2 +- .../Utility/RegisterContextPOSIX_powerpc.cpp | 2 +- .../Process/Utility/RegisterContextPOSIX_s390x.cpp | 2 +- .../Process/Utility/RegisterContextPOSIX_x86.cpp | 4 ++-- .../GDBRemoteCommunicationServerCommon.cpp | 2 +- .../GDBRemoteCommunicationServerLLGS.cpp | 2 +- .../ScriptInterpreter/Python/PythonDataObjects.h | 3 ++- source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 3 ++- .../SystemRuntime/MacOSX/SystemRuntimeMacOSX.cpp | 2 +- .../UnwindAssembly/x86/UnwindAssembly-x86.cpp | 2 +- source/Symbol/ArmUnwindInfo.cpp | 2 +- source/Symbol/ClangASTContext.cpp | 3 ++- source/Symbol/FuncUnwinders.cpp | 2 +- source/Target/CMakeLists.txt | 2 ++ source/{Utility => Target}/ModuleCache.cpp | 2 +- source/Target/Platform.cpp | 2 +- source/Target/RegisterContext.cpp | 2 +- source/{Utility => Target}/RegisterNumber.cpp | 2 +- source/Utility/CMakeLists.txt | 4 ---- source/Utility/Error.cpp | 1 - source/Utility/JSON.cpp | 21 ++++++++++----------- source/Utility/Stream.cpp | 2 +- source/Utility/UriParser.cpp | 1 + unittests/CMakeLists.txt | 1 + unittests/Core/ScalarTest.cpp | 2 +- unittests/Target/CMakeLists.txt | 14 ++++++++++++++ unittests/{Utility => Target}/Inputs/TestModule.c | 0 unittests/{Utility => Target}/ModuleCacheTest.cpp | 2 +- unittests/Utility/CMakeLists.txt | 6 ------ unittests/Utility/Inputs/TestModule.so | Bin 5602 -> 0 bytes 91 files changed, 141 insertions(+), 122 deletions(-) rename {source/Utility => include/lldb/Target}/ModuleCache.h (94%) rename include/lldb/{Utility => Target}/ProcessStructReader.h (96%) rename include/lldb/{Utility => Target}/RegisterNumber.h (96%) rename include/lldb/{Host => Utility}/Endian.h (92%) rename include/lldb/{Core => Utility}/Flags.h (98%) rename source/{Utility => Target}/ModuleCache.cpp (99%) rename source/{Utility => Target}/RegisterNumber.cpp (98%) create mode 100644 unittests/Target/CMakeLists.txt rename unittests/{Utility => Target}/Inputs/TestModule.c (100%) rename unittests/{Utility => Target}/ModuleCacheTest.cpp (99%) delete mode 100644 unittests/Utility/Inputs/TestModule.so