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
  2. May 08, 2011
  3. May 07, 2011
  4. May 06, 2011
  5. May 05, 2011
  6. May 04, 2011
    • Jim Ingham's avatar
      Change "frame var" over to using OptionGroups (and thus the OptionGroupVariableObjectDisplay). · 2837b766
      Jim Ingham authored
      Change the boolean "use_dynamic" over to a tri-state, no-dynamic, dynamic-w/o running target,
      and dynamic with running target.
      
      llvm-svn: 130832
      2837b766
    • Greg Clayton's avatar
      Added new OptionGroup classes for UInt64, UUID, File and Boolean values. · effe5c95
      Greg Clayton authored
      Removed the "image" command and moved it to "target modules". Added an alias
      for "image" to "target modules". 
      
      Added some new target commands to be able to add and load modules to a target:
      (lldb) target modules add <path>
      (lldb) target modules load [--file <path>] [--slide <offset>] [<sect-name> <sect-load-addr> ...]
      
      So you can load individual sections without running a target:
      
      (lldb) target modules load --file /usr/lib/libSystem.B.dylib __TEXT 0x7fccc80000 __DATA 0x1234000000
      
      Or you can rigidly slide an entire shared library:
      
      (lldb) target modules load --file /usr/lib/libSystem.B.dylib --slid 0x7fccc80000
      
      This should improve bare board debugging when symbol files need to be slid around manually.
      
      llvm-svn: 130796
      effe5c95
  7. May 03, 2011
  8. May 02, 2011
    • Greg Clayton's avatar
      Added a "--triple [<width>]" ("-t<width>" as a short option) option to the · b501b99c
      Greg Clayton authored
      image list command so we can see the full triple for each target module.
      
      llvm-svn: 130728
      b501b99c
    • Caroline Tice's avatar
      · 969ed3d1
      Caroline Tice authored
      This patch captures and serializes all output being written by the
      command line driver, including the lldb prompt being output by
      editline, the asynchronous process output & error messages, and
      asynchronous messages written by target stop-hooks.
      
      As part of this it introduces a new Stream class,
      StreamAsynchronousIO.  A StreamAsynchronousIO object is created with a
      broadcaster, who will eventually broadcast the stream's data for a
      listener to handle, and an event type indicating what type of event
      the broadcaster will broadcast.  When the Write method is called on a
      StreamAsynchronousIO object, the data is appended to an internal
      string.  When the Flush method is called on a StreamAsynchronousIO
      object, it broadcasts it's data string and clears the string.
      
      Anything in lldb-core that needs to generate asynchronous output for
      the end-user should use the StreamAsynchronousIO objects.
      
      I have also added a new notification type for InputReaders, to let
      them know that a asynchronous output has been written. This is to
      allow the input readers to, for example, refresh their prompts and
      lines, if desired.  I added the case statements to all the input
      readers to catch this notification, but I haven't added any code for
      handling them yet (except to the IOChannel input reader).
      
      llvm-svn: 130721
      969ed3d1
    • Jim Ingham's avatar
      Adding support for fetching the Dynamic Value for ObjC Objects. · 61be0903
      Jim Ingham authored
      llvm-svn: 130701
      61be0903
  9. Apr 30, 2011
  10. Apr 28, 2011
    • Greg Clayton's avatar
      Added the ability to specify dumping options (show types, show location, · 68ebae61
      Greg Clayton authored
      depth control, pointer depth, and more) when dumping memory and viewing as
      a type.
      
      llvm-svn: 130436
      68ebae61
    • Greg Clayton's avatar
      Added a new OptionValue subclass for lldb::Format: OptionValueFormat. Added · 84c39663
      Greg Clayton authored
      new OptionGroup subclasses for:
      - output file for use with options: 
              long opts: --outfile <path> --append--output
              short opts: -o <path> -A
              
      - format for use with options:
              long opts: --format <format>
      
      - variable object display controls for depth, pointer depth, wether to show
        types, show summary, show location, flat output, use objc "po" style summary.
        
      Modified ValueObjectMemory to be able to be created either with a TypeSP or
      a ClangASTType.
      
      Switched "memory read" over to use OptionGroup subclasses: one for the outfile
      options, one for the command specific options, and one for the format.
      
      llvm-svn: 130334
      84c39663
  11. Apr 27, 2011
    • Greg Clayton's avatar
      Got the EmulateInstruction CFI code a lot closer to producing CFI data. · 79ea878b
      Greg Clayton authored
      Switch the EmulateInstruction to use the standard RegisterInfo structure
      that is defined in the lldb private types intead of passing the reg kind and
      reg num everywhere. EmulateInstruction subclasses also need to provide
      RegisterInfo structs given a reg kind and reg num. This eliminates the need
      for the GetRegisterName() virtual function and allows more complete information
      to be passed around in the read/write register callbacks. Subclasses should
      always provide RegiterInfo structs with the generic register info filled in as
      well as at least one kind of register number in the RegisterInfo.kinds[] array.
      
      llvm-svn: 130256
      79ea878b
  12. Apr 26, 2011
    • Johnny Chen's avatar
      Modify EmulateInstructionARM::SetArchitecture() to treat "arm" and "thumb" as... · a85bf380
      Johnny Chen authored
      Modify EmulateInstructionARM::SetArchitecture() to treat "arm" and "thumb" as wild card architectures
      for now, in order to fix the test failure for the 'arm_emulation' directory.
      There might be a better way.
      
      llvm-svn: 130227
      a85bf380
    • Greg Clayton's avatar
      Changed the emulate instruction function to take emulate options which · 2ed751bd
      Greg Clayton authored
      are defined as enumerations. Current bits include:
      
              eEmulateInstructionOptionAutoAdvancePC
              eEmulateInstructionOptionIgnoreConditions
      
      Modified the EmulateInstruction class to have a few more pure virtuals that
      can help clients understand how many instructions the emulator can handle:
      
              virtual bool
              SupportsEmulatingIntructionsOfType (InstructionType inst_type) = 0;
      
      
      Where instruction types are defined as:
      
      //------------------------------------------------------------------
      /// Instruction types
      //------------------------------------------------------------------    
      typedef enum InstructionType
      {
          eInstructionTypeAny,                // Support for any instructions at all (at least one)
          eInstructionTypePrologueEpilogue,   // All prologue and epilogue instructons that push and pop register values and modify sp/fp
          eInstructionTypePCModifying,        // Any instruction that modifies the program counter/instruction pointer
          eInstructionTypeAll                 // All instructions of any kind
      
      }  InstructionType;
      
      
      This allows use to tell what an emulator can do and also allows us to request
      these abilities when we are finding the plug-in interface.
      
      Added the ability for an EmulateInstruction class to get the register names
      for any registers that are part of the emulation. This helps with being able
      to dump and log effectively.
      
      The UnwindAssembly class now stores the architecture it was created with in
      case it is needed later in the unwinding process.
      
      Added a function that can tell us DWARF register names for ARM that goes
      along with the source/Utility/ARM_DWARF_Registers.h file: 
      
              source/Utility/ARM_DWARF_Registers.c
              
      Took some of plug-ins out of the lldb_private namespace.
      
      llvm-svn: 130189
      2ed751bd
    • Caroline Tice's avatar
      · c2bbb49a
      Caroline Tice authored
      Add 'lldb_private' namespace where necessary to prevent ambiguity and
      resulting infinite loops.
      
      llvm-svn: 130159
      c2bbb49a
  13. Apr 25, 2011
  14. Apr 23, 2011
    • Greg Clayton's avatar
      Fixed the SymbolContext::DumpStopContext() to correctly indent and dump · 7e14f91d
      Greg Clayton authored
      inline contexts when the deepest most block is not inlined.
      
      Added source path remappings to the lldb_private::Target class that allow it
      to remap paths found in debug info so we can find source files that are elsewhere
      on the current system.
      
      Fixed disassembly by function name to disassemble inline functions that are
      inside other functions much better and to show enough context before the
      disassembly output so you can tell where things came from.
      
      Added the ability to get more than one address range from a SymbolContext 
      class for the case where a block or function has discontiguous address ranges.
      
      llvm-svn: 130044
      7e14f91d
    • Jim Ingham's avatar
      Fix up how the ValueObjects manage their life cycle so that you can hand out a shared · 58b59f95
      Jim Ingham authored
      pointer to a ValueObject or any of its dependent ValueObjects, and the whole cluster will
      stay around as long as that shared pointer stays around.
      
      llvm-svn: 130035
      58b59f95
  15. Apr 22, 2011
Loading