- Feb 01, 2011
-
-
Greg Clayton authored
llvm-svn: 124643
-
Greg Clayton authored
llvm-svn: 124638
-
Greg Clayton authored
callbacks use member functions. llvm-svn: 124636
-
Greg Clayton authored
source files around into the places they need to go. llvm-svn: 124631
-
Johnny Chen authored
g_arm_opcodes and g_thumb_opcodes tables. Plus a minor comment fix for EmulateInstruction.h. llvm-svn: 124617
-
- Jan 31, 2011
-
-
Johnny Chen authored
to adjust the stack pointer by adding an imm7-scaled value to the SP. llvm-svn: 124596
-
Johnny Chen authored
llvm-svn: 124595
-
Johnny Chen authored
llvm-svn: 124588
-
Johnny Chen authored
llvm-svn: 124586
-
- Jan 30, 2011
-
-
Greg Clayton authored
and implemented it for the EmulateInstructionARM class. llvm-svn: 124563
-
Greg Clayton authored
of the EmulateInstruction class. llvm-svn: 124562
-
- Jan 29, 2011
-
-
Greg Clayton authored
by name or by pid (with or without waiting for a process to launch) and catch the response asynchronously. llvm-svn: 124530
-
Jim Ingham authored
llvm-svn: 124525
-
Jim Ingham authored
llvm-svn: 124521
-
Jim Ingham authored
Added a completion action class to the Process events so that we can make things like Attach and later Launch start their job, and then return to the event loop while waiting for the work to be done. llvm-svn: 124520
-
Johnny Chen authored
of high registers to low registers in the prologue so they can be saved. llvm-svn: 124509
-
- Jan 28, 2011
-
-
Johnny Chen authored
For prolog instructions which set r7 or ip to the stack pointer. llvm-svn: 124501
-
Johnny Chen authored
set ip to some stack offset) entries to the g_arm_opcodes table. llvm-svn: 124466
-
Jim Ingham authored
llvm-svn: 124464
-
Johnny Chen authored
The context being that it's a PC relative load. llvm-svn: 124460
-
Caroline Tice authored
If the user specfies one of stdin, stdout or stderr, don't automatically set the non-specified ones to /dev/null. llvm-svn: 124459
-
- Jan 27, 2011
-
-
Johnny Chen authored
PC relative immediate load into register, possibly followed by an add operation to adjust the SP. llvm-svn: 124448
-
Johnny Chen authored
to adjust the stack pointer by adding a register value in Rm to the SP. llvm-svn: 124400
-
Greg Clayton authored
llvm-svn: 124371
-
Greg Clayton authored
sessions: When continue packet has been sent and an interrupt packet was quickly sent, it would get read at the same time: $c#00\x03 There was an error where the packet end index was always being computed incorrectly by debugserver, but it wouldn't matter if there weren't extra bytes on the end (the hex \x03 interrupt byte in this case). The first '$' last 3 bytes of the data in the packet buffer were being trimmed (trying to trim the '#' + checksum (#XX)) which made: c# And this would then be passed to the handle routine for the 'c' packet which would see an extra character at the end and assume it was going to be in the form c[addr] where "[addr]" was a hex address to resume at and this would result in a malformed packet response. This is now fixed and everything works great. Another issue was issuing async packets correctly by doing correct handshakes between the thread that wants to send the async packet, and the thread that is tracking the current run. Added a write lock to the communication class as well to make sure you never get two threads trying to write data at the same time. This wasn't happening, but it is a good idea to make sure it doesn't. llvm-svn: 124369
-
Greg Clayton authored
lldb_private::Function objects. Previously the SymbolFileSymtab subclass would return lldb_private::Symbol objects when it was asked to find functions. The Module::FindFunctions (...) now take a boolean "bool include_symbols" so that the module can track down functions and symbols, yet functions are found by the SymbolFile plug-ins (through the SymbolVendor class), and symbols are gotten through the ObjectFile plug-ins. Fixed and issue where the DWARF parser might run into incomplete class member function defintions which would make clang mad when we tried to make certain member functions with invalid number of parameters (such as an operator= operator that had no parameters). Now we just avoid and don't complete these incomplete functions. llvm-svn: 124359
-
Sean Callanan authored
the "virtual" flag when importing a C++ function declaration. Made changes to LLDB to support other changes in Clang. llvm-svn: 124355
-
Johnny Chen authored
Change the data type of Context.arg2 to int64_t due to possible negative values. llvm-svn: 124343
-
Sean Callanan authored
user doesn't have to enable logging to see where something went wrong. llvm-svn: 124342
-
Greg Clayton authored
extra launch options: LLDB_LAUNCH_FLAG_DISABLE_ASLR disables ASLR for all launched processes LLDB_LAUNCH_FLAG_DISABLE_STDIO will disable STDIO (reroute to "/dev/null") for all launched processes LLDB_LAUNCH_FLAG_LAUNCH_IN_TTY will force all launched processes to be launched in new terminal windows. Also, don't init python if we never create a script interpreter. llvm-svn: 124341
-
Greg Clayton authored
llvm-svn: 124338
-
Johnny Chen authored
to both the g_arm_opcodes and g_thumb_opcodes tables. llvm-svn: 124333
-
- Jan 26, 2011
-
-
Jim Ingham authored
Make sure that if a CallFunction thread plan crashes while running in the "run to address" mode, and it is an auto-discard thread plan, the plan stack unwinds properly. llvm-svn: 124306
-
Jim Ingham authored
llvm-svn: 124305
-
Jim Ingham authored
llvm-svn: 124304
-
Johnny Chen authored
llvm-svn: 124262
-
Johnny Chen authored
llvm-svn: 124261
-
Johnny Chen authored
named InstructionUtils.h and modify some existing code to use them. llvm-svn: 124259
-
Johnny Chen authored
Update emulate_sub_sp_imm to handle Encoding T1. llvm-svn: 124253
-
Greg Clayton authored
llvm-svn: 124250
-