1. 0e00af2 Add some comment markers. by Johnny Chen · 14 years ago
  2. 338bf54 Add a generic EmulateMovRdRm() method and modify/add entries to the g_thumb_opcodes by Johnny Chen · 14 years ago
  3. e7cf420 Rearrange the order of g_thumb_opcodes entries. by Johnny Chen · 14 years ago
  4. ef21b59 Add EmulateLDRRtRnImm() for EncodingT1 of LDR (immediate, Thumb) to the g_thumb_opcodes table, by Johnny Chen · 14 years ago
  5. 558133b Add a new member variable m_new_inst_cpsr to catch the to-be-updated state by Johnny Chen · 14 years ago
  6. 26863dc Add EmulateAddRdnRm() for EncodingT2 of ADD(register) to the g_thumb_opcodes table, by Johnny Chen · 14 years ago
  7. e62b50d Modified existing Emulate* methods to call LoadWritePC(context, data) where appropriate to by Johnny Chen · 14 years ago
  8. f3eaacf Modified EmulatePop impl to use the helper method LoadWritePC(context, data) since if PC by Johnny Chen · 14 years ago
  9. 0f309db If the CPSR is changed due to switching between ARM and Thumb ISETSTATE, by Johnny Chen · 14 years ago
  10. f29a08f Patch from Kirk Beitz to make things compile on MinGW minus the putenv part. by Greg Clayton · 14 years ago
  11. ee9b1f7 Add some helper methods to the EmulateInstructionARM class as a first step in the by Johnny Chen · 14 years ago
  12. 85aab33 by Caroline Tice · 14 years ago
  13. 7c1bf92 Fix typos. by Johnny Chen · 14 years ago
  14. 53ebab7 Add EmulateCB() entry to the g_thumb_opcodes table to represent "Compare and Branch by Johnny Chen · 14 years ago
  15. 0b29e24 by Caroline Tice · 14 years ago
  16. b9f76c3 Add code to emulate the LDM ARM instruction. by Caroline Tice · 14 years ago
  17. d6c13f0 Add missing implementation for "BL, BLX (immediate)" Encoding T1 and an entry for "bl <label>" by Johnny Chen · 14 years ago
  18. c47d0ca Add missing implementation for "BL, BLX (immediate)" Encoding A1. by Johnny Chen · 14 years ago
  19. 9ee056b Add implementation for EmulateInstructionARM::EmulateB() and fixed two typos in g_thumb_opcodes by Johnny Chen · 14 years ago
  20. 3b620b3 Add EmulateInstructionARM::EmulateB entries to the g_arm_opcodes and g_thumb_opcodes by Johnny Chen · 14 years ago
  21. 8f128eb Handle the thumb branch instructions which have their cond bits embedded in the instruction stream. by Johnny Chen · 14 years ago
  22. c315f86 Add EmulateInstructionARM::EmulateIT() to the g_thumb_opcodes table, by Johnny Chen · 14 years ago
  23. 9307047 Add a utility class ITSession to maintain the ITState for the Thumb ISA. by Johnny Chen · 14 years ago
  24. b77be41 Add EmulateInstructionARM::EmulateSVC() to the g_arm_opcodes and g_thumb_opcodes tables, by Johnny Chen · 14 years ago
  25. 9b8d783 Add EmulateBLXImmediate() and EmulateBLXRm() to the g_arm_opcodes and g_thumb_opcodes tables, by Johnny Chen · 14 years ago
  26. c28a76d Remove the 'lldb_private::' namespace resolution operator. by Johnny Chen · 14 years ago
  27. 587a0a4 Add EmulateVPOP() to the g_arm_opcodes and g_thumb_opcodes tables, which represents by Johnny Chen · 14 years ago
  28. 2b8e8b0 Cleaned up the EmulateInstructionARM to have the evaluate instruction by Greg Clayton · 14 years ago
  29. 8482ded Made the EmulateInstruction class into a plug-in interface and moved the by Greg Clayton · 14 years ago[Renamed (99%) from source/Plugins/Process/Utility/EmulateInstructionARM.cpp]
  30. ef85e91 Add emulate_pop (loads multiple registers from the stack) entries to both the by Johnny Chen · 14 years ago
  31. fdd179e Add emulate_add_sp_imm entry to the g_thumb_opcodes table, which represents an operation by Johnny Chen · 14 years ago
  32. 08c25e8 Add some comments to the emulate_* functions. by Johnny Chen · 14 years ago
  33. 31e2a38 Added the start of the plug-in interface to EmulateInstruction by Greg Clayton · 14 years ago
  34. 1c13b62 Add emulate_mov_low_high() entry to the g_thumb_opcodes table to capture moving by Johnny Chen · 14 years ago
  35. 2ccad83 Add emulate_mov_rd_sp() entries to the g_arm_opcodes and g_thumb_opcodes tables. by Johnny Chen · 14 years ago
  36. 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
  37. 809742e Should provide more useful context info for the emulate_ldr_rd_pc_rel() impl. by Johnny Chen · 14 years ago
  38. 788e055 Add emulate_ldr_rd_pc_rel entry to the g_thumb_opcodes table, which represents a by Johnny Chen · 14 years ago
  39. 5b442b7 Add emulate_add_sp_rm entry to the g_thumb_opcodes table, which represents an operation by Johnny Chen · 14 years ago
  40. 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
  41. 799dfd0 Add emulate_vpush (stores multiple consecutive extension registers to the stack) entries by Johnny Chen · 14 years ago
  42. a8e31c0 Remove duplicated comments. by Johnny Chen · 14 years ago
  43. 8584c92 Move #define's out of ARMUtils.h and into a newly created file ARMDefines.h. by Johnny Chen · 14 years ago
  44. 108d5aa Move the generic instruction bits manipulation routines into a newly created file by Johnny Chen · 14 years ago
  45. e445502 Add Encoding T1 entry of emulate_sub_sp_imm to the g_thumb_opcodes table. by Johnny Chen · 14 years ago
  46. 60c0d62 Add Encoding T2 & T3 entries of emulate_sub_sp_imm to the g_thumb_opcodes table. by Johnny Chen · 14 years ago
  47. 4c0e0bc Add an entry to the g_arm_opcodes table named emulate_sub_sp_imm which corresponds by Johnny Chen · 14 years ago
  48. 91d9986 Variable renaming for better readability. by Johnny Chen · 14 years ago
  49. ce1ca77 Add an emulate-callback function emulate_str_rt_sp() to the g_arm_opcodes table. by Johnny Chen · 14 years ago
  50. 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
  51. 7d193c1 Fix typo of encoding T2 (push) in the original ARM Architecture Reference Manual, by Johnny Chen · 14 years ago
  52. a33d484 Add comment about using Encoding A1 push instruction to emulate the "stmfd sp!, reg" case, by Johnny Chen · 14 years ago
  53. d6873ed Make the assembler mnemonic lowercase. by Johnny Chen · 14 years ago
  54. aedde1c Add Encoding T1 of the PUSH instructions to the g_arm_opcodes table. by Johnny Chen · 14 years ago
  55. 555c497 Fix typo in the instruction descriptions for Encoding T2 and T3 of PUSH. by Johnny Chen · 14 years ago
  56. c3b5bc3 Move some #define's to the ARMUtils.h header file. by Johnny Chen · 14 years ago
  57. 7dc60e1 Add Encoding T2 & T3 of the PUSH instructions to the g_arm_opcodes table. by Johnny Chen · 14 years ago
  58. 4baf2e3 Add an ARMUtils.h file to house utility functions for the ARM/Thumb Instruction Set Architecture. by Johnny Chen · 14 years ago
  59. 4bee8ce Add more descriptions to the g_arm_opcodes table entries. by Johnny Chen · 14 years ago
  60. 3c75c76 Pass along (ARMEncoding)encoding as the callback data, which allows us to abstract by Johnny Chen · 14 years ago
  61. 251af6a Untabify the file. by Johnny Chen · 14 years ago
  62. 64c8443 Added the start of opcode emulation for ARM instructions. This class is designed by Greg Clayton · 14 years ago