mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 06:10:12 +00:00
Move RegisterValue,Scalar,State from Core to Utility
These three classes have no external dependencies, but they are used from various low-level APIs. Moving them down to Utility improves overall code layering (although it still does not break any particular dependency completely). The XCode project will need to be updated after this change. Differential Revision: https://reviews.llvm.org/D49740 llvm-svn: 339127
This commit is contained in:
parent
949a17c016
commit
d821c997aa
@ -10,9 +10,9 @@
|
||||
#ifndef liblldb_Value_h_
|
||||
#define liblldb_Value_h_
|
||||
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Symbol/CompilerType.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/lldb-enumerations.h" // for ByteOrder, ByteOrder::eB...
|
||||
#include "lldb/lldb-private-enumerations.h" // for AddressType
|
||||
|
@ -10,14 +10,14 @@
|
||||
#ifndef liblldb_ValueObjectRegister_h_
|
||||
#define liblldb_ValueObjectRegister_h_
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Symbol/CompilerType.h" // for CompilerType
|
||||
#include "lldb/Utility/ConstString.h" // for ConstString
|
||||
#include "lldb/lldb-defines.h" // for DISALLOW_COPY_AND_ASSIGN
|
||||
#include "lldb/lldb-enumerations.h" // for ValueType, ValueType::eValueTy...
|
||||
#include "lldb/lldb-forward.h" // for RegisterContextSP, ValueObjectSP
|
||||
#include "lldb/lldb-private-types.h" // for RegisterInfo, RegisterSet (ptr...
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/lldb-defines.h" // for DISALLOW_COPY_AND_ASSIGN
|
||||
#include "lldb/lldb-enumerations.h" // for ValueType, ValueType::eValueTy...
|
||||
#include "lldb/lldb-forward.h" // for RegisterContextSP, ValueObjectSP
|
||||
#include "lldb/lldb-private-types.h" // for RegisterInfo, RegisterSet (ptr...
|
||||
|
||||
#include <stddef.h> // for size_t
|
||||
#include <stdint.h> // for uint32_t, uint64_t, int32_t
|
||||
|
@ -12,8 +12,8 @@
|
||||
|
||||
#include "lldb/Core/Address.h"
|
||||
#include "lldb/Core/Disassembler.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/lldb-private.h"
|
||||
#include <functional>
|
||||
|
@ -19,11 +19,11 @@
|
||||
// Project includes
|
||||
#include "lldb/Utility/Flags.h"
|
||||
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/ValueObjectList.h"
|
||||
#include "lldb/Symbol/SymbolContext.h"
|
||||
#include "lldb/Target/ExecutionContextScope.h"
|
||||
#include "lldb/Target/StackID.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
#include "lldb/Utility/UserID.h"
|
||||
|
@ -15,9 +15,9 @@
|
||||
// C++ Includes
|
||||
// Other libraries and framework includes
|
||||
// Project includes
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Symbol/TaggedASTType.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/lldb-private.h"
|
||||
|
||||
namespace lldb_private {
|
||||
|
@ -7,31 +7,23 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef lldb_RegisterValue_h
|
||||
#define lldb_RegisterValue_h
|
||||
#ifndef LLDB_UTILITY_REGISTERVALUE_H
|
||||
#define LLDB_UTILITY_REGISTERVALUE_H
|
||||
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Utility/Endian.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
#include "lldb/lldb-enumerations.h" // for ByteOrder, Format
|
||||
#include "lldb/lldb-types.h" // for offset_t
|
||||
|
||||
#include "llvm/ADT/APInt.h"
|
||||
#include "llvm/ADT/StringRef.h" // for StringRef
|
||||
|
||||
#include <stdint.h> // for uint32_t, uint8_t, uint64_t, uin...
|
||||
#include <string.h>
|
||||
#include <cstdint> // for uint32_t, uint8_t, uint64_t, uin...
|
||||
#include <cstring>
|
||||
|
||||
namespace lldb_private {
|
||||
class DataExtractor;
|
||||
}
|
||||
namespace lldb_private {
|
||||
class Stream;
|
||||
}
|
||||
namespace lldb_private {
|
||||
struct RegisterInfo;
|
||||
}
|
||||
namespace lldb_private {
|
||||
|
||||
class RegisterValue {
|
||||
public:
|
||||
@ -276,4 +268,4 @@ protected:
|
||||
|
||||
} // namespace lldb_private
|
||||
|
||||
#endif // lldb_RegisterValue_h
|
||||
#endif // LLDB_UTILITY_REGISTERVALUE_H
|
@ -7,25 +7,21 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef liblldb_Scalar_h_
|
||||
#define liblldb_Scalar_h_
|
||||
#ifndef LLDB_UTILITY_SCALAR_H
|
||||
#define LLDB_UTILITY_SCALAR_H
|
||||
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
#include "lldb/lldb-enumerations.h" // for Encoding, ByteOrder
|
||||
#include "lldb/lldb-private-types.h" // for type128
|
||||
|
||||
#include "llvm/ADT/APFloat.h"
|
||||
#include "llvm/ADT/APInt.h"
|
||||
|
||||
#include <stddef.h> // for size_t
|
||||
#include <stdint.h> // for uint32_t, uint64_t, int64_t
|
||||
#include <cstddef> // for size_t
|
||||
#include <cstdint> // for uint32_t, uint64_t, int64_t
|
||||
|
||||
namespace lldb_private {
|
||||
class DataExtractor;
|
||||
}
|
||||
namespace lldb_private {
|
||||
class Stream;
|
||||
}
|
||||
} // namespace lldb_private
|
||||
|
||||
#define NUM_OF_WORDS_INT128 2
|
||||
#define BITWIDTH_INT128 128
|
||||
@ -375,4 +371,4 @@ bool operator>=(const Scalar &lhs, const Scalar &rhs);
|
||||
|
||||
} // namespace lldb_private
|
||||
|
||||
#endif // liblldb_Scalar_h_
|
||||
#endif // LLDB_UTILITY_SCALAR_H
|
@ -7,16 +7,14 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef liblldb_State_h_
|
||||
#define liblldb_State_h_
|
||||
#ifndef LLDB_UTILITY_STATE_H
|
||||
#define LLDB_UTILITY_STATE_H
|
||||
|
||||
#include "lldb/lldb-enumerations.h" // for StateType
|
||||
#include "llvm/ADT/StringRef.h" // for StringRef
|
||||
#include "llvm/Support/FormatProviders.h"
|
||||
|
||||
#include "lldb/lldb-enumerations.h" // for StateType
|
||||
#include "llvm/ADT/StringRef.h" // for StringRef
|
||||
#include "llvm/Support/raw_ostream.h" // for raw_ostream
|
||||
|
||||
#include <stdint.h> // for uint32_t
|
||||
#include <cstdint> // for uint32_t
|
||||
|
||||
namespace lldb_private {
|
||||
|
||||
@ -80,6 +78,6 @@ template <> struct format_provider<lldb::StateType> {
|
||||
Stream << lldb_private::StateAsCString(state);
|
||||
}
|
||||
};
|
||||
}
|
||||
} // namespace llvm
|
||||
|
||||
#endif // liblldb_State_h_
|
||||
#endif // LLDB_UTILITY_STATE_H
|
@ -41,7 +41,6 @@
|
||||
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Core/StructuredDataImpl.h"
|
||||
#include "lldb/DataFormatters/DataVisualization.h"
|
||||
@ -53,6 +52,7 @@
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/TargetList.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
@ -18,7 +18,6 @@
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Target/MemoryRegionInfo.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
@ -28,6 +27,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
|
||||
// Project includes
|
||||
|
@ -14,7 +14,6 @@
|
||||
#include "lldb/API/SBSymbolContext.h"
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Target/ThreadPlanStepOut.h"
|
||||
#include "lldb/Target/ThreadPlanStepRange.h"
|
||||
#include "lldb/Target/UnixSignals.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "lldb/Utility/StructuredData.h"
|
||||
|
||||
|
@ -14,7 +14,6 @@
|
||||
#include "lldb/API/SBSymbolContext.h"
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
#include "lldb/Symbol/CompileUnit.h"
|
||||
@ -31,6 +30,7 @@
|
||||
#include "lldb/Target/ThreadPlanStepInstruction.h"
|
||||
#include "lldb/Target/ThreadPlanStepOut.h"
|
||||
#include "lldb/Target/ThreadPlanStepRange.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "lldb/Utility/StructuredData.h"
|
||||
|
||||
|
@ -18,7 +18,6 @@
|
||||
|
||||
#include "lldb/Breakpoint/Watchpoint.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
@ -38,6 +37,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
|
||||
#include "lldb/API/SBDebugger.h"
|
||||
|
@ -18,13 +18,13 @@
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Breakpoint/StoppointCallbackContext.h"
|
||||
#include "lldb/Core/IOHandler.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/OptionParser.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
#include "lldb/Interpreter/CommandReturnObject.h"
|
||||
#include "lldb/Interpreter/OptionArgParser.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include "lldb/Breakpoint/BreakpointSite.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/OptionParser.h"
|
||||
#include "lldb/Host/StringConvert.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Target/UnixSignals.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
@ -10,8 +10,6 @@
|
||||
#include "CommandObjectRegister.h"
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/DumpRegisterValue.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Host/OptionParser.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
#include "lldb/Interpreter/CommandReturnObject.h"
|
||||
@ -27,6 +25,8 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "llvm/Support/Errno.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -15,7 +15,6 @@
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/DataFormatters/ValueObjectPrinter.h"
|
||||
#include "lldb/Host/OptionParser.h"
|
||||
@ -51,6 +50,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Target/ThreadSpec.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Timer.h"
|
||||
|
||||
#include "llvm/Support/FileSystem.h"
|
||||
|
@ -14,7 +14,6 @@
|
||||
// Other libraries and framework includes
|
||||
// Project includes
|
||||
#include "lldb/Core/SourceManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/OptionParser.h"
|
||||
@ -37,6 +36,7 @@
|
||||
#include "lldb/Target/ThreadPlanStepInstruction.h"
|
||||
#include "lldb/Target/ThreadPlanStepOut.h"
|
||||
#include "lldb/Target/ThreadPlanStepRange.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/lldb-private.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -18,7 +18,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/IOHandler.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/DataFormatters/DataVisualization.h"
|
||||
#include "lldb/Host/OptionParser.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
@ -39,6 +38,7 @@
|
||||
#include "lldb/Target/ThreadList.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/RegularExpression.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/StringList.h"
|
||||
|
||||
// Other libraries and framework includes
|
||||
|
@ -18,13 +18,13 @@
|
||||
#include "lldb/Breakpoint/StoppointCallbackContext.h"
|
||||
#include "lldb/Breakpoint/Watchpoint.h"
|
||||
#include "lldb/Core/IOHandler.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/OptionParser.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
#include "lldb/Interpreter/CommandReturnObject.h"
|
||||
#include "lldb/Interpreter/OptionArgParser.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
@ -34,12 +34,9 @@ add_lldb_library(lldbCore
|
||||
ModuleList.cpp
|
||||
Opcode.cpp
|
||||
PluginManager.cpp
|
||||
RegisterValue.cpp
|
||||
Scalar.cpp
|
||||
SearchFilter.cpp
|
||||
Section.cpp
|
||||
SourceManager.cpp
|
||||
State.cpp
|
||||
StreamAsynchronousIO.cpp
|
||||
StreamFile.cpp
|
||||
UserSettingsController.cpp
|
||||
|
@ -12,11 +12,10 @@
|
||||
#include "lldb/Breakpoint/Breakpoint.h" // for Breakpoint, Brea...
|
||||
#include "lldb/Core/Event.h" // for Event, EventData...
|
||||
#include "lldb/Core/FormatEntity.h"
|
||||
#include "lldb/Core/Listener.h" // for Listener
|
||||
#include "lldb/Core/Mangled.h" // for Mangled
|
||||
#include "lldb/Core/ModuleList.h" // for Mangled
|
||||
#include "lldb/Core/Listener.h" // for Listener
|
||||
#include "lldb/Core/Mangled.h" // for Mangled
|
||||
#include "lldb/Core/ModuleList.h" // for Mangled
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/StreamAsynchronousIO.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/DataFormatters/DataVisualization.h"
|
||||
@ -43,7 +42,8 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Target/ThreadList.h" // for ThreadList
|
||||
#include "lldb/Utility/AnsiTerminal.h"
|
||||
#include "lldb/Utility/Log.h" // for LLDB_LOG_OPTION_...
|
||||
#include "lldb/Utility/Log.h" // for LLDB_LOG_OPTION_...
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Stream.h" // for Stream
|
||||
#include "lldb/Utility/StreamCallback.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
@ -9,8 +9,8 @@
|
||||
|
||||
#include "lldb/Core/DumpRegisterValue.h"
|
||||
#include "lldb/Core/DumpDataExtractor.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
#include "lldb/lldb-private-types.h"
|
||||
|
||||
|
@ -12,7 +12,6 @@
|
||||
#include "lldb/Core/Address.h"
|
||||
#include "lldb/Core/DumpRegisterValue.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
@ -20,6 +19,7 @@
|
||||
#include "lldb/Target/StackFrame.h" // for StackFrame
|
||||
#include "lldb/Utility/ConstString.h" // for ConstString
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/Stream.h" // for Stream, Stream::::eBinary
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
@ -14,7 +14,6 @@
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/DumpRegisterValue.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/RegisterValue.h" // for RegisterValue
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/DataFormatters/DataVisualization.h"
|
||||
@ -45,9 +44,10 @@
|
||||
#include "lldb/Utility/ArchSpec.h" // for ArchSpec
|
||||
#include "lldb/Utility/ConstString.h" // for ConstString, oper...
|
||||
#include "lldb/Utility/FileSpec.h"
|
||||
#include "lldb/Utility/Log.h" // for Log
|
||||
#include "lldb/Utility/Logging.h" // for GetLogIfAllCatego...
|
||||
#include "lldb/Utility/SharingPtr.h" // for SharingPtr
|
||||
#include "lldb/Utility/Log.h" // for Log
|
||||
#include "lldb/Utility/Logging.h" // for GetLogIfAllCatego...
|
||||
#include "lldb/Utility/RegisterValue.h" // for RegisterValue
|
||||
#include "lldb/Utility/SharingPtr.h" // for SharingPtr
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
#include "lldb/Utility/StringList.h" // for StringList
|
||||
|
@ -40,7 +40,6 @@
|
||||
#ifndef LLDB_DISABLE_CURSES
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Core/ValueObjectRegister.h"
|
||||
#include "lldb/Symbol/Block.h"
|
||||
@ -53,6 +52,7 @@
|
||||
#include "lldb/Target/StopInfo.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#endif
|
||||
|
||||
#include "llvm/ADT/StringRef.h" // for StringRef
|
||||
|
@ -9,9 +9,8 @@
|
||||
|
||||
#include "lldb/Core/Value.h"
|
||||
|
||||
#include "lldb/Core/Address.h" // for Address
|
||||
#include "lldb/Core/Address.h" // for Address
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Symbol/CompilerType.h"
|
||||
#include "lldb/Symbol/ObjectFile.h"
|
||||
#include "lldb/Symbol/SymbolContext.h"
|
||||
@ -26,6 +25,7 @@
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Endian.h" // for InlHostByteOrder
|
||||
#include "lldb/Utility/FileSpec.h" // for FileSpec
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "lldb/lldb-defines.h" // for LLDB_INVALID_ADDRESS
|
||||
#include "lldb/lldb-forward.h" // for DataBufferSP, ModuleSP
|
||||
|
@ -11,7 +11,6 @@
|
||||
|
||||
#include "lldb/Core/Address.h" // for Address
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/Scalar.h" // for Scalar
|
||||
#include "lldb/Core/ValueObjectCast.h"
|
||||
#include "lldb/Core/ValueObjectChild.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
@ -20,7 +19,7 @@
|
||||
#include "lldb/Core/ValueObjectSyntheticFilter.h"
|
||||
#include "lldb/DataFormatters/DataVisualization.h"
|
||||
#include "lldb/DataFormatters/DumpValueObjectOptions.h" // for DumpValueObj...
|
||||
#include "lldb/DataFormatters/FormatManager.h" // for FormatManager
|
||||
#include "lldb/DataFormatters/FormatManager.h" // for FormatManager
|
||||
#include "lldb/DataFormatters/StringPrinter.h"
|
||||
#include "lldb/DataFormatters/TypeFormat.h" // for TypeFormatImpl_F...
|
||||
#include "lldb/DataFormatters/TypeSummary.h" // for TypeSummaryOptions
|
||||
@ -47,6 +46,7 @@
|
||||
#include "lldb/Utility/Flags.h" // for Flags
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Logging.h" // for GetLogIfAllCateg...
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar
|
||||
#include "lldb/Utility/SharingPtr.h" // for SharingPtr
|
||||
#include "lldb/Utility/Stream.h" // for Stream
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
@ -9,11 +9,11 @@
|
||||
|
||||
#include "lldb/Core/ValueObjectCast.h"
|
||||
|
||||
#include "lldb/Core/Scalar.h" // for operator!=, Scalar
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Symbol/CompilerType.h"
|
||||
#include "lldb/Target/ExecutionContext.h"
|
||||
#include "lldb/Utility/Scalar.h" // for operator!=, Scalar
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
|
||||
namespace lldb_private {
|
||||
|
@ -9,12 +9,12 @@
|
||||
|
||||
#include "lldb/Core/ValueObjectChild.h"
|
||||
|
||||
#include "lldb/Core/Scalar.h" // for Scalar
|
||||
#include "lldb/Core/Value.h" // for Value, Value::ValueType::e...
|
||||
#include "lldb/Core/Value.h" // for Value, Value::ValueType::e...
|
||||
#include "lldb/Symbol/CompilerType.h"
|
||||
#include "lldb/Target/ExecutionContext.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Utility/Flags.h" // for Flags
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
#include "lldb/lldb-forward.h" // for ProcessSP, ModuleSP
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
|
||||
#include "lldb/Core/Scalar.h" // for Scalar
|
||||
#include "lldb/Core/ValueObjectDynamicValue.h"
|
||||
#include "lldb/Symbol/CompilerType.h"
|
||||
#include "lldb/Target/ExecutionContext.h"
|
||||
@ -18,6 +17,7 @@
|
||||
#include "lldb/Utility/DataBuffer.h" // for DataBuffer
|
||||
#include "lldb/Utility/DataBufferHeap.h" // for DataBufferHeap
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar
|
||||
|
||||
namespace lldb_private {
|
||||
class Module;
|
||||
|
@ -9,7 +9,6 @@
|
||||
|
||||
#include "lldb/Core/ValueObjectConstResultImpl.h"
|
||||
|
||||
#include "lldb/Core/Scalar.h" // for Scalar
|
||||
#include "lldb/Core/Value.h" // for Value, Value::Val...
|
||||
#include "lldb/Core/ValueObject.h" // for ValueObject
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
@ -19,6 +18,7 @@
|
||||
#include "lldb/Target/ExecutionContext.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h" // for DataBufferHeap
|
||||
#include "lldb/Utility/Endian.h" // for InlHostByteOrder
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar
|
||||
#include "lldb/Utility/SharingPtr.h" // for SharingPtr
|
||||
|
||||
#include <string> // for string
|
||||
|
@ -8,7 +8,6 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Core/ValueObjectDynamicValue.h"
|
||||
#include "lldb/Core/Scalar.h" // for Scalar, operator!=
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Symbol/CompilerType.h"
|
||||
@ -20,6 +19,7 @@
|
||||
#include "lldb/Utility/DataExtractor.h" // for DataExtractor
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Logging.h" // for GetLogIfAllCategoriesSet
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar, operator!=
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
#include "lldb/lldb-types.h" // for addr_t, offset_t
|
||||
|
||||
|
@ -8,13 +8,13 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
#include "lldb/Core/Scalar.h" // for Scalar, operator!=
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Symbol/Type.h"
|
||||
#include "lldb/Target/ExecutionContext.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/DataExtractor.h" // for DataExtractor
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar, operator!=
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
#include "lldb/lldb-types.h" // for addr_t
|
||||
#include "llvm/Support/ErrorHandling.h" // for llvm_unreachable
|
||||
|
@ -10,8 +10,7 @@
|
||||
#include "lldb/Core/ValueObjectRegister.h"
|
||||
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/Scalar.h" // for Scalar
|
||||
#include "lldb/Core/Value.h" // for Value, Value::ContextType:...
|
||||
#include "lldb/Core/Value.h" // for Value, Value::ContextType:...
|
||||
#include "lldb/Symbol/CompilerType.h"
|
||||
#include "lldb/Symbol/TypeSystem.h" // for TypeSystem
|
||||
#include "lldb/Target/ExecutionContext.h"
|
||||
@ -20,6 +19,7 @@
|
||||
#include "lldb/Target/StackFrame.h" // for StackFrame
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/DataExtractor.h" // for DataExtractor
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
#include "lldb/Utility/Stream.h" // for Stream
|
||||
|
||||
|
@ -12,8 +12,6 @@
|
||||
#include "lldb/Core/Address.h" // for Address
|
||||
#include "lldb/Core/AddressRange.h" // for AddressRange
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h" // for Scalar, operator!=
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Expression/DWARFExpression.h" // for DWARFExpression
|
||||
#include "lldb/Symbol/Declaration.h" // for Declaration
|
||||
@ -27,7 +25,9 @@
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/RegisterContext.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/DataExtractor.h" // for DataExtractor
|
||||
#include "lldb/Utility/DataExtractor.h" // for DataExtractor
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h" // for Scalar, operator!=
|
||||
#include "lldb/Utility/Status.h" // for Status
|
||||
#include "lldb/lldb-private-enumerations.h" // for AddressType::eAddressTy...
|
||||
#include "lldb/lldb-types.h" // for addr_t
|
||||
|
@ -16,12 +16,12 @@
|
||||
#include <vector>
|
||||
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/dwarf.h"
|
||||
#include "lldb/Utility/DataEncoder.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
#include "lldb/Utility/VMRange.h"
|
||||
|
||||
|
@ -14,7 +14,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Expression/FunctionCaller.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Core/ValueObjectList.h"
|
||||
#include "lldb/Expression/DiagnosticManager.h"
|
||||
@ -31,6 +30,7 @@
|
||||
#include "lldb/Target/ThreadPlanCallFunction.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
||||
|
@ -10,7 +10,6 @@
|
||||
#include "lldb/Expression/IRInterpreter.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Expression/DiagnosticManager.h"
|
||||
#include "lldb/Expression/IRExecutionUnit.h"
|
||||
@ -19,6 +18,7 @@
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Endian.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
|
@ -8,7 +8,6 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Expression/IRMemoryMap.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Target/MemoryRegionInfo.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
@ -16,6 +15,7 @@
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/LLDBAssert.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
@ -13,7 +13,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Expression/Materializer.h"
|
||||
#include "lldb/Core/DumpDataExtractor.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/Expression/ExpressionVariable.h"
|
||||
@ -27,6 +26,7 @@
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
||||
|
@ -8,13 +8,13 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/common/NativeRegisterContext.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
#include "lldb/Host/common/SoftwareBreakpoint.h"
|
||||
#include "lldb/Utility/LLDBAssert.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/lldb-enumerations.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -9,8 +9,8 @@
|
||||
|
||||
#include "lldb/Host/common/NativeRegisterContext.h"
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
#include "lldb/Host/PosixApi.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
|
@ -42,9 +42,9 @@
|
||||
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "lldb/Utility/Timer.h"
|
||||
|
||||
|
@ -13,11 +13,11 @@
|
||||
// C++ Includes
|
||||
// Other libraries and framework includes
|
||||
// Project includes
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/DataFormatters/FormatManager.h"
|
||||
#include "lldb/Interpreter/CommandCompletions.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
@ -14,10 +14,10 @@
|
||||
// Other libraries and framework includes
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
// Project includes
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/DataFormatters/FormatManager.h"
|
||||
#include "lldb/Interpreter/OptionValueString.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
@ -9,13 +9,13 @@
|
||||
|
||||
#include "lldb/Interpreter/OptionValueFileSpec.h"
|
||||
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/DataFormatters/FormatManager.h"
|
||||
#include "lldb/Host/FileSystem.h"
|
||||
#include "lldb/Interpreter/CommandCompletions.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
#include "lldb/Utility/Args.h"
|
||||
#include "lldb/Utility/DataBufferLLVM.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
@ -20,8 +20,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
@ -30,6 +28,8 @@
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include "Plugins/Process/Utility/ARMDefines.h"
|
||||
|
@ -19,8 +19,6 @@
|
||||
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
@ -30,6 +28,8 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include "Utility/ARM64_DWARF_Registers.h"
|
||||
|
@ -20,8 +20,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
@ -29,6 +27,8 @@
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -20,8 +20,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
@ -30,6 +28,8 @@
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include "Plugins/Process/Utility/ARMDefines.h"
|
||||
|
@ -20,8 +20,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
@ -31,6 +29,8 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include "Utility/ARM64_DWARF_Registers.h"
|
||||
|
@ -18,7 +18,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -17,7 +17,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -31,6 +30,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -18,7 +18,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -18,7 +18,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -18,7 +18,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "Utility/PPC64_DWARF_Registers.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -35,6 +34,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include "clang/AST/ASTContext.h"
|
||||
|
@ -18,7 +18,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -19,7 +19,6 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Value.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
@ -33,6 +32,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -15,7 +15,6 @@
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Host/Symbols.h"
|
||||
#include "lldb/Interpreter/OptionValueProperties.h"
|
||||
@ -29,6 +28,7 @@
|
||||
#include "lldb/Utility/DataBuffer.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
#include "DynamicLoaderDarwinKernel.h"
|
||||
|
||||
|
@ -15,7 +15,6 @@
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Expression/DiagnosticManager.h"
|
||||
#include "lldb/Host/FileSystem.h"
|
||||
#include "lldb/Symbol/ClangASTContext.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Utility/DataBuffer.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
//#define ENABLE_DEBUG_PRINTF // COMMENT THIS LINE OUT PRIOR TO CHECKIN
|
||||
#ifdef ENABLE_DEBUG_PRINTF
|
||||
|
@ -12,7 +12,6 @@
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Symbol/ClangASTContext.h"
|
||||
#include "lldb/Symbol/ObjectFile.h"
|
||||
#include "lldb/Symbol/SymbolVendor.h"
|
||||
@ -21,6 +20,7 @@
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
#include "DynamicLoaderDarwin.h"
|
||||
#include "DynamicLoaderMacOS.h"
|
||||
|
@ -13,7 +13,6 @@
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Symbol/ClangASTContext.h"
|
||||
#include "lldb/Symbol/Function.h"
|
||||
#include "lldb/Symbol/ObjectFile.h"
|
||||
@ -27,6 +26,7 @@
|
||||
#include "lldb/Utility/DataBuffer.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
#include "DynamicLoaderDarwin.h"
|
||||
#include "DynamicLoaderMacOSXDYLD.h"
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include "lldb/Core/Address.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/ValueObjectConstResult.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/Expression/Materializer.h"
|
||||
@ -44,6 +43,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/Endian.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/lldb-private.h"
|
||||
#include "clang/AST/ASTConsumer.h"
|
||||
|
@ -27,7 +27,6 @@
|
||||
|
||||
// Project includes
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Core/ValueObjectList.h"
|
||||
#include "lldb/Expression/IRExecutionUnit.h"
|
||||
@ -44,6 +43,7 @@
|
||||
#include "lldb/Target/ThreadPlanCallFunction.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
||||
|
@ -25,7 +25,6 @@
|
||||
|
||||
#include "clang/AST/ASTContext.h"
|
||||
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/dwarf.h"
|
||||
#include "lldb/Expression/IRExecutionUnit.h"
|
||||
#include "lldb/Expression/IRInterpreter.h"
|
||||
@ -36,6 +35,7 @@
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Endian.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
#include <map>
|
||||
|
@ -9,12 +9,12 @@
|
||||
|
||||
#include "EmulationStateARM.h"
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Interpreter/OptionValueArray.h"
|
||||
#include "lldb/Interpreter/OptionValueDictionary.h"
|
||||
#include "lldb/Target/RegisterContext.h"
|
||||
#include "lldb/Target/StackFrame.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
|
||||
#include "Utility/ARM_DWARF_Registers.h"
|
||||
|
||||
|
@ -13,10 +13,10 @@
|
||||
|
||||
#include "lldb/Core/Address.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
#include "lldb/Utility/ArchSpec.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
|
||||
#include "Plugins/Process/Utility/ARMDefines.h"
|
||||
|
@ -14,12 +14,12 @@
|
||||
#include "lldb/Core/Address.h"
|
||||
#include "lldb/Core/Opcode.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/ArchSpec.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "llvm-c/Disassembler.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
|
@ -14,12 +14,12 @@
|
||||
#include "lldb/Core/Address.h"
|
||||
#include "lldb/Core/Opcode.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Host/PosixApi.h"
|
||||
#include "lldb/Symbol/UnwindPlan.h"
|
||||
#include "lldb/Utility/ArchSpec.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataExtractor.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "llvm-c/Disassembler.h"
|
||||
#include "llvm/MC/MCAsmInfo.h"
|
||||
|
@ -14,7 +14,6 @@
|
||||
#include "lldb/Core/Mangled.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
#include "lldb/Interpreter/CommandObject.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include <vector>
|
||||
|
@ -13,7 +13,6 @@
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Core/ValueObjectMemory.h"
|
||||
#include "lldb/Symbol/GoASTContext.h"
|
||||
@ -28,6 +27,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "llvm/ADT/Twine.h"
|
||||
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/ModuleList.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Expression/DiagnosticManager.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Expression/FunctionCaller.h"
|
||||
#include "lldb/Expression/UtilityFunction.h"
|
||||
#include "lldb/Symbol/ClangASTContext.h"
|
||||
@ -29,6 +28,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/Expression/DiagnosticManager.h"
|
||||
@ -52,6 +51,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/Stream.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/DumpDataExtractor.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/DataFormatters/DumpValueObjectOptions.h"
|
||||
#include "lldb/Expression/UserExpression.h"
|
||||
@ -43,6 +42,7 @@
|
||||
#include "lldb/Utility/ConstString.h"
|
||||
#include "lldb/Utility/DataBufferLLVM.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/RegularExpression.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RangeMap.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/StreamFile.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
@ -41,6 +40,7 @@
|
||||
#include "lldb/Utility/DataBuffer.h"
|
||||
#include "lldb/Utility/FileSpec.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
#include "lldb/Utility/Timer.h"
|
||||
|
@ -21,7 +21,6 @@
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
@ -39,6 +38,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Target/ThreadList.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/ValueObjectVariable.h"
|
||||
#include "lldb/Interpreter/CommandInterpreter.h"
|
||||
#include "lldb/Interpreter/ScriptInterpreter.h"
|
||||
@ -32,6 +31,7 @@
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Target/ThreadList.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
#include "lldb/Utility/StructuredData.h"
|
||||
|
||||
|
@ -9,12 +9,12 @@
|
||||
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Core/Section.h"
|
||||
#include "lldb/Core/ValueObject.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Host/StringConvert.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/UriParser.h"
|
||||
|
||||
// Project includes
|
||||
|
@ -23,12 +23,12 @@
|
||||
#include "lldb/Breakpoint/BreakpointSite.h"
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/FileSpec.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
|
@ -21,12 +21,12 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/FileSpec.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
|
@ -21,12 +21,12 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/FileSpec.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
|
@ -21,12 +21,12 @@
|
||||
// Project includes
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/FileSpec.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
|
@ -19,10 +19,10 @@
|
||||
|
||||
// C++ includes
|
||||
// LLDB includes
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/PseudoTerminal.h"
|
||||
#include "lldb/Target/ProcessLaunchInfo.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/StreamString.h"
|
||||
|
||||
#include "CFBundle.h"
|
||||
|
@ -18,8 +18,8 @@
|
||||
|
||||
// C++ Includes
|
||||
// Other libraries and framework includes
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Target/UnixSignals.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
// Project includes
|
||||
#include "FreeBSDThread.h"
|
||||
@ -42,7 +42,6 @@
|
||||
#include "lldb/Breakpoint/BreakpointLocation.h"
|
||||
#include "lldb/Breakpoint/Watchpoint.h"
|
||||
#include "lldb/Core/Debugger.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Host/HostNativeThread.h"
|
||||
@ -50,6 +49,7 @@
|
||||
#include "lldb/Target/StopInfo.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Target/ThreadSpec.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
|
||||
using namespace lldb;
|
||||
|
@ -24,12 +24,12 @@
|
||||
|
||||
// Other libraries and framework includes
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Symbol/ObjectFile.h"
|
||||
#include "lldb/Target/DynamicLoader.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
#include "FreeBSDThread.h"
|
||||
#include "Plugins/Process/POSIX/ProcessPOSIXLog.h"
|
||||
@ -44,7 +44,6 @@
|
||||
#include "lldb/Core/Module.h"
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Symbol/ObjectFile.h"
|
||||
#include "lldb/Target/DynamicLoader.h"
|
||||
@ -52,6 +51,7 @@
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/FileSpec.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
|
||||
#include "lldb/Host/posix/Fcntl.h"
|
||||
|
||||
|
@ -21,14 +21,14 @@
|
||||
|
||||
// C++ Includes
|
||||
// Other libraries and framework includes
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/Scalar.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/PseudoTerminal.h"
|
||||
#include "lldb/Host/ThreadLauncher.h"
|
||||
#include "lldb/Target/RegisterContext.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Target/UnixSignals.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Scalar.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "llvm/Support/Errno.h"
|
||||
|
||||
|
@ -7,9 +7,9 @@
|
||||
//
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
#include "ProcessFreeBSD.h"
|
||||
#include "ProcessMonitor.h"
|
||||
|
@ -7,9 +7,9 @@
|
||||
//
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
#include "Plugins/Process/Utility/RegisterContextPOSIX_arm64.h"
|
||||
#include "ProcessFreeBSD.h"
|
||||
|
@ -7,9 +7,9 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
#include "Plugins/Process/Utility/RegisterContextPOSIX_mips64.h"
|
||||
#include "ProcessFreeBSD.h"
|
||||
|
@ -7,9 +7,9 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
#include "ProcessFreeBSD.h"
|
||||
#include "ProcessMonitor.h"
|
||||
|
@ -7,9 +7,9 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
#include "Plugins/Process/FreeBSD/ProcessFreeBSD.h"
|
||||
#include "Plugins/Process/FreeBSD/ProcessMonitor.h"
|
||||
|
@ -25,8 +25,6 @@
|
||||
// Other libraries and framework includes
|
||||
#include "lldb/Core/EmulateInstruction.h"
|
||||
#include "lldb/Core/ModuleSpec.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/HostProcess.h"
|
||||
#include "lldb/Host/PseudoTerminal.h"
|
||||
@ -41,6 +39,8 @@
|
||||
#include "lldb/Target/ProcessLaunchInfo.h"
|
||||
#include "lldb/Target/Target.h"
|
||||
#include "lldb/Utility/LLDBAssert.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/State.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/Utility/StringExtractor.h"
|
||||
#include "llvm/Support/Errno.h"
|
||||
|
@ -9,10 +9,10 @@
|
||||
|
||||
#include "NativeRegisterContextLinux.h"
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
#include "lldb/Host/linux/Ptrace.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
|
||||
#include "Plugins/Process/Linux/NativeProcessLinux.h"
|
||||
#include "Plugins/Process/POSIX/ProcessPOSIXLog.h"
|
||||
|
@ -15,9 +15,9 @@
|
||||
#include "Plugins/Process/Linux/Procfs.h"
|
||||
#include "Plugins/Process/POSIX/ProcessPOSIXLog.h"
|
||||
#include "Plugins/Process/Utility/RegisterInfoPOSIX_arm.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include <elf.h>
|
||||
|
@ -16,10 +16,10 @@
|
||||
// C++ Includes
|
||||
|
||||
// Other libraries and framework includes
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include "Plugins/Process/Linux/NativeProcessLinux.h"
|
||||
|
@ -21,12 +21,12 @@
|
||||
#include "Plugins/Process/Utility/RegisterContextLinux_mips.h"
|
||||
#include "Plugins/Process/Utility/RegisterContextLinux_mips64.h"
|
||||
#include "lldb/Core/EmulateInstruction.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/LLDBAssert.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
#include "lldb/lldb-enumerations.h"
|
||||
#include "lldb/lldb-private-enumerations.h"
|
||||
|
@ -14,10 +14,10 @@
|
||||
|
||||
#include "NativeRegisterContextLinux_ppc64le.h"
|
||||
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Utility/DataBufferHeap.h"
|
||||
#include "lldb/Utility/Log.h"
|
||||
#include "lldb/Utility/RegisterValue.h"
|
||||
#include "lldb/Utility/Status.h"
|
||||
|
||||
#include "Plugins/Process/Linux/NativeProcessLinux.h"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user