1. 8ce836d by Caroline Tice · 14 years ago
  2. 2b03ed8 by Caroline Tice · 14 years ago
  3. f1b73af Added a fix that should help incorrect type uniquing. There was an issue by Greg Clayton · 14 years ago
  4. dd506e1 Added a fix to not re-use object files when doing DWARF with debug map. by Greg Clayton · 14 years ago
  5. 279584c Updated to LLVM/Clang revision 127600. by Sean Callanan · 14 years ago
  6. 015eb23 Add a missing include. by Stephen Wilson · 14 years ago
  7. d60d94a Add a first pass at a "stop hook" mechanism. This allows you to add commands that get run every time the debugger stops, whether due to a breakpoint, the end of a step, interrupt, etc. You can also specify in which context you want the stop hook to run, for instance only on a particular thread, or only in a particular shared library, function, file, line range within a file. by Jim Ingham · 14 years ago
  8. a4fede3 CommandInterpreter::HandleCommands should take its commands as a "const StringList &" since it doesn't modify it... by Jim Ingham · 14 years ago
  9. 4a9d790 Fix a few things in the CommandArguments table. by Jim Ingham · 14 years ago
  10. 8053904 Declare some const functions as const. by Jim Ingham · 14 years ago
  11. 8054ba3 Minor typo fix and TAB removals. by Johnny Chen · 14 years ago
  12. ce207c1 by Caroline Tice · 14 years ago
  13. a846cc3 Fixed the -r parameter to the disassemble command by Sean Callanan · 14 years ago
  14. 2a45681 by Caroline Tice · 14 years ago
  15. ef6635b Add Makefile support for the Platform plugins. by Stephen Wilson · 14 years ago
  16. c97bfdb Centralize the GDB remote timeout value into the GDBRemoteCommunication as a by Greg Clayton · 14 years ago
  17. d151c8a Fixed a bug where the disassembly syntax specified for the by Sean Callanan · 14 years ago
  18. e4b9c1f LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide by Greg Clayton · 14 years ago
  19. 791af3b Fix ObjectFileElf::GetEntryPointAddress() by Stephen Wilson · 14 years ago
  20. 8be525a Add Makefile support for the new DynamicLoaderStatic plugin. by Stephen Wilson · 14 years ago
  21. e45140f I didn't notice there was already an ObjectFile::GetEntryPoint. Move that over to GetEntryPointAddress 'cause that's more consistent with other functions in ObjectFile, do the mutatis mutandi and also in the ELF case I return a section offset address rather than a bare load address. by Jim Ingham · 14 years ago
  22. e84d4fd Reverting the part of the debug-in-ofile patch from earlier today that removes them from the shared module list. That was causing a bunch of asserts. Greg is working on a better fix. by Jim Ingham · 14 years ago
  23. 2877594 Add a method "GetEntryPoint" to the ObjectFile class, and implement it on MachO & ELF - though the ELF implementation is probably a little weak. Then use this method in place of directly looking for "start" in the ThreadPlanCallFunction constructor to find the stopping point for our function evaluation. by Jim Ingham · 14 years ago
  24. 9d352ce by Caroline Tice · 14 years ago
  25. 2cd9418 Don't cache .o files in the debug map + DWARF in .o files. If we cache them by Greg Clayton · 14 years ago
  26. 42da4da Add a test case ProcessAPITestCase.test_remote_launch() which tests SBProcess.RemoteLaunch() by Johnny Chen · 14 years ago
  27. bd321c5 Added a DynamicLoaderStatic plug-in that will act as a static dynamic loader. by Greg Clayton · 14 years ago
  28. d3475a2 Allow the macosx frame backchain to use 32/64 bit as the selector when by Greg Clayton · 14 years ago
  29. 3809340 Expose ConnectRemote API through SBTarget and SBProcess. by James McIlree · 14 years ago
  30. 50339fe Fixed a bug in the expression parser where the 'this' by Sean Callanan · 14 years ago
  31. b27771d by Caroline Tice · 14 years ago
  32. 11555f2 by Caroline Tice · 14 years ago
  33. 8ce96d9 by Caroline Tice · 14 years ago
  34. 868198b by Caroline Tice · 14 years ago
  35. 6bf6516 by Caroline Tice · 14 years ago
  36. 40b1a6c by Caroline Tice · 14 years ago
  37. dcc11b3 by Caroline Tice · 14 years ago
  38. 89f1aa7 Export the ability to get the start and end addresses for functions by Greg Clayton · 14 years ago
  39. 5c1e2ed by Caroline Tice · 14 years ago
  40. afb8186 Added a missing API call in SBTarget that enables one to get by Greg Clayton · 14 years ago
  41. 291a3e9 by Caroline Tice · 14 years ago
  42. d2fac09 by Caroline Tice · 14 years ago
  43. 78fb563 by Caroline Tice · 14 years ago
  44. 672f311 by Caroline Tice · 14 years ago
  45. 60a544f Add an API SBProcess::GetByteOrder() and add test cases which utilizes GetByteOrder(), by Johnny Chen · 14 years ago
  46. 5f59391 by Caroline Tice · 14 years ago
  47. a5e28af by Caroline Tice · 14 years ago
  48. 0e6bc95 by Caroline Tice · 14 years ago
  49. 952b538 by Caroline Tice · 14 years ago
  50. 708b447 by Stephen Wilson · 14 years ago
  51. 0491b3b by Caroline Tice · 14 years ago
  52. 01d6157 Add emulation for Encoding A1 of A8.6.97 MOV (register). by Johnny Chen · 14 years ago
  53. a2f7423 Fixed CommandReturnObject::SetImmediateErrorFile() to set the correct stream. by Greg Clayton · 14 years ago
  54. 696b4ef Fix typos in the opcode entries for branch instructions. by Johnny Chen · 14 years ago
  55. b14b00c When making a DataExtractor from a Value that's got a ClangType, set the AddressByteSize from the AST Context. by Jim Ingham · 14 years ago
  56. 59e6ab7 Add emulation for BXJ (Branch and Exchange Jazelle), assuming that the attempt to by Johnny Chen · 14 years ago
  57. a1f0b72 linux: Use ArchSpec::GetCore and the ArchSpec::Core enums. by Stephen Wilson · 14 years ago
  58. f7cc64d linux: Remove a local ObjectFileELF version of GetArchitecture. by Stephen Wilson · 14 years ago
  59. 7f513ba Host: linux: Use llvm::sys::getHostTriple for the default host ArchSpec. by Stephen Wilson · 14 years ago
  60. b7af465 ArchSpec: Do not depend on Host::GetArchitecture. by Stephen Wilson · 14 years ago
  61. b9f02cf Add emulation methods for Bitwise Bit Clear (immediate and register) operations. by Johnny Chen · 14 years ago
  62. 15a7a6b Add emulation methods for "SUB (immediate, Thumb)" and "SUB (immediate, ARM)" operations. by Johnny Chen · 14 years ago
  63. a695f95 Add emulation for "ADR" operations. Add a ThumbImm8Scaled() convenience function by Johnny Chen · 14 years ago
  64. c9e747f Modify EmulateSUBSPImm() to handle the cases with generic Rd value instead of by Johnny Chen · 14 years ago
  65. 9b38177 Add emulation methods for "SBC (immediate)" and "SBC (register)" operations. by Johnny Chen · 14 years ago
  66. 940b103 Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form by Greg Clayton · 14 years ago
  67. 2434884 Renamed macro definition of CPSR_C to be CPSR_C_POS to avoid confusions and subtle bugs. by Johnny Chen · 14 years ago
  68. 90e607b Add emulation methods for "RSC (immediate)" and "RSC (register)" operations. by Johnny Chen · 14 years ago
  69. ed32e7c Add emulation methods for "RSB (immediate)" and "RSB (register)". by Johnny Chen · 14 years ago
  70. cf57434 Fixed a hang in the expression parser's result synthesizer that occurs when the function generated for the expression is completely empty except for a NULL_STMT. This happens sometimes when the parser returns errors. by Sean Callanan · 14 years ago
  71. 3dd0605 Add two convenience functions: DecodeImmShiftThumb() and DecodeImmShiftARM() to ARMUtils.h. by Johnny Chen · 14 years ago
  72. 078fbc6 Add "cmp<c>.w <Rn>, #<const>" emulation to EmulateCMPImm() method, by Johnny Chen · 14 years ago
  73. 85be6c9 Remove an assertion that was causing a crash. by Greg Clayton · 14 years ago
  74. 688926f Fix the 'variants' field of "CMN (immediate)" Encoding T1 entry, it should be ARMV6T2_ABOVE, not ARMvAll. by Johnny Chen · 14 years ago
  75. 3847dad Add ARM encoding entries for "CMN (immediate)" and "CMN (register)" operations. by Johnny Chen · 14 years ago
  76. 34075cb Add ARM encoding entries for "CMP (immediate)" and "CMP (register)" operations. by Johnny Chen · 14 years ago
  77. d642a6a Add emulation methods for "MVN (immediate)" and "MVN (register)". by Johnny Chen · 14 years ago
  78. 2115b41 Add emulation methods for "EOR (Immediate)", "EOR (register)", by Johnny Chen · 14 years ago
  79. de3cce3 Add emulation methods for "TST (immediate)" and "TST (register)". by Johnny Chen · 14 years ago
  80. aa378b1 Don't limit StreamTee to just two streams. It now can contain by Greg Clayton · 14 years ago
  81. 2e8cb8a - Changed all the places where CommandObjectReturn was exporting a StreamString to just exporting by Jim Ingham · 14 years ago
  82. e39f22d Make the helper method ReadCoreReg(uint32_t reg, bool *success) more generic by Johnny Chen · 14 years ago
  83. 30fec12 by Caroline Tice · 14 years ago
  84. 7c5234d Add emulation methods for "ORR (immediate)" and "ORR (register)". by Johnny Chen · 14 years ago
  85. f55261f by Caroline Tice · 14 years ago
  86. 157b959 Add emulation methods for "ADC (immediate)" and "ADC (register)". by Johnny Chen · 14 years ago
  87. 21b604b by Caroline Tice · 14 years ago
  88. e97c0d5 Add emulation methods for "AND (immediate)" and "AND (register)". by Johnny Chen · 14 years ago
  89. fe47911 by Caroline Tice · 14 years ago
  90. d284b66 Added new target instance settings for execution settings: by Greg Clayton · 14 years ago
  91. e92b27c Fix typo. by Johnny Chen · 14 years ago
  92. 8fa2059 Add emulation of Encoding A1 "A8.6.6 ADD (register)" and "A8.6.5 ADD (immediate, ARM)". by Johnny Chen · 14 years ago
  93. 4d729c5 by Caroline Tice · 14 years ago
  94. 949d5ac Factor all the code that does "Execute a list of lldb command interpreter commands" into a single function in the Interpreter, and then use that in all the places that used to do this by hand. by Jim Ingham · 14 years ago
  95. 864a8e8 Finished renamings to make the emulation method names consistent case-wise. by Johnny Chen · 14 years ago
  96. 9f68772 Some renamings to make the emulation method names consistent case-wise. by Johnny Chen · 14 years ago
  97. 4e19e62 Removed redundant entry EmulateTBB() (there's an existing one EmulateTB()) and fixed some typos by Johnny Chen · 14 years ago
  98. 104c8b6 Fix a bug in EmulateTB() (TBB, TBH) where the branch length should be "twice" by Johnny Chen · 14 years ago
  99. e311f44 by Caroline Tice · 14 years ago
  100. 10530c2 Refactoring. Abstracted the set flags operation into its own helper method by Johnny Chen · 14 years ago