2010-08-04 09:40:35 +08:00
|
|
|
//===-- StopInfoMachException.cpp -------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "StopInfoMachException.h"
|
|
|
|
|
|
|
|
// C Includes
|
|
|
|
// C++ Includes
|
|
|
|
// Other libraries and framework includes
|
|
|
|
// Project includes
|
2011-10-14 08:42:25 +08:00
|
|
|
#include "lldb/Breakpoint/Watchpoint.h"
|
2010-08-04 09:40:35 +08:00
|
|
|
#include "lldb/Core/ArchSpec.h"
|
|
|
|
#include "lldb/Core/StreamString.h"
|
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
#include "lldb/Target/RegisterContext.h"
|
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
#include "lldb/Target/ThreadPlan.h"
|
|
|
|
#include "lldb/Target/UnixSignals.h"
|
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
const char *
|
|
|
|
StopInfoMachException::GetDescription ()
|
|
|
|
{
|
|
|
|
if (m_description.empty() && m_value != 0)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
const llvm::Triple::ArchType cpu = m_thread.GetProcess().GetTarget().GetArchitecture().GetMachine();
|
2010-08-04 09:40:35 +08:00
|
|
|
|
|
|
|
const char *exc_desc = NULL;
|
|
|
|
const char *code_label = "code";
|
|
|
|
const char *code_desc = NULL;
|
|
|
|
const char *subcode_label = "subcode";
|
|
|
|
const char *subcode_desc = NULL;
|
|
|
|
switch (m_value)
|
|
|
|
{
|
|
|
|
case 1: // EXC_BAD_ACCESS
|
|
|
|
exc_desc = "EXC_BAD_ACCESS";
|
|
|
|
subcode_label = "address";
|
|
|
|
switch (cpu)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::arm:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
|
|
|
case 0x101: code_desc = "EXC_ARM_DA_ALIGN"; break;
|
|
|
|
case 0x102: code_desc = "EXC_ARM_DA_DEBUG"; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::ppc:
|
|
|
|
case llvm::Triple::ppc64:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
|
|
|
case 0x101: code_desc = "EXC_PPC_VM_PROT_READ"; break;
|
|
|
|
case 0x102: code_desc = "EXC_PPC_BADSPACE"; break;
|
|
|
|
case 0x103: code_desc = "EXC_PPC_UNALIGNED"; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // EXC_BAD_INSTRUCTION
|
|
|
|
exc_desc = "EXC_BAD_INSTRUCTION";
|
|
|
|
switch (cpu)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::x86:
|
|
|
|
case llvm::Triple::x86_64:
|
2010-08-04 09:40:35 +08:00
|
|
|
if (m_exc_code == 1)
|
|
|
|
code_desc = "EXC_I386_INVOP";
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::ppc:
|
|
|
|
case llvm::Triple::ppc64:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
|
|
|
case 1: code_desc = "EXC_PPC_INVALID_SYSCALL"; break;
|
|
|
|
case 2: code_desc = "EXC_PPC_UNIPL_INST"; break;
|
|
|
|
case 3: code_desc = "EXC_PPC_PRIVINST"; break;
|
|
|
|
case 4: code_desc = "EXC_PPC_PRIVREG"; break;
|
|
|
|
case 5: code_desc = "EXC_PPC_TRACE"; break;
|
|
|
|
case 6: code_desc = "EXC_PPC_PERFMON"; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::arm:
|
2010-08-04 09:40:35 +08:00
|
|
|
if (m_exc_code == 1)
|
|
|
|
code_desc = "EXC_ARM_UNDEFINED";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // EXC_ARITHMETIC
|
|
|
|
exc_desc = "EXC_ARITHMETIC";
|
|
|
|
switch (cpu)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::x86:
|
|
|
|
case llvm::Triple::x86_64:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
|
|
|
case 1: code_desc = "EXC_I386_DIV"; break;
|
|
|
|
case 2: code_desc = "EXC_I386_INTO"; break;
|
|
|
|
case 3: code_desc = "EXC_I386_NOEXT"; break;
|
|
|
|
case 4: code_desc = "EXC_I386_EXTOVR"; break;
|
|
|
|
case 5: code_desc = "EXC_I386_EXTERR"; break;
|
|
|
|
case 6: code_desc = "EXC_I386_EMERR"; break;
|
|
|
|
case 7: code_desc = "EXC_I386_BOUND"; break;
|
|
|
|
case 8: code_desc = "EXC_I386_SSEEXTERR"; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::ppc:
|
|
|
|
case llvm::Triple::ppc64:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
|
|
|
case 1: code_desc = "EXC_PPC_OVERFLOW"; break;
|
|
|
|
case 2: code_desc = "EXC_PPC_ZERO_DIVIDE"; break;
|
|
|
|
case 3: code_desc = "EXC_PPC_FLT_INEXACT"; break;
|
|
|
|
case 4: code_desc = "EXC_PPC_FLT_ZERO_DIVIDE"; break;
|
|
|
|
case 5: code_desc = "EXC_PPC_FLT_UNDERFLOW"; break;
|
|
|
|
case 6: code_desc = "EXC_PPC_FLT_OVERFLOW"; break;
|
|
|
|
case 7: code_desc = "EXC_PPC_FLT_NOT_A_NUMBER"; break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4: // EXC_EMULATION
|
|
|
|
exc_desc = "EXC_EMULATION";
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case 5: // EXC_SOFTWARE
|
|
|
|
exc_desc = "EXC_SOFTWARE";
|
|
|
|
if (m_exc_code == 0x10003)
|
|
|
|
{
|
|
|
|
subcode_desc = "EXC_SOFT_SIGNAL";
|
|
|
|
subcode_label = "signo";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: // EXC_BREAKPOINT
|
|
|
|
{
|
|
|
|
exc_desc = "EXC_BREAKPOINT";
|
|
|
|
switch (cpu)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::x86:
|
|
|
|
case llvm::Triple::x86_64:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
case 1: code_desc = "EXC_I386_SGL"; break;
|
|
|
|
case 2: code_desc = "EXC_I386_BPT"; break;
|
2010-08-04 09:40:35 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::ppc:
|
|
|
|
case llvm::Triple::ppc64:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
case 1: code_desc = "EXC_PPC_BREAKPOINT"; break;
|
2010-08-04 09:40:35 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::arm:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (m_exc_code)
|
|
|
|
{
|
2011-05-24 02:04:09 +08:00
|
|
|
case 0x101: code_desc = "EXC_ARM_DA_ALIGN"; break;
|
|
|
|
case 0x102: code_desc = "EXC_ARM_DA_DEBUG"; break;
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
case 1: code_desc = "EXC_ARM_BREAKPOINT"; break;
|
2010-08-04 09:40:35 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7:
|
|
|
|
exc_desc = "EXC_SYSCALL";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 8:
|
|
|
|
exc_desc = "EXC_MACH_SYSCALL";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 9:
|
|
|
|
exc_desc = "EXC_RPC_ALERT";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 10:
|
|
|
|
exc_desc = "EXC_CRASH";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
StreamString strm;
|
|
|
|
|
|
|
|
if (exc_desc)
|
|
|
|
strm.PutCString(exc_desc);
|
|
|
|
else
|
|
|
|
strm.Printf("EXC_??? (%llu)", m_value);
|
|
|
|
|
|
|
|
if (m_exc_data_count >= 1)
|
|
|
|
{
|
|
|
|
if (code_desc)
|
|
|
|
strm.Printf(" (%s=%s", code_label, code_desc);
|
|
|
|
else
|
|
|
|
strm.Printf(" (%s=%llu", code_label, m_exc_code);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_exc_data_count >= 2)
|
|
|
|
{
|
|
|
|
if (subcode_desc)
|
|
|
|
strm.Printf(", %s=%s", subcode_label, subcode_desc);
|
|
|
|
else
|
|
|
|
strm.Printf(", %s=0x%llx", subcode_label, m_exc_subcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_exc_data_count > 0)
|
|
|
|
strm.PutChar(')');
|
|
|
|
|
|
|
|
m_description.swap (strm.GetString());
|
|
|
|
}
|
|
|
|
return m_description.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
StopInfoSP
|
|
|
|
StopInfoMachException::CreateStopReasonWithMachException
|
|
|
|
(
|
|
|
|
Thread &thread,
|
|
|
|
uint32_t exc_type,
|
|
|
|
uint32_t exc_data_count,
|
|
|
|
uint64_t exc_code,
|
2011-09-17 09:05:03 +08:00
|
|
|
uint64_t exc_sub_code,
|
|
|
|
uint64_t exc_sub_sub_code
|
2010-08-04 09:40:35 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (exc_type != 0)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
const llvm::Triple::ArchType cpu = thread.GetProcess().GetTarget().GetArchitecture().GetMachine();
|
2010-08-04 09:40:35 +08:00
|
|
|
|
|
|
|
switch (exc_type)
|
|
|
|
{
|
|
|
|
case 1: // EXC_BAD_ACCESS
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // EXC_BAD_INSTRUCTION
|
|
|
|
switch (cpu)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::ppc:
|
|
|
|
case llvm::Triple::ppc64:
|
2010-08-04 09:40:35 +08:00
|
|
|
switch (exc_code)
|
|
|
|
{
|
|
|
|
case 1: // EXC_PPC_INVALID_SYSCALL
|
|
|
|
case 2: // EXC_PPC_UNIPL_INST
|
|
|
|
case 3: // EXC_PPC_PRIVINST
|
|
|
|
case 4: // EXC_PPC_PRIVREG
|
|
|
|
break;
|
|
|
|
case 5: // EXC_PPC_TRACE
|
|
|
|
return StopInfo::CreateStopReasonToTrace (thread);
|
|
|
|
case 6: // EXC_PPC_PERFMON
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // EXC_ARITHMETIC
|
|
|
|
case 4: // EXC_EMULATION
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 5: // EXC_SOFTWARE
|
|
|
|
if (exc_code == 0x10003) // EXC_SOFT_SIGNAL
|
|
|
|
return StopInfo::CreateStopReasonWithSignal (thread, exc_sub_code);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: // EXC_BREAKPOINT
|
|
|
|
{
|
|
|
|
bool is_software_breakpoint = false;
|
|
|
|
switch (cpu)
|
|
|
|
{
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::x86:
|
|
|
|
case llvm::Triple::x86_64:
|
2010-08-04 09:40:35 +08:00
|
|
|
if (exc_code == 1) // EXC_I386_SGL
|
|
|
|
{
|
2011-09-09 04:52:34 +08:00
|
|
|
if (!exc_sub_code)
|
|
|
|
return StopInfo::CreateStopReasonToTrace(thread);
|
|
|
|
|
|
|
|
// It's a watchpoint, then.
|
2011-09-17 09:05:03 +08:00
|
|
|
// The exc_sub_code indicates the data break address.
|
2011-10-14 08:42:25 +08:00
|
|
|
lldb::WatchpointSP wp_sp =
|
|
|
|
thread.GetProcess().GetTarget().GetWatchpointList().FindByAddress((lldb::addr_t)exc_sub_code);
|
|
|
|
if (wp_sp)
|
2011-09-17 09:05:03 +08:00
|
|
|
{
|
|
|
|
// Debugserver may piggyback the hardware index of the fired watchpoint in the exception data.
|
|
|
|
// Set the hardware index if that's the case.
|
|
|
|
if (exc_data_count >=3)
|
2011-10-14 08:42:25 +08:00
|
|
|
wp_sp->SetHardwareIndex((uint32_t)exc_sub_sub_code);
|
|
|
|
return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID());
|
2011-09-17 09:05:03 +08:00
|
|
|
}
|
2010-08-04 09:40:35 +08:00
|
|
|
}
|
|
|
|
else if (exc_code == 2) // EXC_I386_BPT
|
|
|
|
{
|
|
|
|
is_software_breakpoint = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::ppc:
|
|
|
|
case llvm::Triple::ppc64:
|
2010-08-04 09:40:35 +08:00
|
|
|
is_software_breakpoint = exc_code == 1; // EXC_PPC_BREAKPOINT
|
|
|
|
break;
|
|
|
|
|
2011-02-23 08:35:02 +08:00
|
|
|
case llvm::Triple::arm:
|
2011-05-24 02:04:09 +08:00
|
|
|
if (exc_code == 0x102)
|
|
|
|
{
|
|
|
|
// EXC_ARM_DA_DEBUG seems to be reused for EXC_BREAKPOINT as well as EXC_BAD_ACCESS
|
|
|
|
return StopInfo::CreateStopReasonToTrace(thread);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
is_software_breakpoint = exc_code == 1; // EXC_ARM_BREAKPOINT
|
2010-08-04 09:40:35 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_software_breakpoint)
|
|
|
|
{
|
|
|
|
addr_t pc = thread.GetRegisterContext()->GetPC();
|
|
|
|
lldb::BreakpointSiteSP bp_site_sp = thread.GetProcess().GetBreakpointSiteList().FindByAddress(pc);
|
|
|
|
if (bp_site_sp)
|
|
|
|
{
|
2010-10-23 07:28:32 +08:00
|
|
|
// If the breakpoint is for this thread, then we'll report the hit, but if it is for another thread,
|
|
|
|
// we can just report no reason. We don't need to worry about stepping over the breakpoint here, that
|
|
|
|
// will be taken care of when the thread resumes and notices that there's a breakpoint under the pc.
|
2010-08-04 09:40:35 +08:00
|
|
|
if (bp_site_sp->ValidForThisThread (&thread))
|
|
|
|
return StopInfo::CreateStopReasonWithBreakpointSiteID (thread, bp_site_sp->GetID());
|
2010-10-23 07:28:32 +08:00
|
|
|
else
|
|
|
|
return StopInfoSP();
|
2010-08-04 09:40:35 +08:00
|
|
|
}
|
Many improvements to the Platform base class and subclasses. The base Platform
class now implements the Host functionality for a lot of things that make
sense by default so that subclasses can check:
int
PlatformSubclass::Foo ()
{
if (IsHost())
return Platform::Foo (); // Let the platform base class do the host specific stuff
// Platform subclass specific code...
int result = ...
return result;
}
Added new functions to the platform:
virtual const char *Platform::GetUserName (uint32_t uid);
virtual const char *Platform::GetGroupName (uint32_t gid);
The user and group names are cached locally so that remote platforms can avoid
sending packets multiple times to resolve this information.
Added the parent process ID to the ProcessInfo class.
Added a new ProcessInfoMatch class which helps us to match processes up
and changed the Host layer over to using this new class. The new class allows
us to search for processs:
1 - by name (equal to, starts with, ends with, contains, and regex)
2 - by pid
3 - And further check for parent pid == value, uid == value, gid == value,
euid == value, egid == value, arch == value, parent == value.
This is all hookup up to the "platform process list" command which required
adding dumping routines to dump process information. If the Host class
implements the process lookup routines, you can now lists processes on
your local machine:
machine1.foo.com % lldb
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
94727 244 username usergroup username usergroup x86_64-apple-darwin Xcode
92742 92710 username usergroup username usergroup i386-apple-darwin debugserver
This of course also works remotely with the lldb-platform:
machine1.foo.com % lldb-platform --listen 1234
machine2.foo.com % lldb
(lldb) platform create remote-macosx
Platform: remote-macosx
Connected: no
(lldb) platform connect connect://localhost:1444
Platform: remote-macosx
Triple: x86_64-apple-darwin
OS Version: 10.6.7 (10J869)
Kernel: Darwin Kernel Version 10.7.0: Sat Jan 29 15:17:16 PST 2011; root:xnu-1504.9.37~1/RELEASE_I386
Hostname: machine1.foo.com
Connected: yes
(lldb) platform process list
PID PARENT USER GROUP EFF USER EFF GROUP TRIPLE NAME
====== ====== ========== ========== ========== ========== ======================== ============================
99556 244 username usergroup username usergroup x86_64-apple-darwin trustevaluation
99548 65539 username usergroup username usergroup x86_64-apple-darwin lldb
99538 1 username usergroup username usergroup x86_64-apple-darwin FileMerge
94943 1 username usergroup username usergroup x86_64-apple-darwin mdworker
94852 244 username usergroup username usergroup x86_64-apple-darwin Safari
The lldb-platform implements everything with the Host:: layer, so this should
"just work" for linux. I will probably be adding more stuff to the Host layer
for launching processes and attaching to processes so that this support should
eventually just work as well.
Modified the target to be able to be created with an architecture that differs
from the main executable. This is needed for iOS debugging since we can have
an "armv6" binary which can run on an "armv7" machine, so we want to be able
to do:
% lldb
(lldb) platform create remote-ios
(lldb) file --arch armv7 a.out
Where "a.out" is an armv6 executable. The platform then can correctly decide
to open all "armv7" images for all dependent shared libraries.
Modified the disassembly to show the current PC value. Example output:
(lldb) disassemble --frame
a.out`main:
0x1eb7: pushl %ebp
0x1eb8: movl %esp, %ebp
0x1eba: pushl %ebx
0x1ebb: subl $20, %esp
0x1ebe: calll 0x1ec3 ; main + 12 at test.c:18
0x1ec3: popl %ebx
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
0x1edb: leal 213(%ebx), %eax
0x1ee1: movl %eax, (%esp)
0x1ee4: calll 0x1f1e ; puts
0x1ee9: calll 0x1f0c ; getchar
0x1eee: movl $20, (%esp)
0x1ef5: calll 0x1e6a ; sleep_loop at test.c:6
0x1efa: movl $12, %eax
0x1eff: addl $20, %esp
0x1f02: popl %ebx
0x1f03: leave
0x1f04: ret
This can be handy when dealing with the new --line options that was recently
added:
(lldb) disassemble --line
a.out`main + 13 at test.c:19
18 {
-> 19 printf("Process: %i\n\n", getpid());
20 puts("Press any key to continue..."); getchar();
-> 0x1ec4: calll 0x1f12 ; getpid
0x1ec9: movl %eax, 4(%esp)
0x1ecd: leal 199(%ebx), %eax
0x1ed3: movl %eax, (%esp)
0x1ed6: calll 0x1f18 ; printf
Modified the ModuleList to have a lookup based solely on a UUID. Since the
UUID is typically the MD5 checksum of a binary image, there is no need
to give the path and architecture when searching for a pre-existing
image in an image list.
Now that we support remote debugging a bit better, our lldb_private::Module
needs to be able to track what the original path for file was as the platform
knows it, as well as where the file is locally. The module has the two
following functions to retrieve both paths:
const FileSpec &Module::GetFileSpec () const;
const FileSpec &Module::GetPlatformFileSpec () const;
llvm-svn: 128563
2011-03-31 02:16:51 +08:00
|
|
|
else if (cpu == llvm::Triple::arm)
|
|
|
|
{
|
|
|
|
return StopInfo::CreateStopReasonToTrace (thread);
|
|
|
|
}
|
2010-08-04 09:40:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 7: // EXC_SYSCALL
|
|
|
|
case 8: // EXC_MACH_SYSCALL
|
|
|
|
case 9: // EXC_RPC_ALERT
|
|
|
|
case 10: // EXC_CRASH
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return StopInfoSP(new StopInfoMachException (thread, exc_type, exc_data_count, exc_code, exc_sub_code));
|
|
|
|
}
|
|
|
|
return StopInfoSP();
|
|
|
|
}
|