[Lldb-commits] [lldb] r136625 - in /lldb/trunk/source/Plugins/Process/Utility: RegisterContextMach_arm.cpp RegisterContextMach_arm.h RegisterContextMach_i386.cpp RegisterContextMach_i386.h RegisterContextMach_x86_64.cpp RegisterContextMach_x86_64.h
Greg Clayton
gclayton at apple.com
Mon Aug 1 10:06:31 PDT 2011
Author: gclayton
Date: Mon Aug 1 12:06:30 2011
New Revision: 136625
URL: http://llvm.org/viewvc/llvm-project?rev=136625&view=rev
Log:
Copy the native darwin register stuff out of the ProcessMacOSX
plug-in folder.
Added:
lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp
- copied, changed from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.cpp
lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.h
- copied, changed from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.h
lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_i386.cpp
- copied unchanged from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_i386.cpp
lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_i386.h
- copied, changed from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_i386.h
lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp
- copied, changed from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.cpp
lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h
- copied, changed from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.h
Copied: lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp (from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.cpp)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp?p2=lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp&p1=lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.cpp&r1=136624&r2=136625&rev=136625&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp Mon Aug 1 12:06:30 2011
@@ -16,7 +16,6 @@
// C++ Includes
// Other libraries and framework includes
// Project includes
-//#include "ProcessMacOSXLog.h"
using namespace lldb;
using namespace lldb_private;
Copied: lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.h (from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.h)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.h?p2=lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.h&p1=lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.h&r1=136624&r2=136625&rev=136625&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_arm.h (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_arm.h Mon Aug 1 12:06:30 2011
@@ -15,7 +15,7 @@
// C++ Includes
// Other libraries and framework includes
// Project includes
-#include "Plugins/Process/Utility/RegisterContextDarwin_arm.h"
+#include "RegisterContextDarwin_arm.h"
class RegisterContextMach_arm : public RegisterContextDarwin_arm
{
Copied: lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_i386.h (from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_i386.h)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_i386.h?p2=lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_i386.h&p1=lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_i386.h&r1=136624&r2=136625&rev=136625&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_i386.h (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_i386.h Mon Aug 1 12:06:30 2011
@@ -14,7 +14,7 @@
// C++ Includes
// Other libraries and framework includes
// Project includes
-#include "Plugins/Process/Utility/RegisterContextDarwin_i386.h"
+#include "RegisterContextDarwin_i386.h"
class RegisterContextMach_i386 : public RegisterContextDarwin_i386
{
Copied: lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp (from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.cpp)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp?p2=lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp&p1=lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.cpp&r1=136624&r2=136625&rev=136625&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp Mon Aug 1 12:06:30 2011
@@ -21,7 +21,7 @@
RegisterContextMach_x86_64::RegisterContextMach_x86_64(Thread &thread, uint32_t concrete_frame_idx) :
-RegisterContextDarwin_x86_64 (thread, concrete_frame_idx)
+ RegisterContextDarwin_x86_64 (thread, concrete_frame_idx)
{
}
Copied: lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h (from r136624, lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.h)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h?p2=lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h&p1=lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.h&r1=136624&r2=136625&rev=136625&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-User/source/RegisterContextMach_x86_64.h (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h Mon Aug 1 12:06:30 2011
@@ -14,7 +14,7 @@
// C++ Includes
// Other libraries and framework includes
// Project includes
-#include "Plugins/Process/Utility/RegisterContextDarwin_x86_64.h"
+#include "RegisterContextDarwin_x86_64.h"
class RegisterContextMach_x86_64 : public RegisterContextDarwin_x86_64
{
More information about the lldb-commits
mailing list