Skip to content
  1. Dec 07, 2012
    • Andrew Kaylor's avatar
      Set ThreadPlanCallFunction to private in ConstructorSetup. This fixes a... · 327c267a
      Andrew Kaylor authored
      Set ThreadPlanCallFunction to private in ConstructorSetup.  This fixes a problem on Linux where 'continue' was misfiring after an expression evaluation when stopped at a breakpoint.  The problem was that InferiorCallMmap was not setting its ThreadPlanCallFunction to private and so the completion of that thread plan appeared to be the stop reason and therefore the 'continue' operation failed to step over the breakpoint.  The SetPrivate call is being put in ThreadPlanCallFunction rather than InferiorCallMmap to make the solution more general.
      
      llvm-svn: 169618
      327c267a
  2. Dec 06, 2012
  3. Dec 05, 2012
  4. Dec 04, 2012
    • Greg Clayton's avatar
      <rdar://problem/12798131> · 3bcdfc0e
      Greg Clayton authored
      Cleaned up the option parsing code to always pass around the short options as integers. Previously we cast this down to "char" and lost some information. I recently added an assert that would detect duplicate short character options which was firing during the test suite.
      
      This fix does the following:
      - make sure all short options are treated as "int"
      - make sure that short options can be non-printable values when a short option is not required or when an option group is mixed into many commands and a short option is not desired
      - fix the help printing to "do the right thing" in all cases. Previously if there were duplicate short character options, it would just not emit help for the duplicates
      - fix option parsing when there are duplicates to parse options correctly. Previously the option parsing, when done for an OptionGroup, would just start parsing options incorrectly by omitting table entries and it would end up setting the wrong option value
      
      llvm-svn: 169189
      3bcdfc0e
  5. Nov 29, 2012
    • Greg Clayton's avatar
      <rdar://problem/12687087> · 50a24bd3
      Greg Clayton authored
      Emit an error when using "target modules add PATH" where PATH points to a debug info only (dSYM) file.
      
      Also added a "--uuid" option for "target modules add --uuid UUID" to locate and load a module by UUID if the host supports it.
      
      llvm-svn: 168949
      50a24bd3
    • Han Ming Ong's avatar
      <rdar://problem/12780259> · 929a94f0
      Han Ming Ong authored
      Prevent async and sync calls to get profile data from stomping on each other.
      At the same time, don't use '$' as end delimiter per chunk of profile data.
      
      llvm-svn: 168948
      929a94f0
    • Daniel Malea's avatar
      Resolve printf formatting warnings on Linux: · d01b2953
      Daniel Malea authored
      - use macros from inttypes.h for format strings instead of OS-specific types
      
      Patch from Matt Kopec!
      
      llvm-svn: 168945
      d01b2953
    • Greg Clayton's avatar
      <rdar://problem/12655594> · e1e835c6
      Greg Clayton authored
      Be sure to resolve the file path for the "target.process.python-os-plugin-path" setting.
      
      llvm-svn: 168916
      e1e835c6
    • Greg Clayton's avatar
      <rdar://problem/12445557> · 75a0333b
      Greg Clayton authored
      Make stack frames fix up their line table entries when the target has source remappings. Also rearranged how the m_sc.target_sp was filled in so it can be used during the StackFrame::GetSymbolContext(...) function.
      
      llvm-svn: 168845
      75a0333b
    • Jim Ingham's avatar
      Add an example of using the target.process.extra-startup-command to turn on... · 8c3f2764
      Jim Ingham authored
      Add an example of using the target.process.extra-startup-command to turn on debugserver logging since
      we always forget how to do this...
      
      llvm-svn: 168840
      8c3f2764
  6. Nov 27, 2012
  7. Nov 20, 2012
  8. Nov 17, 2012
  9. Nov 15, 2012
  10. Nov 14, 2012
  11. Nov 10, 2012
  12. Nov 08, 2012
    • Enrico Granata's avatar
      Minor cleanups to the new ModuleList notification APIs: passing in the... · efe637d4
      Enrico Granata authored
      Minor cleanups to the new ModuleList notification APIs: passing in the ModuleList as part of the callbacks, and not copying the notifier as part of copy constructing and assigning
      
      llvm-svn: 167592
      efe637d4
    • Enrico Granata's avatar
      <rdar://problem/12586350> · 1759848b
      Enrico Granata authored
      This commit does three things:
      (a) introduces a new notification model for adding/removing/changing modules to a ModuleList, and applies it to the Target's ModuleList, so that we make sure to always trigger the right set of actions
      whenever modules come and go in a target. Certain spots in the code still need to "manually" notify the Target for several reasons, so this is a work in progress
      (b) adds a new capability to the Platforms: locating a scripting resources associated to a module. A scripting resource is a Python file that can load commands, formatters, ... and any other action
      of interest corresponding to the loading of a module. At the moment, this is only implemented on Mac OS X and only for files inside .dSYM bundles - the next step is going to be letting
      the frameworks themselves hold their scripting resources. Implementors of platforms for other systems are free to implement "the right thing" for their own worlds
      (c) hooking up items (a) and (b) so that targets auto-load the scripting resources as the corresponding modules get loaded in a target. This has a few caveats at the moment:
       - the user needs to manually add the .py file to the dSYM (soon, it will also work in the framework itself)
       - if two modules with the same name show up during the lifetime of an LLDB session, the second one won't be able to load its scripting resource, but will otherwise work just fine
      
      llvm-svn: 167569
      1759848b
  13. Nov 06, 2012
  14. Nov 02, 2012
    • Sean Callanan's avatar
      Extra safeguards to ensure that we never query · 5540094c
      Sean Callanan authored
      the runtime if we have complete debug information
      for a class.
      
      Also made the Objective-C language runtime return
      NULL when asked for the complete debug information
      (i.e., information from DWARF, not information from
      the runtime) if that information isn't present.  It
      used to return a non-authoritative version, which
      made it hard for clients to determine whether
      complete debug information was available.
      
      <rdar://problem/12608895>
      
      llvm-svn: 167299
      5540094c
  15. Oct 31, 2012
  16. Oct 29, 2012
    • Greg Clayton's avatar
      <rdar://problem/12500785> · 35a4cc5e
      Greg Clayton authored
      I tracked down a leak that could happen when detaching from a process where the lldb_private::Process objects would stay around forever. This was caused by a eStateDetached event that was queued up on the lldb_private::Process private state thread listener. Since process events contain shared pointers to the process, this is dangerous if they don't get consume or cleared as having the lldb_private::Process class contain a collection of things that have a shared pointer to yourself is obviously bad. 
      
      To fix this I modified the Process::Finalize() function to clear this list. The actual thing that was holding onto the ModuleSP and thus the static archive, was a stack frame. Since the process wasn't going away, it still had thread objects and they still had frames. I modified the Thread::Destroy() to clear the stack frames to ensure this further doesn't happen.
      
      llvm-svn: 166964
      35a4cc5e
  17. Oct 26, 2012
  18. Oct 25, 2012
  19. Oct 24, 2012
  20. Oct 23, 2012
  21. Oct 19, 2012
    • Greg Clayton's avatar
      Added the infrastructure necessary for plug-ins to be able to add their own... · e8cd0c98
      Greg Clayton authored
      Added the infrastructure necessary for plug-ins to be able to add their own settings instead of having settings added to existing ones. In particular "target.disable-kext-loading" was added to "target" where it should actually be specific to the the dynamic loader plugin. Now the plug-in manager has the ability to create settings at the root level starting with "plugin". Each plug-in type can add new sub dictionaries, and then each plug-in can register a setting dictionary under its own short name. For example the DynamicLoaderDarwinKernel plug-in now registers a setting dictionary at:
      
      plugin
          dynamic-loader
              macosx-kernel
                  (bool) disable-kext-loading
                  
      To settings can be set using:
      
      (lldb) settings set plugin.dynamic-loader.macosx-kernel.disable-kext-loading true
      
      I currently only hooked up the DynamicLoader plug-ins, but the code is very easy to duplicate when and if we need settings for other plug-ins.
      
      llvm-svn: 166294
      e8cd0c98
    • Jason Molenda's avatar
      Add a new target setting to disable automatic loading of kext images · 87a04b24
      Jason Molenda authored
      in a kernel debug session:
      
      settings set target.disable-kext-loading true
      
      <rdar://problem/12490623>
      
      llvm-svn: 166262
      87a04b24
    • Greg Clayton's avatar
      <rdar://problem/12491420> · c9d645d3
      Greg Clayton authored
      Added a new setting that allows a python OS plug-in to detect threads and provide registers for memory threads. To enable this you set the setting:
      
      settings set target.process.python-os-plugin-path lldb/examples/python/operating_system.py
      
      Then run your program and see the extra threads. 
      
      llvm-svn: 166244
      c9d645d3
  22. Oct 18, 2012
    • Greg Clayton's avatar
      <rdar://problem/12462048> · a0ca6601
      Greg Clayton authored
      <rdar://problem/12068650>
      
      More fixes to how we handle paths that are used to create a target.
      
      This modification centralizes the location where and how what the user specifies gets resolved. Prior to this fix, the TargetList::CreateTarget variants took a FileSpec object which meant everyone had the opportunity to resolve the path their own way. Now both CreateTarget variants take a "const char *use_exe_path" which allows the TargetList::CreateTarget to centralize where the resolving happens and "do the right thing".
      
      llvm-svn: 166186
      a0ca6601
Loading