- Dec 22, 2010
-
-
Johnny Chen authored
llvm-svn: 122450
-
Johnny Chen authored
and run the "process continue" command, use the SBProcess.Continue() API. llvm-svn: 122434
-
Johnny Chen authored
NULL, instead of registering a NULL listener and to crash later. llvm-svn: 122429
-
Johnny Chen authored
llvm-svn: 122428
-
Jason Molenda authored
0 mid-stack, stop backtracing. SectionLoadList.cpp (ResolveLoadAddress): Don't assert on an out-of-range address, just return an invalid Address object. The unwinder may be passing in invalid addresses on the final stack frame and the assert is a problem. llvm-svn: 122386
-
Johnny Chen authored
llvm-svn: 122382
-
Johnny Chen authored
and waiting for two expected state changed events to arrive: "running" followed by "stopped". llvm-svn: 122380
-
- Dec 21, 2010
-
-
Johnny Chen authored
llvm-svn: 122352
-
Johnny Chen authored
the process. The custom thread started before this point is running in a loop waiting for events to come. llvm-svn: 122316
-
Greg Clayton authored
llvm-svn: 122308
-
Johnny Chen authored
llvm-svn: 122306
-
Johnny Chen authored
debugger and to exercise some event APIs. llvm-svn: 122304
-
Greg Clayton authored
Remove an assertion that is causing crashes. We do need to find a way to reproduce when this assertion asserts, but we should crash our debug session because of it. For now we log to stderr in hope of tracking it down. llvm-svn: 122290
-
- Dec 20, 2010
-
-
Johnny Chen authored
scan the debugger output for program counter when it comes to the output of 'Up Stack' or 'Down Stack' gud commands. Remove the single quotes around the argument strings for "settings set frame-format" and "settings set thread-format" commands to avoid the single quotes which were being emitted as part of the debugger output. llvm-svn: 122286
-
Johnny Chen authored
Provide a missing resolve_path argument in calls to FileSpec's constructor for both Linux and FreeBSD code fragments. llvm-svn: 122275
-
Johnny Chen authored
Provide full qualification for #include's. llvm-svn: 122274
-
Johnny Chen authored
# Set prompt to 'lldb2'. self.runCmd("settings set prompt lldb2") llvm-svn: 122272
-
Johnny Chen authored
POSIX does not define sockaddr_un.sun_len. Set only when required by the platform. llvm-svn: 122266
-
Greg Clayton authored
llvm-svn: 122262
-
Johnny Chen authored
Fix a typo where a qualification was being interpreted as a label. llvm-svn: 122260
-
Caroline Tice authored
Add code to make sure InputReaders finish and are cleaned up when a Debugger object is destroyed or re-set. (Thus making sure that, for example, the Python interpreter finishes and exits cleanly rather than being left in an undefined state.) llvm-svn: 122255
-
- Dec 19, 2010
-
-
Greg Clayton authored
table offset where the offset is within a section. Increased the section offset for line table entries to be 32 bits (from 24 bits), giving each section a 4G offset, and increased the section index to 32 bits (from 8 bits). llvm-svn: 122200
-
Greg Clayton authored
llvm-svn: 122198
-
Greg Clayton authored
a shell would interpret it. A few examples that we now handle correctly INPUT: "Hello "world OUTPUT: "Hello World" INPUT: "Hello "' World' OUTPUT: "Hello World" INPUT: Hello" World" OUTPUT: "Hello World" This broke the setting of dictionary values for the "settings set" command for things like: (lldb) settings set target.process.env-vars ["MY_ENV_VAR"]=YES since we would drop the quotes. I fixed the user settings controller to use a regular expression so it can accept any of the following inputs for dictionary setting: settings set target.process.env-vars ["MY_ENV_VAR"]=YES settings set target.process.env-vars [MY_ENV_VAR]=YES settings set target.process.env-vars MY_ENV_VAR=YES We might want to eventually drop the first two syntaxes, but I won't make that decision right now. This allows more natural setting of the envirorment variables: settings set target.process.env-vars MY_ENV_VAR=YES ABC=DEF CWD=/tmp llvm-svn: 122166
-
- Dec 18, 2010
-
-
Greg Clayton authored
llvm-svn: 122130
-
Greg Clayton authored
llvm-svn: 122128
-
Greg Clayton authored
llvm-svn: 122127
-
Greg Clayton authored
llvm-svn: 122126
-
Greg Clayton authored
llvm-svn: 122125
-
Sean Callanan authored
ABI. llvm-svn: 122118
-
- Dec 17, 2010
-
-
Johnny Chen authored
in order to sort the output by address. llvm-svn: 122071
-
Greg Clayton authored
llvm-svn: 122061
-
Greg Clayton authored
Removed darwin specific CPU type defines to make UnwindAssemblyProfiler_x86 able to compile on linux (patch from Stephen Wilson). llvm-svn: 122060
-
Greg Clayton authored
llvm-svn: 122059
-
Greg Clayton authored
line commands can use the current thread/frame. Fixed an issue with expressions that get sandboxed in an objective C method where unichar wasn't being passed down. Added a "static size_t Scalar::GetMaxByteSize();" function in case we need to know the max supported by size of something within a Scalar object. llvm-svn: 122027
-
Johnny Chen authored
gud commands in order to more reliably locate the program counter and to display the file-and-line. llvm-svn: 122020
-
- Dec 16, 2010
-
-
Greg Clayton authored
llvm-svn: 122002
-
Greg Clayton authored
llvm-svn: 122001
-
Greg Clayton authored
Added header doc for the recently added Process::ReadUnsignedInteger (addr_t addr, size_t int_byte_size, Error &error) function. llvm-svn: 121999
-
Greg Clayton authored
uint64_t Process::ReadUnsignedInteger (addr_t addr, size_t int_byte_size, Error &error); llvm-svn: 121996
-