Skip to content
  1. May 07, 2011
  2. May 06, 2011
  3. May 05, 2011
  4. May 04, 2011
  5. May 03, 2011
  6. 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
    • Johnny Chen's avatar
      Add implementation of '==' and '!=' for SBFileSpec and SBModule. Modify a... · d71670c0
      Johnny Chen authored
      Add implementation of '==' and '!=' for SBFileSpec and SBModule.  Modify a test case to take advantage of 'ths_module == that_module'.
      
      llvm-svn: 130709
      d71670c0
    • Jim Ingham's avatar
      Adding support for fetching the Dynamic Value for ObjC Objects. · 61be0903
      Jim Ingham authored
      llvm-svn: 130701
      61be0903
    • Johnny Chen's avatar
      Fix a typo in comment. · 17bae4c5
      Johnny Chen authored
      llvm-svn: 130698
      17bae4c5
  7. Apr 30, 2011
    • Greg Clayton's avatar
      Added the ability to set the Platform path for a module through the SBModule · 2289fa48
      Greg Clayton authored
      interface.
      
      Added a quick way to set the platform though the SBDebugger interface. I will
      actually an a SBPlatform support soon, but for now this will do.
      
      ConnectionFileDescriptor can be passed a url formatted as: "fd://<fd>" where
      <fd> is a file descriptor in the current process. This is handy if you have
      services, deamons, or other tools that can spawn processes and give you a
      file handle.
      
      llvm-svn: 130565
      2289fa48
Loading