- 75c703d The DynamicLoader plug-in instance now lives up in lldb_private::Process where by Greg Clayton · 14 years ago
- 41a0a15 Add emulation methods for LSL (immediate), LSL (register), LSR (immediate), and LSR (register). by Johnny Chen · 14 years ago
- 5e4f4a2 Fixed an issue where detection of vCont support wasn't being done correctly. by Greg Clayton · 14 years ago
- 0fa98ca Modify the various shift routines to handle cases where the shift amount comes by Johnny Chen · 14 years ago
- 395fc33 Made lldb_private::ArchSpec contain much more than just an architecture. It by Greg Clayton · 14 years ago
- 82f16aa A8.6.14 ASR (immediate) by Johnny Chen · 14 years ago
- 0d771a2 Add a bunch of utilities and an enum (ARM_ShifterType) for shift and rotate operations pertaining to: by Johnny Chen · 14 years ago
- c3c4661 All UnwindPlan objects are now passed around as shared pointers. by Greg Clayton · 14 years ago
- 3e9a41c Add comment. by Johnny Chen · 14 years ago
- 07f2f5a Enhanced the existing ARMExpandImm() and ThumbExpandImm() functions which expand by Johnny Chen · 14 years ago
- c1f4587 Added the ability to detect which vCont packets (using the "vCont?") packet by Greg Clayton · 14 years ago
- 7da805c Changed comments of some functions to be consistent with existing ones. by Johnny Chen · 14 years ago
- f558860 Add a couple of utility functions plus some comments. by Johnny Chen · 14 years ago
- c3a38ea Cleaned up some parameter types and names. by Johnny Chen · 14 years ago
- bd59990 Namings are important. Renamed Bits32(const uint32_t val, uint32_t bit) to Bit32(val, bit) and by Johnny Chen · 14 years ago
- 338bf54 Add a generic EmulateMovRdRm() method and modify/add entries to the g_thumb_opcodes by Johnny Chen · 14 years ago
- b5dcb46 linux: use IS_VALID_LLDB_HOST_THREAD. by Stephen Wilson · 14 years ago
- a8d4241 Added the DWARF unique type map such that we only create a type once in the by Greg Clayton · 14 years ago
- f29a08f Patch from Kirk Beitz to make things compile on MinGW minus the putenv part. by Greg Clayton · 14 years ago
- c62176d Fix comment text. by Greg Clayton · 14 years ago
- fc7920f <rdar://problem/8972204> Test failure: ./dotest.py -v -t -f UniversalTestCase.test_process_launch_for_universal by Greg Clayton · 14 years ago
- f9f40c2 Rework the RunThreadPlan event handling to use Event Hijacking not stopping the event thread. Also clarify the logic of the function. by Jim Ingham · 14 years ago
- ff276fe Add _pthread_wqthread to the list of thread stop points, and change the logging a bit. by Jim Ingham · 14 years ago
- 5f54ac3 Moved FileSpec into the Host layer since it will vary from host to host. by Greg Clayton · 14 years ago
- 09c81ef Patch that allows for thread_t to be something more complex than an by Greg Clayton · 14 years ago
- 8120d47 Namespace patch for linux builds from Jai Menon. by Greg Clayton · 14 years ago
- 8d110ff Apple specific change from Kirk Beitz. by Greg Clayton · 14 years ago
- 0bfda0b Added a quicker lookup in the SectionLoadList when looking things up by by Greg Clayton · 14 years ago
- 9307047 Add a utility class ITSession to maintain the ITState for the Thumb ISA. by Johnny Chen · 14 years ago
- 4302f85 Add some comments and a little utility to convert ARM conditions to strings. by Johnny Chen · 14 years ago
- ddff7cc Remove bzero use and replace with memset (patch from Kirk Beitz). by Greg Clayton · 14 years ago
- d5f76bb Patch to remove uses of non-standard strcasestr and replace then with by Greg Clayton · 14 years ago
- e71e258 Added support for attaching to a remote debug server with the new command: by Greg Clayton · 14 years ago
- 1c2aa46 Fixed the SendInterrupt logic to return the true if the target was halted by Greg Clayton · 14 years ago
- 1febb89 A missed endian fix for the linux register context for x86_64. by Greg Clayton · 14 years ago
- cd54803 Endian patch from Kirk Beitz that allows better cross platform building. by Greg Clayton · 14 years ago
- 8482ded Made the EmulateInstruction class into a plug-in interface and moved the by Greg Clayton · 14 years ago
- ef85e91 Add emulate_pop (loads multiple registers from the stack) entries to both the by Johnny Chen · 14 years ago
- fdd179e Add emulate_add_sp_imm entry to the g_thumb_opcodes table, which represents an operation by Johnny Chen · 14 years ago
- 6db9e88 Align comment. by Johnny Chen · 14 years ago
- 08c25e8 Add some comments to the emulate_* functions. by Johnny Chen · 14 years ago
- 5e675ec Minor comment fix. by Johnny Chen · 14 years ago
- 31e2a38 Added the start of the plug-in interface to EmulateInstruction by Greg Clayton · 14 years ago
- 5bc2096 Added some documentation that describes the purpose and the goals by Greg Clayton · 14 years ago
- 7e2f91c Finished up the async attach support. This allows us to request to attach by Greg Clayton · 14 years ago
- 1c13b62 Add emulate_mov_low_high() entry to the g_thumb_opcodes table to capture moving by Johnny Chen · 14 years ago
- 2ccad83 Add emulate_mov_rd_sp() entries to the g_arm_opcodes and g_thumb_opcodes tables. by Johnny Chen · 14 years ago
- 0d0148e Add emulate_sub_r7_ip_imm() (set frame pointer to some ip offset) and emulate_sub_ip_sp_imm() ( by Johnny Chen · 14 years ago
- 9082c8a Fix a little thinko in sending down the thread name to SetName. by Jim Ingham · 14 years ago
- 809742e Should provide more useful context info for the emulate_ldr_rd_pc_rel() impl. by Johnny Chen · 14 years ago
- e4450f0 by Caroline Tice · 14 years ago
- 788e055 Add emulate_ldr_rd_pc_rel entry to the g_thumb_opcodes table, which represents a by Johnny Chen · 14 years ago
- 5b442b7 Add emulate_add_sp_rm entry to the g_thumb_opcodes table, which represents an operation by Johnny Chen · 14 years ago
- db2bab4 Finally tracked down the racy condition that would hose up our debug by Greg Clayton · 14 years ago
- bcec3af Add emulate_add_rd_sp_imm (SP plus immediate) to the g_arm_opcodes and g_thumb_opcodes tables. by Johnny Chen · 14 years ago
- 799dfd0 Add emulate_vpush (stores multiple consecutive extension registers to the stack) entries by Johnny Chen · 14 years ago
- a8e31c0 Remove duplicated comments. by Johnny Chen · 14 years ago
- 8584c92 Move #define's out of ARMUtils.h and into a newly created file ARMDefines.h. by Johnny Chen · 14 years ago
- 108d5aa Move the generic instruction bits manipulation routines into a newly created file by Johnny Chen · 14 years ago
- e445502 Add Encoding T1 entry of emulate_sub_sp_imm to the g_thumb_opcodes table. by Johnny Chen · 14 years ago
- bdcb6ab Enabled extra warnings and fixed a bunch of small issues. by Greg Clayton · 14 years ago
- 60c0d62 Add Encoding T2 & T3 entries of emulate_sub_sp_imm to the g_thumb_opcodes table. by Johnny Chen · 14 years ago
- 4c0e0bc Add an entry to the g_arm_opcodes table named emulate_sub_sp_imm which corresponds by Johnny Chen · 14 years ago
- 91d9986 Variable renaming for better readability. by Johnny Chen · 14 years ago
- cc3e640 Reverting recent thread resume changes as it was causing testing issues. by Greg Clayton · 14 years ago
- c72af6b When we are stepping a thread, force it to resume ALL the way to 0. And of course, when we stop by Jim Ingham · 14 years ago
- 27a8dd7 One more fix to ProcessGDBRemote::DoDestroy(). This one will make sure we by Greg Clayton · 14 years ago
- 68ca823 Fixed ProcessGDBRemote to kill the process correctly when it is either running by Greg Clayton · 14 years ago
- ce1ca77 Add an emulate-callback function emulate_str_rt_sp() to the g_arm_opcodes table. by Johnny Chen · 14 years ago
- 347320d Use two opcode tables g_arm_opcodes and g_thumb_opcodes, instead of lumping arm and thumb opcodes together. by Johnny Chen · 14 years ago
- 7d193c1 Fix typo of encoding T2 (push) in the original ARM Architecture Reference Manual, by Johnny Chen · 14 years ago
- a33d484 Add comment about using Encoding A1 push instruction to emulate the "stmfd sp!, reg" case, by Johnny Chen · 14 years ago
- d6873ed Make the assembler mnemonic lowercase. by Johnny Chen · 14 years ago
- aedde1c Add Encoding T1 of the PUSH instructions to the g_arm_opcodes table. by Johnny Chen · 14 years ago
- 555c497 Fix typo in the instruction descriptions for Encoding T2 and T3 of PUSH. by Johnny Chen · 14 years ago
- c3b5bc3 Move some #define's to the ARMUtils.h header file. by Johnny Chen · 14 years ago
- 7dc60e1 Add Encoding T2 & T3 of the PUSH instructions to the g_arm_opcodes table. by Johnny Chen · 14 years ago
- 4baf2e3 Add an ARMUtils.h file to house utility functions for the ARM/Thumb Instruction Set Architecture. by Johnny Chen · 14 years ago
- 9ed3ebf Remember to turn off the debugserver.txt hard-coded emission. by Jim Ingham · 14 years ago
- ac95966 More useful STEP logging. by Jim Ingham · 14 years ago
- 2860ba9 Improved process logging for both lldb_private::Process and ProcessGDBRemote. by Greg Clayton · 14 years ago
- de915be Added a new variant of SBTarget::Launch() that deprectates the old one that by Greg Clayton · 14 years ago
- 72e1c78 Fixed an issue in "SBError SBProcess::Destroy ()" where it wasn't properly by Greg Clayton · 14 years ago
- a4881d0 Sped up the shutdown time on MacOSX by quite a bit by making sure any by Greg Clayton · 14 years ago
- 55e01d8 Added an interface for noticing new thread creation. At this point, I only turn it on when by Jim Ingham · 14 years ago
- 4bee8ce Add more descriptions to the g_arm_opcodes table entries. by Johnny Chen · 14 years ago
- 3c75c76 Pass along (ARMEncoding)encoding as the callback data, which allows us to abstract by Johnny Chen · 14 years ago
- 251af6a Untabify the file. by Johnny Chen · 14 years ago
- 64c8443 Added the start of opcode emulation for ARM instructions. This class is designed by Greg Clayton · 14 years ago
- cecf348 Fixed the async packets (packets that need to be sent to the GDB server by Greg Clayton · 14 years ago
- 15dcb7c Back up both the register AND the stop state when calling functions. by Jim Ingham · 14 years ago
- 4e1ba0f Delay sync with the parent thread in ProcessLinux/ProcessMonitor. by Stephen Wilson · 14 years ago
- e0c20da Make LinuxThread use the LLDB unwinder. by Stephen Wilson · 14 years ago
- f3cbdc2 Do not enable hardware stepping when resuming a step-enabled thread. by Stephen Wilson · 14 years ago
- 89d46e3 Fix implementation of LinuxThread::HardwareSingleStep. by Stephen Wilson · 14 years ago
- f5db7cf Implement RegisterContextLinux_x86_64::ReadRegisterBytes. by Stephen Wilson · 14 years ago
- bc5d8a2 Support the reading of registers en masse via the linux ProcessMonitor. by Stephen Wilson · 14 years ago
- 83047fc Timeout if we fail to receive a state change event when destroying an inferior. by Stephen Wilson · 14 years ago
- 07fc7a9 Only enqueue valid ProcessLinux messages. by Stephen Wilson · 14 years ago
- c71899e Thread safety changes in debugserver and also in the process GDB remote plugin. by Greg Clayton · 14 years ago