Skip to content
  1. Apr 10, 2012
    • Sean Callanan's avatar
      Set variables returned by utility functions to · 6153c518
      Sean Callanan authored
      not consume slots in the persistent variable
      store.
      
      llvm-svn: 154416
      6153c518
    • Greg Clayton's avatar
      Added a new packet to our GDB remote protocol: · 4463399b
      Greg Clayton authored
      	QListThreadsInStopReply
      	
      This GDB remote query command can enable added a "threads" key/value pair to all stop reply packets so that we always get a list of all threads in each stop reply packet. It increases performance if enabled (the reply to the "QListThreadsInStopReply" is "OK") by saving us from sending to command/reply pairs (the "qfThreadInfo" and "qsThreadInfo" packets), and also helps us keep the current process state up to date. 
      
      llvm-svn: 154380
      4463399b
    • Greg Clayton's avatar
      A general stability fix where we _always_ get the thread list immediately... · 9e92090b
      Greg Clayton authored
      A general stability fix where we _always_ get the thread list immediately after we get the stop packets. We had some racy conditions where thread 1 might be sending a packet and thread 2 tries to send a packet to get the thread list and it fails and ends up with an empty list. Packets use a sequence mutex to be able to ensure when you send a packet, you get the resonse. This sequence mutex is take when the process is running, and as we exit the running state and notify our process with the stop packet, we now always get the thread ID list before we do anything and before we can run into race conditions. 
      
      The next step is to have our stop reply packets send the thread list in the actual stop reply packet to avoid a 2 packet overhead of sending the qfThreadInfo + response and qfThreadInfo + response.
      
      llvm-svn: 154376
      9e92090b
    • Jim Ingham's avatar
      Two changes, · 076b3041
      Jim Ingham authored
      1) Start the PrivateStateThread stopped, and then in
      StartPrivateStateThread, make the private state thread and then
      resume it before we say the thread is created.  That way we know it is
      listening for events by the time we get out of
      StartPrivateStateThread.
      
      2) Backstop running a thread plan when calling Process::RunThreadPlan
      on the private state thread with a ThreadPlanBase so that running the
      plan doesn't pass its stop events to whatever plans happen to be above
      us on the thread plan stack.
      
      llvm-svn: 154368
      076b3041
    • Jim Ingham's avatar
      Clear the "m_actual_stop_info_sp" in the thread during Destroy. It might be a... · d8ba464b
      Jim Ingham authored
      Clear the "m_actual_stop_info_sp" in the thread during Destroy.  It might be a StopInfoThreadPlan, and that would hold onto members that need to be destroyed while the Full thread is still around.
      
      llvm-svn: 154366
      d8ba464b
    • Greg Clayton's avatar
      Trying to solve our disappearing thread issues by making thread list updates safer. · 9fc13556
      Greg Clayton authored
      The current ProcessGDBRemote function that updates the threads could end up with an empty list if any other thread had the sequence mutex. We now don't clear the thread list when we can't access it, and we also have changed how lldb_private::Process handles the return code from the:
      
      virtual bool
      Process::UpdateThreadList (lldb_private::ThreadList &old_thread_list, 
                             	   lldb_private::ThreadList &new_thread_list) = 0;
      
      A bool is now returned to indicate if the list was actually updated or not and the lldb_private::Process class will only update the stop ID of the validity of the thread list if "true" is returned.
      
      The ProcessGDBRemote also got an extra assertion that will hopefully assert when running debug builds so we can find the source of this issue.
      
      llvm-svn: 154365
      9fc13556
    • Enrico Granata's avatar
      Fixing a problem where some uninitialized cases of vectors could cause... · cb50d341
      Enrico Granata authored
      Fixing a problem where some uninitialized cases of vectors could cause diagnostic output from the synthetic children providers - this time the fix should work
      
      llvm-svn: 154361
      cb50d341
    • Greg Clayton's avatar
      Added a packet history object to the GDBRemoteCommunication class that is... · c1422c1d
      Greg Clayton authored
      Added a packet history object to the GDBRemoteCommunication class that is always remembering the last 512 packets that were sent/received. These packets get dumped if logging gets enabled, or when the new expr lldb::DumpProcessGDBRemotePacketHistory (void *process, const char *log_file_path) global function is called.
      
      llvm-svn: 154354
      c1422c1d
    • Greg Clayton's avatar
      Removed an include that wasn't needed. · 5c610547
      Greg Clayton authored
      llvm-svn: 154353
      5c610547
    • Greg Clayton's avatar
      Fixed an issue that could occur when looking up functions inside of a... · 437a135d
      Greg Clayton authored
      Fixed an issue that could occur when looking up functions inside of a namespace where if the NamespaceDecl hadn't been parsed yet, we would say a function wasn't in a namespace.
      
      Also improved the logging that happens with "log enable dwarf lookups" is enabled to show when we find matches.
      
      llvm-svn: 154352
      437a135d
    • Jim Ingham's avatar
      Rework how master plans declare themselves. Also make "PlanIsBasePlan" not... · cf274f91
      Jim Ingham authored
      Rework how master plans declare themselves.  Also make "PlanIsBasePlan" not rely only on this being the bottom plan in the stack, but allow the plan to declare itself as such.
      
      llvm-svn: 154351
      cf274f91
  2. Apr 09, 2012
    • Greg Clayton's avatar
      <rdar://problem/11202426> · 0cd70866
      Greg Clayton authored
      Work around a deadlocking issue where "SBDebugger::MemoryPressureDetected ()" is being called and is causing a deadlock. We now just try and get the lock when trying to trim down the unique modules so we don't deadlock debugger GUI programs until we can find the root cause.
      
      llvm-svn: 154339
      0cd70866
  3. Apr 07, 2012
  4. Apr 06, 2012
    • Johnny Chen's avatar
      The final batch of adding @dsym_test/@dwarf_test decorators. · 7bba2c6d
      Johnny Chen authored
      llvm-svn: 154211
      7bba2c6d
    • Sean Callanan's avatar
      Removed a call to truncate() which slowed down · afc7b13e
      Sean Callanan authored
      the stress test by a LOT.
      
      llvm-svn: 154208
      afc7b13e
    • Sean Callanan's avatar
      Updated the disassembler stress tester with two · ceabd2d7
      Sean Callanan authored
      new features:
      
      (1) it outputs the instruction currently being
          tested to a log file, if a path is provided
      
      (2) if instructed, it prints the time remaining
          in the exhaustive test
      
      llvm-svn: 154205
      ceabd2d7
    • Johnny Chen's avatar
      Second batch of adding @dsym_test/@dwarf_test decorators to existing test cases. · 24086bc9
      Johnny Chen authored
      Plus some minor cleanup of test method names.
      Third and final batch is coming.
      
      llvm-svn: 154197
      24086bc9
    • Greg Clayton's avatar
      Fixed ModuleList::FindTypes() so that when a symbol context is supplied that... · 780af515
      Greg Clayton authored
      Fixed ModuleList::FindTypes() so that when a symbol context is supplied that contains a valid module, it will search that module first, then if we are still looking for matches (we have found less that "max_matches"), search in all of the other modules as well.
      
      llvm-svn: 154186
      780af515
    • Sean Callanan's avatar
      Fixed a leak in the LLVM disassembler where we · 2b54db76
      Sean Callanan authored
      did not destroy the underlying disassembler in 
      our destructor.
      
      llvm-svn: 154185
      2b54db76
    • Greg Clayton's avatar
      In a prior commit, I changed the parameters around on a ModuleList::FindTypes... · 29399a24
      Greg Clayton authored
      In a prior commit, I changed the parameters around on a ModuleList::FindTypes where the old parameters that existing clients were using would have been compatible, so I renamed ModuleList::FindTypes to ModuleList::FindTypes2. Then I made fixes and verified I updated and fixed all client code, but I forgot to rename the function back to ModuleList::FindTypes(). I am doing that now and also cleaning up the C++ dynamic type code a bit.
      
      llvm-svn: 154182
      29399a24
    • Greg Clayton's avatar
      Check if the two clang opaque type pointers are equal before doing anything... · 55995ebb
      Greg Clayton authored
      Check if the two clang opaque type pointers are equal before doing anything more exhaustive comparison.
      
      llvm-svn: 154181
      55995ebb
    • Greg Clayton's avatar
      Added logging when API calls try to do something that shouldn't be done when... · c9858e4d
      Greg Clayton authored
      Added logging when API calls try to do something that shouldn't be done when the process is stopped by having logging calls that end with "error: process is running".
      
      Also test for the process to be stopped when many SBValue API calls are made to make sure it is safe to evaluate values, children of values and much more.
      
      llvm-svn: 154160
      c9858e4d
    • Johnny Chen's avatar
      Add a new option to the test driver, -N dsym or -N dwarf, in order to exclude tests decorated with · f1548d4f
      Johnny Chen authored
      either @dsym_test or @dwarf_test to be executed during the testsuite run.  There are still lots of
      Test*.py files which have not been decorated with the new decorator.
      
      An example:
      
      # From TestMyFirstWatchpoint.py ->
      class HelloWatchpointTestCase(TestBase):
      
          mydir = os.path.join("functionalities", "watchpoint", "hello_watchpoint")
      
          @dsym_test
          def test_hello_watchpoint_with_dsym_using_watchpoint_set(self):
              """Test a simple sequence of watchpoint creation and watchpoint hit."""
              self.buildDsym(dictionary=self.d)
              self.setTearDownCleanup(dictionary=self.d)
              self.hello_watchpoint()
      
          @dwarf_test
          def test_hello_watchpoint_with_dwarf_using_watchpoint_set(self):
              """Test a simple sequence of watchpoint creation and watchpoint hit."""
              self.buildDwarf(dictionary=self.d)
              self.setTearDownCleanup(dictionary=self.d)
              self.hello_watchpoint()
      
      
      # Invocation ->
      [17:50:14] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -N dsym -v -p TestMyFirstWatchpoint.py
      LLDB build dir: /Volumes/data/lldb/svn/ToT/build/Debug
      LLDB-137
      Path: /Volumes/data/lldb/svn/ToT
      URL: https://johnny@llvm.org/svn/llvm-project/lldb/trunk
      Repository Root: https://johnny@llvm.org/svn/llvm-project
      Repository UUID: 91177308-0d34-0410-b5e6-96231b3b80d8
      Revision: 154133
      Node Kind: directory
      Schedule: normal
      Last Changed Author: gclayton
      Last Changed Rev: 154109
      Last Changed Date: 2012-04-05 10:43:02 -0700 (Thu, 05 Apr 2012)
      
      
      
      Session logs for test failures/errors/unexpected successes will go into directory '2012-04-05-17_50_49'
      Command invoked: python ./dotest.py -N dsym -v -p TestMyFirstWatchpoint.py
      compilers=['clang']
      
      Configuration: arch=x86_64 compiler=clang
      ----------------------------------------------------------------------
      Collected 2 tests
      
      1: test_hello_watchpoint_with_dsym_using_watchpoint_set (TestMyFirstWatchpoint.HelloWatchpointTestCase)
         Test a simple sequence of watchpoint creation and watchpoint hit. ... skipped 'dsym tests'
      2: test_hello_watchpoint_with_dwarf_using_watchpoint_set (TestMyFirstWatchpoint.HelloWatchpointTestCase)
         Test a simple sequence of watchpoint creation and watchpoint hit. ... ok
      
      ----------------------------------------------------------------------
      Ran 2 tests in 1.138s
      
      OK (skipped=1)
      Session logs for test failures/errors/unexpected successes can be found in directory '2012-04-05-17_50_49'
      [17:50:50] johnny:/Volumes/data/lldb/svn/ToT/test $ 
      
      llvm-svn: 154154
      f1548d4f
    • Bill Wendling's avatar
      Add flag to warn about ivar initialization reordering. · c80efb41
      Bill Wendling authored
      llvm-svn: 154153
      c80efb41
    • Bill Wendling's avatar
      explicitly cast the value. · 04e7e0ba
      Bill Wendling authored
      llvm-svn: 154148
      04e7e0ba
    • Bill Wendling's avatar
      Order ivar initializers to how they're declared in the class. · 7a4b007c
      Bill Wendling authored
      llvm-svn: 154147
      7a4b007c
    • Bill Wendling's avatar
      Order ivar initializers to how they're declared in the class. · e6eeef01
      Bill Wendling authored
      llvm-svn: 154146
      e6eeef01
    • Bill Wendling's avatar
      Silence unused warning. · 4fe443aa
      Bill Wendling authored
      llvm-svn: 154145
      4fe443aa
    • Sean Callanan's avatar
      Added a stress-tester for LLDB's disassembler. · d181730a
      Sean Callanan authored
      Right now it only works on Mac OS X, but other
      platforms would just need to add their own
      implementation of AddLLDBToSysPathOn*().
      
      The stress-tester has two modes:
      
      Used with --bytes N --random, the stress-tester
      generates random instructions of length N and
      runs them through the disassembler.  This is
      suitable for architectures like Intel where it
      is combinatorially infeasible to run through the
      entire space of possible instructions.
      
      Used with --bytes N and no arguments (or --start
      S --stride T), the stress-tester tests the
      disassembler with a monotonically increasing
      sequence of instructions.
      
      The --start and --stride arguments are intended
      for use in multiprocessing environments.  Give
      each core an ID from 0 .. T-1, pass the ID in as
      the --start, and use T as the stride, and you
      can launch one copy of the stress-tester on each
      core you have available.
      
      llvm-svn: 154143
      d181730a
  5. Apr 05, 2012
    • Greg Clayton's avatar
      Enable building the POSIX-DYLD dynamic loader plug-in in the Makefile build... · d84cec07
      Greg Clayton authored
      Enable building the POSIX-DYLD dynamic loader plug-in in the Makefile build since it can be used for remote debugging.
      
      llvm-svn: 154109
      d84cec07
    • Bill Wendling's avatar
    • Greg Clayton's avatar
      Added a new Host class: ReadWriteLock · 7fdf9ef1
      Greg Clayton authored
      This abstracts read/write locks on the current host system. It is currently backed by pthread_rwlock_t objects so it should work on all unix systems.
      
      We also need a way to control multi-threaded access to the process through the public API when it is running. For example it isn't a good idea to try and get stack frames while the process is running. To implement this, the lldb_private::Process class now contains a ReadWriteLock member variable named m_run_lock which is used to control the public process state. The public process state represents the state of the process as the client knows it. The private is used to control the actual current process state. So the public state of the process can be stopped, yet the private state can be running when evaluating an expression for example. 
      
      Adding the read/write lock where readers are clients that want the process to stay stopped, and writers are clients that run the process, allows us to accurately control multi-threaded access to the process.
      
      Switched the SBThread and SBFrame over to us shared pointers to the ExecutionContextRef class instead of making their own class to track this. This fixed an issue with assigning on SBFrame to another and will also centralize the code that tracks weak references to execution context objects into one location.
      
      llvm-svn: 154099
      7fdf9ef1
    • Bill Wendling's avatar
      The DynamicLoaderPOSIXDYLD calls aren't available on Apple systems. · e914660c
      Bill Wendling authored
      llvm-svn: 154086
      e914660c
Loading