Skip to content
  1. May 16, 2012
  2. May 15, 2012
  3. May 14, 2012
    • Johnny Chen's avatar
      Fix missing NEON registers for the 'register read' command with the lldb... · 2fa9de10
      Johnny Chen authored
      Fix missing NEON registers for the 'register read' command with the lldb debugserver which supports the 'qRegisterInfo' packet
      that dynamically discovers remote register context information.
      
      o GDBRemoteRegisterContext.h:
      
      Change the prototype of HardcodeARMRegisters() to take a boolean flag, which now becomes
      
          void
          HardcodeARMRegisters(bool from_scratch);
      
      o GDBRemoteRegisterContext.cpp:
      
      HardcodeARMRegisters() now checks the from_scratch flag and decides whether to add composite registers to the already
      existing primordial registers based on a table called g_composites which describes the composite registers.
      
      o ProcessGDBRemote.cpp:
      
      Modify the logic of ProcessGDBRemote::BuildDynamicRegisterInfo() to call m_register_info.HardcodeARMRegisters()
      with the newly introduced 'bool from_scrach' flag.
      
      rdar://problem/10652076
      
      llvm-svn: 156773
      2fa9de10
  4. May 12, 2012
  5. May 11, 2012
  6. May 10, 2012
    • Greg Clayton's avatar
      <rdar://problem/11330621> · ba812f42
      Greg Clayton authored
      Fixed the DisassemblerLLVMC disassembler to parse more efficiently instead of parsing opcodes over and over. The InstructionLLVMC class now only reads the opcode in the InstructionLLVMC::Decode function. This can be done very efficiently for ARM and architectures that have fixed opcode sizes. For x64 it still calls the disassembler to get the byte size.
      
      Moved the lldb_private::Instruction::Dump(...) function up into the lldb_private::Instruction class and it now uses the function that gets the mnemonic, operandes and comments so that all disassembly is using the same code.
      
      Added StreamString::FillLastLineToColumn() to allow filling a line up to a column with a character (which is used by the lldb_private::Instruction::Dump(...) function).
      
      Modified the Opcode::GetData() fucntion to "do the right thing" for thumb instructions.
      
      llvm-svn: 156532
      ba812f42
    • Jim Ingham's avatar
      If the ObjC Step Through Trampoline plan causes a target crash, properly... · 18de2fdc
      Jim Ingham authored
      If the ObjC Step Through Trampoline plan causes a target crash, properly propagate the error back to
      the controlling plans so that they don't lose control.
      
      Also change "ThreadPlanStepThrough" to take the return StackID for its backstop breakpoint as an argument
      to the constructor rather than having it try to figure it out itself, since it might get it wrong whereas
      the caller always knows where it is coming from.
      
      rdar://problem/11402287
      
      llvm-svn: 156529
      18de2fdc
  7. May 09, 2012
  8. May 08, 2012
Loading