Skip to content
  1. May 09, 2011
    • Greg Clayton's avatar
      While implementing unwind information using UnwindAssemblyInstEmulation I ran · 7349bd90
      Greg Clayton authored
      into some cleanup I have been wanting to do when reading/writing registers.
      Previously all RegisterContext subclasses would need to implement:
      
      virtual bool
      ReadRegisterBytes (uint32_t reg, DataExtractor &data);
      
      virtual bool
      WriteRegisterBytes (uint32_t reg, DataExtractor &data, uint32_t data_offset = 0);
      
      There is now a new class specifically designed to hold register values: 
              lldb_private::RegisterValue
              
      The new register context calls that subclasses must implement are:
      
      virtual bool
      ReadRegister (const RegisterInfo *reg_info, RegisterValue &reg_value) = 0;
      
      virtual bool
      WriteRegister (const RegisterInfo *reg_info, const RegisterValue &reg_value) = 0;
      
      The RegisterValue class must be big enough to handle any register value. The
      class contains an enumeration for the value type, and then a union for the 
      data value. Any integer/float values are stored directly in an appropriate
      host integer/float. Anything bigger is stored in a byte buffer that has a length
      and byte order. The RegisterValue class also knows how to copy register value
      bytes into in a buffer with a specified byte order which can be used to write
      the register value down into memory, and this does the right thing when not
      all bytes from the register values are needed (getting a uint8 from a uint32
      register value..). 
      
      All RegiterContext and other sources have been switched over to using the new
      regiter value class.
      
      llvm-svn: 131096
      7349bd90
    • Johnny Chen's avatar
      Fix the wrong error message for "platform process info", i.e., with no pid(s)... · 3173e27e
      Johnny Chen authored
      Fix the wrong error message for "platform process info", i.e., with no pid(s) specified for the command.
      
      llvm-svn: 131089
      3173e27e
    • Greg Clayton's avatar
      Fixed an issue with the MacOSX backchain register context where the pc was · 0e485164
      Greg Clayton authored
      being returned for both the PC and FP.
      
      llvm-svn: 131081
      0e485164
    • Jim Ingham's avatar
      Change an unconditional log to a conditional one. · 1a414cfb
      Jim Ingham authored
      llvm-svn: 131079
      1a414cfb
  2. May 08, 2011
  3. May 07, 2011
  4. May 06, 2011
  5. May 05, 2011
  6. May 04, 2011
  7. May 03, 2011
    • Caroline Tice's avatar
      · e67afe15
      Caroline Tice authored
      Pre-load the Python script interpreter with the following
      convenience variables (from the ExecutionContext) each time
      it is entered: lldb.debugger, lldb.target, lldb.process, 
      lldb.thread, lldb.frame.
      
      If a frame (or thread, process, etc) does not currently exist,
      the variable contains the Python value 'None'.
      
      llvm-svn: 130792
      e67afe15
    • Caroline Tice's avatar
      · 4a3533ba
      Caroline Tice authored
      Remove type cast that was causing compiler warning.
      
      llvm-svn: 130790
      4a3533ba
    • Caroline Tice's avatar
      · 86a73f90
      Caroline Tice authored
      Make the driver listen for asynchronous output, rather than
      the IOChannel, so that it can be written out even while the
      IOChannel is collecting user input.
      
      llvm-svn: 130789
      86a73f90
Loading