Skip to content
  1. Jun 02, 2014
  2. May 30, 2014
    • Greg Clayton's avatar
      Don't use libc's "char *basename(char *)" or "char *dirname(char *)" as they are not thread safe. · 6bc8739e
      Greg Clayton authored
      I switched the lldb_private::FileSpec code over to use "llvm::StringRef llvm::sys::path::filename(llvm::StringRef)" for basename() and "llvm::StringRef llvm::sys::path::parent_path(llvm::StringRef)" for dirname().
      
      <rdar://problem/16870083>
      
      llvm-svn: 209917
      6bc8739e
    • Todd Fiala's avatar
      gdb-remote signal delivery test cleanup. · 9c00cf55
      Todd Fiala authored
      Learned that MacOSX only accepts signal delivery on a thread that is
      already signal handling.  Reworked the test exe to cause a SIGSEGV
      and recover if either nothing intercepts the SIGSEGV handler, or
      if a SIGUSR1 is inserted.  The test uses the latter part to test
      signal delivery on continue using the SIGUSR1.
      
      I still don't have this working on MacOSX.  I'm seeing the
      signal get delivered to a different thread than the one I'm
      specifying with $Hc{thread-id} + $C{signo}, or with
      $vCont;C{signo}:{thread-id};c.  I'll come back to this
      after getting it working on the llgs branch on Linux x86_64.
      
      llvm-svn: 209912
      9c00cf55
  3. May 29, 2014
    • Greg Clayton's avatar
      iOS simulator cleanup to make sure we use "*-apple-ios" for iOS simulator apps and binaries. · 7ab7f89a
      Greg Clayton authored
      Changes include:
      - ObjectFileMachO can now determine if a binary is "*-apple-ios" or "*-apple-macosx" by checking the min OS and SDK load commands
      - ArchSpec now says "<arch>-apple-macosx" is equivalent to "<arch>-apple-ios" since the simulator mixes and matches binaries (some from the system and most from the iOS SDK).
      - Getting process inforamtion on MacOSX now correctly classifies iOS simulator processes so they have "*-apple-ios" architectures in the ProcessInstanceInfo
      - PlatformiOSSimulator can now list iOS simulator processes correctly instead of showing nothing by using:
          (lldb) platform select ios-simulator
          (lldb) platform process list
      - debugserver can now properly return "*-apple-ios" for the triple in the process info packets for iOS simulator executables
      - GDBRemoteCommunicationClient now correctly passes along the triples it gets for process info by setting the OS in the llvm::Triple correctly
      
      <rdar://problem/17060217>
      
      llvm-svn: 209852
      7ab7f89a
    • Todd Fiala's avatar
      gdb-remote testing: new test, cleaned up socket reading. · 0428c978
      Todd Fiala authored
      Added new SocketPacketPump class to decouple gdb remote packet
      reading from packet expectations code.  This allowed for cleaner
      implementation of the separate $O output streams (non-deterministic
      packaging of inferior stdout/stderr) from all the rest of the packets.
      
      Added a packet expectation matcher that can match expected accumulated
      output with a timeout.  Use a dictionary with "type":"output_match".
      See lldbgdbserverutils.MatchRemoteOutputEntry for details.
      
      Added a gdb remote test to verify that $Hc (continue thread selection)
      plus signal delivery ($C{signo}) works.  Having trouble getting this
      to pass with debugserver on MacOSX 10.9.  Tried different variants,
      including $vCont;C{signo}:{thread-id};c.  In some cases, I get the
      test exe's signal handler to run ($vCont variant first time), in others I don't
      ($vCont second and further times).  $C{signo} doesn't hit the signal
      handler code at all in the test exe but delivers a stop.  Further
      $Hc and $C{signo} deliver the stop marking the wrong thread.  For now I'm
      marking the test as XFAIL on dsym/debugserver.  Will revisit this on
      lldb-dev.
      
      Updated the text exe for these tests to support thread:print-ids (each
      thread announces its thread id) and provide a SIGUSR1 thread handler
      that prints out the thread id on which it was signaled.
      
      llvm-svn: 209845
      0428c978
    • Greg Clayton's avatar
      Fixed the Module::Module(ModuleSpec) constructor to properly copy the file... · 36d7c894
      Greg Clayton authored
      Fixed the Module::Module(ModuleSpec) constructor to properly copy the file offset and object file mod time from the actual module specifications so we will always be able to directly load the image we care about when calling Module::GetObjectFile().
      
      llvm-svn: 209833
      36d7c894
    • Arnaud A. de Grandmaison's avatar
      Fix r209807 which inadvertently removed things · 53ae251a
      Arnaud A. de Grandmaison authored
      llvm-svn: 209809
      53ae251a
    • Nikola Smiljanic's avatar
      Fix build. Method was renamed in r209800. · 2882a123
      Nikola Smiljanic authored
      llvm-svn: 209807
      2882a123
  4. May 28, 2014
  5. May 26, 2014
  6. May 24, 2014
    • Jason Molenda's avatar
      Add a lock ivar to the Platform so that multiple Targets · 4da8706e
      Jason Molenda authored
      trying to populate the list of trap handler names at
      the same time don't conflict with one another.
      <rdar://problem/17011969> 
      
      llvm-svn: 209563
      4da8706e
    • Todd Fiala's avatar
      Remove some unnecessary comments from previous check-in. · 771bb72a
      Todd Fiala authored
      Removed a "done" TODO comment.
      
      Moved some helper methods to the top of the unit test.
      
      Removed some commented out code I was considering implementing
      before I came up with a better overall approach.
      
      llvm-svn: 209561
      771bb72a
    • Todd Fiala's avatar
      Added gdb remote tests to verify $Hg{thread-id}. · dee6d286
      Todd Fiala authored
      Added test to check that each thread reported by $q{f,s}ThreadInfo
      can be switched to by $Hg, verified by a follow-up $qC.
      
      Modified test exe to accept "thread:new" to create a new thread 
      that runs and sleeps for 5 seconds.
      
      @llgs_test/@debugserver_test now buffer output.
         
      llgs and debugserver gdbremote protocol tests now collect $O notification
      output into the context returned from expect_lldb_gdbserver_replay.
      context["O_count"] is an integer indicating the number of $O packets
      collected during the replay, and context["O_content"] contains the
      accumulated hex-decoded text output by the inferior (stdout and stderr).
      
      Modified the $O check test to check the accumulated output rather than
      a direct $O packet.
      
      llvm-svn: 209560
      dee6d286
  7. May 23, 2014
  8. May 22, 2014
  9. May 21, 2014
  10. May 20, 2014
    • Reid Kleckner's avatar
      Update .arcconfig to point to reviews.llvm.org · 64976a2a
      Reid Kleckner authored
      Mostly a test review and commit.
      
      Reviewers: tfiala
      
      Differential Revision: http://reviews.llvm.org/D3834
      
      llvm-svn: 209237
      64976a2a
    • Todd Fiala's avatar
      Change gdb remote test support multi-request format. · 4e53f9e1
      Todd Fiala authored
      The multi request-response test infrastructure support was adding
      the optional request suffix iteration index as decimal but it needed
      to be hex per spec.  This change fixes that.
      
      llvm-svn: 209234
      4e53f9e1
    • Todd Fiala's avatar
      Added gdb remote protocol tests across all qRegisterInfo responses. · 62b2317f
      Todd Fiala authored
      Added support for gdb remote protocol capture/playback where there is a query/multiple-response
      pattern.  The new playback entry supports:
      
      - a general query command (key: next_query or query)
      - an optional first-query command if that differs from the subsequent queries (key: first_query)
      - an end regex for matching anything that would signify that the query/multi-response
        iteration has come to an end.  An assumption is that the end regex is not a content
        package we care about aside from ending the iteration. (key: end_regex)
      - an optional 0-based index appended to the end of the query command 
        (key: append_iteration_suffix), default: False.
      - a key used to collect responses from the query.  Any response from the gdb remote
        that doesn't match the end-of-iteration regex is captured in the playback context
        dictionary using the key specified.  That key will be an array, where each array
        entry is one of the responses from the query/multi-response iteration. (key: save_key).
      - a runaway response value, defaulting to 10k, where if this many responses is captured,
        assume the ending condition regex is invalid, or the debug monitor is doing something
        goofy that is going to blow out memory or time. (key: runaway_response_count, default: 10000)
      
      See the lldbgdbserverutils.MultiResponseGdbRemoteEntry class for details.
      
      A MultiResponseGdbRemoteEntry is added by adding an element to the GdbRemoteTestSequence
      (via GdbRemoteTestSequence.add_log_lines), using a dictionary, where the "type" key
      is set to "multi_response", and the rest of the keys in the dictionary entry are
      set to the keys documented for MultiResponseGdbRemoteEntry.
      
      Added helper functions to add the required entry to grab all qRegisterInfo responses.
      Added another helper to parse the qRegisterInfo response packets into an array of
      dictionaries, where each key:value in the dictionary comes from the register info
      response packet.
      
      Added a test to verify that a generic register exists for the program counter,
      frame pointer, stack pointer and cpu flags across all register info responses.
      
      Added a test to verify that at least one register set exists across all register
      info responses.
      
      llvm-svn: 209170
      62b2317f
  11. May 19, 2014
Loading