forked from OSchip/llvm-project
Moving header files from source/Host/common to proper location.
llvm-svn: 227929
This commit is contained in:
parent
37c768ca58
commit
2fe1d0abc2
|
@ -28,7 +28,7 @@
|
|||
|
||||
// TODO pull NativeDelegate class out of NativeProcessProtocol so we
|
||||
// can just forward ref the NativeDelegate rather than include it here.
|
||||
#include "../../../source/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
|
||||
namespace lldb_private {
|
||||
|
||||
|
|
|
@ -1155,13 +1155,13 @@
|
|||
23B6FF4119D38D48004CC8C3 /* ThreadStateCoordinator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ThreadStateCoordinator.h; sourceTree = "<group>"; };
|
||||
23CDD8E819D3E13200461DDC /* ThreadStateCoordinator.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ThreadStateCoordinator.cpp; sourceTree = "<group>"; };
|
||||
23DDF224196C3EE600BB8417 /* CommandOptionValidators.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CommandOptionValidators.cpp; path = source/Interpreter/CommandOptionValidators.cpp; sourceTree = "<group>"; };
|
||||
23EDE3301926839700F6A132 /* NativeRegisterContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = NativeRegisterContext.cpp; path = source/Target/NativeRegisterContext.cpp; sourceTree = "<group>"; };
|
||||
23EDE3311926843600F6A132 /* NativeRegisterContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeRegisterContext.h; path = include/lldb/Target/NativeRegisterContext.h; sourceTree = "<group>"; };
|
||||
23EDE3301926839700F6A132 /* NativeRegisterContext.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = NativeRegisterContext.cpp; path = source/Host/common/NativeRegisterContext.cpp; sourceTree = "<group>"; };
|
||||
23EDE3311926843600F6A132 /* NativeRegisterContext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeRegisterContext.h; path = include/lldb/Host/common/NativeRegisterContext.h; sourceTree = "<group>"; };
|
||||
23EDE3371926AAD500F6A132 /* RegisterInfoInterface.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RegisterInfoInterface.h; path = Utility/RegisterInfoInterface.h; sourceTree = "<group>"; };
|
||||
23EFE388193D1ABC00E54E54 /* SBTypeEnumMember.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SBTypeEnumMember.h; path = include/lldb/API/SBTypeEnumMember.h; sourceTree = "<group>"; };
|
||||
23EFE38A193D1AEC00E54E54 /* SBTypeEnumMember.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SBTypeEnumMember.cpp; path = source/API/SBTypeEnumMember.cpp; sourceTree = "<group>"; };
|
||||
23F403471926C8D50046DC9B /* NativeRegisterContextRegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeRegisterContextRegisterInfo.h; path = include/lldb/Target/NativeRegisterContextRegisterInfo.h; sourceTree = "<group>"; };
|
||||
23F403481926CC250046DC9B /* NativeRegisterContextRegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = NativeRegisterContextRegisterInfo.cpp; path = source/Target/NativeRegisterContextRegisterInfo.cpp; sourceTree = "<group>"; };
|
||||
23F403471926C8D50046DC9B /* NativeRegisterContextRegisterInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NativeRegisterContextRegisterInfo.h; path = include/lldb/Host/common/NativeRegisterContextRegisterInfo.h; sourceTree = "<group>"; };
|
||||
23F403481926CC250046DC9B /* NativeRegisterContextRegisterInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = NativeRegisterContextRegisterInfo.cpp; path = source/Host/common/NativeRegisterContextRegisterInfo.cpp; sourceTree = "<group>"; };
|
||||
25420ECC1A6490B8009ADBCB /* OptionValueChar.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OptionValueChar.cpp; path = source/Interpreter/OptionValueChar.cpp; sourceTree = "<group>"; };
|
||||
25420ECE1A64911B009ADBCB /* OptionValueChar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OptionValueChar.h; path = include/lldb/Interpreter/OptionValueChar.h; sourceTree = "<group>"; };
|
||||
25420ED11A649D88009ADBCB /* PipeBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PipeBase.cpp; sourceTree = "<group>"; };
|
||||
|
|
|
@ -19,6 +19,8 @@ add_host_subdirectory(common
|
|||
common/NativeBreakpoint.cpp
|
||||
common/NativeBreakpointList.cpp
|
||||
common/NativeProcessProtocol.cpp
|
||||
common/NativeRegisterContext.cpp
|
||||
common/NativeRegisterContextRegisterInfo.cpp
|
||||
common/NativeThreadProtocol.cpp
|
||||
common/OptionParser.cpp
|
||||
common/PipeBase.cpp
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "NativeBreakpoint.h"
|
||||
#include "lldb/Host/common/NativeBreakpoint.h"
|
||||
|
||||
#include "lldb/lldb-defines.h"
|
||||
#include "lldb/Core/Error.h"
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "NativeBreakpointList.h"
|
||||
#include "lldb/Host/common/NativeBreakpointList.h"
|
||||
|
||||
#include "lldb/Core/Log.h"
|
||||
|
||||
#include "NativeBreakpoint.h"
|
||||
#include "lldb/Host/common/NativeBreakpoint.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
|
|
@ -7,17 +7,17 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
|
||||
#include "lldb/lldb-enumerations.h"
|
||||
#include "lldb/Core/ArchSpec.h"
|
||||
#include "lldb/Core/Log.h"
|
||||
#include "lldb/Core/State.h"
|
||||
#include "lldb/Host/Host.h"
|
||||
#include "lldb/Target/NativeRegisterContext.h"
|
||||
#include "lldb/Host/common/NativeRegisterContext.h"
|
||||
|
||||
#include "NativeThreadProtocol.h"
|
||||
#include "SoftwareBreakpoint.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
#include "lldb/Host/common/SoftwareBreakpoint.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
|
|
@ -7,15 +7,15 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/Target/NativeRegisterContext.h"
|
||||
#include "lldb/Host/common/NativeRegisterContext.h"
|
||||
|
||||
#include "lldb/Core/Log.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
|
||||
#include "lldb/lldb-private-log.h"
|
||||
|
||||
#include "Host/common/NativeProcessProtocol.h"
|
||||
#include "Host/common/NativeThreadProtocol.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "lldb/lldb-types.h"
|
||||
#include "lldb/lldb-private-forward.h"
|
||||
#include "lldb/Target/NativeRegisterContextRegisterInfo.h"
|
||||
#include "lldb/Host/common/NativeRegisterContextRegisterInfo.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
|
@ -7,11 +7,11 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "NativeThreadProtocol.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
|
||||
#include "NativeProcessProtocol.h"
|
||||
#include "lldb/Target/NativeRegisterContext.h"
|
||||
#include "SoftwareBreakpoint.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeRegisterContext.h"
|
||||
#include "lldb/Host/common/SoftwareBreakpoint.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
|
|
@ -7,14 +7,14 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "SoftwareBreakpoint.h"
|
||||
#include "lldb/Host/common/SoftwareBreakpoint.h"
|
||||
|
||||
#include "lldb/Core/Error.h"
|
||||
#include "lldb/Core/Log.h"
|
||||
#include "lldb/Host/Debug.h"
|
||||
#include "lldb/Host/Mutex.h"
|
||||
|
||||
#include "NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
||||
|
|
|
@ -56,11 +56,11 @@
|
|||
#include "lldb/Host/HostInfo.h"
|
||||
#include "lldb/Host/ThreadLauncher.h"
|
||||
#include "lldb/Symbol/ObjectFile.h"
|
||||
#include "lldb/Target/NativeRegisterContext.h"
|
||||
#include "lldb/Host/common/NativeRegisterContext.h"
|
||||
#include "lldb/Target/ProcessLaunchInfo.h"
|
||||
#include "lldb/Utility/PseudoTerminal.h"
|
||||
|
||||
#include "Host/common/NativeBreakpoint.h"
|
||||
#include "lldb/Host/common/NativeBreakpoint.h"
|
||||
#include "Utility/StringExtractor.h"
|
||||
|
||||
#include "Plugins/Process/Utility/LinuxSignals.h"
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "lldb/Host/Mutex.h"
|
||||
#include "lldb/Target/MemoryRegionInfo.h"
|
||||
|
||||
#include "Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
|
||||
namespace lldb_private
|
||||
{
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "lldb/Core/DataBufferHeap.h"
|
||||
#include "lldb/Core/Error.h"
|
||||
#include "lldb/Core/RegisterValue.h"
|
||||
#include "Host/common/NativeProcessProtocol.h"
|
||||
#include "Host/common/NativeThreadProtocol.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
#include "Plugins/Process/Linux/NativeProcessLinux.h"
|
||||
|
||||
using namespace lldb_private;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#ifndef lldb_NativeRegisterContextLinux_x86_64_h
|
||||
#define lldb_NativeRegisterContextLinux_x86_64_h
|
||||
|
||||
#include "lldb/Target/NativeRegisterContextRegisterInfo.h"
|
||||
#include "lldb/Host/common/NativeRegisterContextRegisterInfo.h"
|
||||
#include "Plugins/Process/Utility/RegisterContext_x86.h"
|
||||
#include "Plugins/Process/Utility/lldb-x86-register-enums.h"
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#define liblldb_NativeThreadLinux_H_
|
||||
|
||||
#include "lldb/lldb-private-forward.h"
|
||||
#include "../../../Host/common/NativeThreadProtocol.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
|
||||
namespace lldb_private
|
||||
{
|
||||
|
|
|
@ -39,9 +39,9 @@
|
|||
#include "lldb/Target/FileAction.h"
|
||||
#include "lldb/Target/Platform.h"
|
||||
#include "lldb/Target/Process.h"
|
||||
#include "lldb/Target/NativeRegisterContext.h"
|
||||
#include "Host/common/NativeProcessProtocol.h"
|
||||
#include "Host/common/NativeThreadProtocol.h"
|
||||
#include "lldb/Host/common/NativeRegisterContext.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeThreadProtocol.h"
|
||||
|
||||
// Project includes
|
||||
#include "Utility/StringExtractorGDBRemote.h"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#include "lldb/Target/Process.h"
|
||||
#include "GDBRemoteCommunication.h"
|
||||
|
||||
#include "../../../Host/common/NativeProcessProtocol.h"
|
||||
#include "lldb/Host/common/NativeProcessProtocol.h"
|
||||
|
||||
class ProcessGDBRemote;
|
||||
class StringExtractorGDBRemote;
|
||||
|
|
|
@ -14,8 +14,6 @@ add_lldb_library(lldbTarget
|
|||
LanguageRuntime.cpp
|
||||
Memory.cpp
|
||||
MemoryHistory.cpp
|
||||
NativeRegisterContext.cpp
|
||||
NativeRegisterContextRegisterInfo.cpp
|
||||
ObjCLanguageRuntime.cpp
|
||||
OperatingSystem.cpp
|
||||
PathMappingList.cpp
|
||||
|
|
Loading…
Reference in New Issue