Skip to content
  1. Oct 27, 2010
    • Greg Clayton's avatar
      Updated the lldb_private::Flags class to have better method names and made · 73b472d4
      Greg Clayton authored
      all of the calls inlined in the header file for better performance.
      
      Fixed the summary for C string types (array of chars (with any combo if
      modifiers), and pointers to chars) work in all cases.
      
      Fixed an issue where a forward declaration to a clang type could cause itself
      to resolve itself more than once if, during the resolving of the type itself
      it caused something to try and resolve itself again. We now remove the clang
      type from the forward declaration map in the DWARF parser when we start to 
      resolve it and avoid this additional call. This should stop any duplicate
      members from appearing and throwing all the alignment of structs, unions and
      classes.
      
      llvm-svn: 117437
      73b472d4
  2. Oct 26, 2010
    • Caroline Tice's avatar
      First pass at adding logging capabilities for the API functions. At the moment · ceb6b139
      Caroline Tice authored
      it logs the function calls, their arguments and the return values.  This is not
      complete or polished, but I am committing it now, at the request of someone who
      really wants to use it, even though it's not really done.  It currently does not
      attempt to log all the functions, just the most important ones.  I will be 
      making further adjustments to the API logging code over the next few days/weeks.
      (Suggestions for improvements are welcome).
      
      
      Update the Python build scripts to re-build the swig C++ file whenever 
      the python-extensions.swig file is modified.
      
      Correct the help for 'log enable' command (give it the correct number & type of
      arguments).
      
      llvm-svn: 117349
      ceb6b139
  3. Oct 25, 2010
    • Sean Callanan's avatar
      Fixes to Objective-C built-in type handling. · a242417a
      Sean Callanan authored
      Specifically, we fixed handling of the objc_class
      built-in type, which allowed us to pass
      named Objective-C objects to functions,
      call variable list -t on objects safely, etc.
      
      llvm-svn: 117249
      a242417a
  4. Oct 23, 2010
  5. Oct 22, 2010
  6. Oct 21, 2010
  7. Oct 20, 2010
    • Greg Clayton's avatar
      Fixed an issue where we were resolving paths when we should have been. · 274060b6
      Greg Clayton authored
      So the issue here was that we have lldb_private::FileSpec that by default was 
      always resolving a path when using the:
      
      FileSpec::FileSpec (const char *path);
      
      and in the:
      
      void FileSpec::SetFile(const char *pathname, bool resolve = true);
      
      This isn't what we want in many many cases. One example is you have "/tmp" on
      your file system which is really "/private/tmp". You compile code in that
      directory and end up with debug info that mentions "/tmp/file.c". Then you 
      type:
      
      (lldb) breakpoint set --file file.c --line 5
      
      If your current working directory is "/tmp", then "file.c" would be turned 
      into "/private/tmp/file.c" which won't match anything in the debug info.
      Also, it should have been just a FileSpec with no directory and a filename
      of "file.c" which could (and should) potentially match any instances of "file.c"
      in the debug info.
      
      So I removed the constructor that just takes a path:
      
      FileSpec::FileSpec (const char *path); // REMOVED
      
      You must now use the other constructor that has a "bool resolve" parameter that you must always supply:
      
      FileSpec::FileSpec (const char *path, bool resolve);
      
      I also removed the default parameter to SetFile():
      
      void FileSpec::SetFile(const char *pathname, bool resolve);
      
      And fixed all of the code to use the right settings.
      
      llvm-svn: 116944
      274060b6
    • Johnny Chen's avatar
      For UserSettingsController::UpdateDictionaryVariable(), clear the dictionary · 73b4f711
      Johnny Chen authored
      if passed in a NULL new_value and the operation intended is eVarSetOperationAssign.
      This fixed a bug where in TestSettings.py:
      
              # Set the run-args and the env-vars.
              self.runCmd('settings set target.process.run-args A B C')
              self.runCmd('settings set target.process.env-vars ["MY_ENV_VAR"]=YES')
              # And add hooks to restore the settings during tearDown().
              self.addTearDownHook(
                  lambda: self.runCmd("settings set -r target.process.run-args"))
              self.addTearDownHook(
                  lambda: self.runCmd("settings set -r target.process.env-vars"))
      
      "settings set -r target.process.env-vars" was not restoring the original env-vars
      setting.
      
      llvm-svn: 116895
      73b4f711
    • Jim Ingham's avatar
      Don't cache the public stop reason, since it can change as plan completion... · b15bfc75
      Jim Ingham authored
      Don't cache the public stop reason, since it can change as plan completion gets processed.  That means GetStopReason needs to return a shared pointer, not a pointer to the thread's cached version.  Also allow the thread plans to get and set the thread private stop reason - that is usually more appropriate for the logic the thread plans need to do.
      
      llvm-svn: 116892
      b15bfc75
  8. Oct 19, 2010
    • Greg Clayton's avatar
      Stop the driver from handling SIGPIPE in case we communicate with stale · 3fcbed6b
      Greg Clayton authored
      sockets so the driver doesn't just crash.
      
      Added support for connecting to named sockets (unix IPC sockets) in
      ConnectionFileDescriptor.
      
      Modified the Host::LaunchInNewTerminal() for MacOSX to return the process
      ID of the inferior process instead of the process ID of the Terminal.app. This
      was done by modifying the "darwin-debug" executable to connect to lldb through
      a named unix socket which is passed down as an argument. This allows a quick
      handshake between "lldb" and "darwin-debug" so we can get the process ID
      of the inferior and then attach by process ID and avoid attaching to the 
      inferior by process name since there could be more than one process with 
      that name. This still has possible race conditions, those will be fixed
      in the near future. This fixes the SIGPIPE issues that were sometimes being
      seen when task_for_pid was failing.
      
      llvm-svn: 116792
      3fcbed6b
  9. Oct 18, 2010
    • Greg Clayton's avatar
      Fixed debugserver to properly attach to a process by name with the · 19388cfc
      Greg Clayton authored
      "vAttachName;<PROCNAME>" packet, and wait for a new process by name to launch 
      with the "vAttachWait;<PROCNAME>".
      
      Fixed a few issues with attaching where if DoAttach() returned no error, yet
      there was no valid process ID, we would deadlock waiting for an event that
      would never happen.
      
      Added a new "process launch" option "--tty" that will launch the process 
      in a new terminal if the Host layer supports the "Host::LaunchInNewTerminal(...)"
      function. This currently works on MacOSX and will allow the debugging of 
      terminal applications that do complex operations with the terminal. 
      
      Cleaned up the output when the process resumes, stops and halts to be 
      consistent with the output format.
      
      llvm-svn: 116693
      19388cfc
    • Greg Clayton's avatar
      Added a new Host call to find LLDB related paths: · dd36defd
      Greg Clayton authored
          static bool
          Host::GetLLDBPath (lldb::PathType path_type, FileSpec &file_spec);
          
      This will fill in "file_spec" with an appropriate path that is appropriate
      for the current Host OS. MacOSX will return paths within the LLDB.framework,
      and other unixes will return the paths they want. The current PathType
      enums are:
      
      typedef enum PathType
      {
          ePathTypeLLDBShlibDir,          // The directory where the lldb.so (unix) or LLDB mach-o file in LLDB.framework (MacOSX) exists
          ePathTypeSupportExecutableDir,  // Find LLDB support executable directory (debugserver, etc)
          ePathTypeHeaderDir,             // Find LLDB header file directory
          ePathTypePythonDir              // Find Python modules (PYTHONPATH) directory
      } PathType;
      
      All places that were finding executables are and python paths are now updated
      to use this Host call.
      
      Added another new host call to launch the inferior in a terminal. This ability
      will be very host specific and doesn't need to be supported on all systems.
      MacOSX currently will create a new .command file and tell Terminal.app to open
      the .command file. It also uses the new "darwin-debug" app which is a small
      app that uses posix to exec (no fork) and stop at the entry point of the 
      program. The GDB remote plug-in is almost able launch a process and attach to
      it, it currently will spawn the process, but it won't attach to it just yet.
      This will let LLDB not have to share the terminal with another process and a
      new terminal window will pop up when you launch. This won't get hooked up
      until we work out all of the kinks. The new Host function is:
      
          static lldb::pid_t
          Host::LaunchInNewTerminal (
              const char **argv,   // argv[0] is executable
              const char **envp,
              const ArchSpec *arch_spec,
              bool stop_at_entry,
              bool disable_aslr);
      
      Cleaned up FileSpec::GetPath to not use strncpy() as it was always zero 
      filling the entire path buffer.
      
      Fixed an issue with the dynamic checker function where I missed a '$' prefix
      that should have been added.
      
      llvm-svn: 116690
      dd36defd
  10. Oct 16, 2010
    • Greg Clayton's avatar
      Made many ConstString functions inlined in the header file. · 7b462cc1
      Greg Clayton authored
      Changed all of our synthesized "___clang" functions, types and variables
      that get used in expressions over to have a prefix of "$_lldb". Now when we
      do name lookups we can easily switch off of the first '$' character to know
      if we should look through only our internal (when first char is '$') stuff,
      or when we should look through program variables, functions and types.
      
      Converted all of the clang expression code over to using "const ConstString&" 
      values for names instead of "const char *" since there were many places that
      were converting the "const char *" names into ConstString names and them
      throwing them away. We now avoid making a lot of ConstString conversions and
      benefit from the quick comparisons in a few extra spots.
      
      Converted a lot of code from LLVM coding conventions into LLDB coding 
      conventions.
      
      llvm-svn: 116634
      7b462cc1
    • Jim Ingham's avatar
      Mark a ValueObjectConstResult as valid if it is created with some data, don't... · e2f8841d
      Jim Ingham authored
      Mark a ValueObjectConstResult as valid if it is created with some data, don't wait till it gets updated.
      
      llvm-svn: 116633
      e2f8841d
  11. Oct 15, 2010
    • Jim Ingham's avatar
      Added support for breakpoint conditions. I also had to separate the "run the... · 36f3b369
      Jim Ingham authored
      Added support for breakpoint conditions.  I also had to separate the "run the expression" part of ClangFunction::Execute from the "Gather the expression result" so that in the case of the Breakpoint condition I can move the condition evaluation into the normal thread plan processing.
      
      Also added support for remembering the "last set breakpoint" so that "break modify" will act on the last set breakpoint.
      
      llvm-svn: 116542
      36f3b369
    • Greg Clayton's avatar
      Fixed an expression parsing issue where if you were stopped somewhere without · 8f92f0a3
      Greg Clayton authored
      debug information and you evaluated an expression, a crash would occur as a
      result of an unchecked pointer.
      
      Added the ability to get the expression path for a ValueObject. For a rectangle
      point child "x" the expression path would be something like: "rect.top_left.x".
      This will allow GUI and command lines to get ahold of the expression path for
      a value object without having to explicitly know about the hierarchy. This
      means the ValueObject base class now has a "ValueObject *m_parent;" member.
      All ValueObject subclasses now correctly track their lineage and are able
      to provide value expression paths as well.
      
      Added a new "--flat" option to the "frame variable" to allow for flat variable
      output. An example of the current and new outputs:
      
      (lldb) frame variable 
      argc = 1
      argv = 0x00007fff5fbffe80
      pt = {
        x = 2
        y = 3
      }
      rect = {
        bottom_left = {
          x = 1
          y = 2
        }
        top_right = {
          x = 3
          y = 4
        }
      }
      (lldb) frame variable --flat 
      argc = 1
      argv = 0x00007fff5fbffe80
      pt.x = 2
      pt.y = 3
      rect.bottom_left.x = 1
      rect.bottom_left.y = 2
      rect.top_right.x = 3
      rect.top_right.y = 4
      
      
      As you can see when there is a lot of hierarchy it can help flatten things out.
      Also if you want to use a member in an expression, you can copy the text from
      the "--flat" output and not have to piece it together manually. This can help
      when you want to use parts of the STL in expressions:
      
      (lldb) frame variable --flat
      argc = 1
      argv = 0x00007fff5fbffea8
      hello_world._M_dataplus._M_p = 0x0000000000000000
      (lldb) expr hello_world._M_dataplus._M_p[0] == '\0'
      
      llvm-svn: 116532
      8f92f0a3
  12. Oct 12, 2010
  13. Oct 11, 2010
    • Greg Clayton's avatar
      Added the ability to get error strings back from failed · 46747022
      Greg Clayton authored
      lldb_private::RegularExpression compiles and matches with:
      
          size_t
          RegularExpression::GetErrorAsCString (char *err_str, 
                                                size_t err_str_max_len) const;
          
      Added the ability to search a variable list for variables whose names match
      a regular expression:
      
          size_t
          VariableList::AppendVariablesIfUnique (const RegularExpression& regex, 
                                                 VariableList &var_list, 
                                                 size_t& total_matches);
      
      
      Also added the ability to append a variable to a VariableList only if it is 
      not already in the list:
      
          bool
          VariableList::AddVariableIfUnique (const lldb::VariableSP &var_sp);
      
      Cleaned up the "frame variable" command:
      - Removed the "-n NAME" option as this is the default way for the command to
        work.
      - Enable uniqued regex searches on variable names by fixing the "--regex RE"
        command to work correctly. It will match all variables that match any
        regular expressions and only print each variable the first time it matches.
      - Fixed the option type for the "--regex" command to by eArgTypeRegularExpression
        instead of eArgTypeCount
      
      llvm-svn: 116178
      46747022
  14. Oct 08, 2010
    • Greg Clayton's avatar
      Hooked up ability to look up data symbols so they show up in disassembly · 8941142a
      Greg Clayton authored
      if the address comes from a data section. 
      
      Fixed an issue that could occur when looking up a symbol that has a zero
      byte size where no match would be returned even if there was an exact symbol
      match.
      
      Cleaned up the section dump output and added the section type into the output.
      
      llvm-svn: 116017
      8941142a
  15. Oct 06, 2010
  16. Oct 05, 2010
    • Greg Clayton's avatar
      Added the notion that a value object can be constant by adding: · b71f3844
      Greg Clayton authored
          bool ValueObject::GetIsConstant() const;
          void ValueObject::SetIsConstant();
      
      This will stop anything from being re-evaluated within the value object so
      that constant result value objects can maintain their frozen values without
      anything being updated or changed within the value object.
      
      Made it so the ValueObjectConstResult can be constructed with an 
      lldb_private::Error object to allow for expression results to have errors.
      
      Since ValueObject objects contain error objects, I changed the expression
      evaluation in ClangUserExpression from 
      
          static Error
          ClangUserExpression::Evaluate (ExecutionContext &exe_ctx, 
                                        const char *expr_cstr, 
                                        lldb::ValueObjectSP &result_valobj_sp);
      
      to:
      
          static lldb::ValueObjectSP
          Evaluate (ExecutionContext &exe_ctx, const char *expr_cstr);
          
      Even though expression parsing is borked right now (pending fixes coming from
      Sean Callanan), I filled in the implementation for:
          
          SBValue SBFrame::EvaluateExpression (const char *expr);
          
      Modified all expression code to deal with the above changes.
      
      llvm-svn: 115589
      b71f3844
    • Greg Clayton's avatar
      Added a new ValueObject type that will be used to freeze dry expression · 1d3afba3
      Greg Clayton authored
      results. The clang opaque type for the expression result will be added to the
      Target's ASTContext, and the bytes will be stored in a DataBuffer inside
      the new object. The class is named: ValueObjectConstResult
      
      Now after an expression is evaluated, we can get a ValueObjectSP back that
      contains a ValueObjectConstResult object.
      
      Relocated the value object dumping code into a static function within
      the ValueObject class instead of being in the CommandObjectFrame.cpp file
      which is what contained the code to dump variables ("frame variables").
      
      llvm-svn: 115578
      1d3afba3
    • Jim Ingham's avatar
  17. Oct 04, 2010
    • Jim Ingham's avatar
      Add a "Confirm" function to the CommandInterpreter so you can confirm... · 97a6dc7e
      Jim Ingham authored
      Add a "Confirm" function to the CommandInterpreter so you can confirm potentially dangerous operations in a generic way.
      
      llvm-svn: 115546
      97a6dc7e
    • Greg Clayton's avatar
      Fixed and issue where we weren't seeing inlined functions anymore. We also now... · 0d9c9934
      Greg Clayton authored
      Fixed and issue where we weren't seeing inlined functions anymore. We also now show the correct pc-offset within the inlined function. 
      
      llvm-svn: 115522
      0d9c9934
    • Greg Clayton's avatar
      Added file and line back to the default thread format. · cf4b9078
      Greg Clayton authored
      llvm-svn: 115519
      cf4b9078
    • Greg Clayton's avatar
      Fixed an issue with the default frame format settings string where if a frame · bb562b13
      Greg Clayton authored
      was stopped in a module, yet had no valid function for the PC, no module would
      be displayed.
      
      llvm-svn: 115490
      bb562b13
    • Greg Clayton's avatar
      There are now to new "settings set" variables that live in each debugger · 0603aa9d
      Greg Clayton authored
      instance:
      
      settings set frame-format <string>
      settings set thread-format <string>
      
      This allows users to control the information that is seen when dumping
      threads and frames. The default values are set such that they do what they
      used to do prior to changing over the the user defined formats.
      
      This allows users with terminals that can display color to make different
      items different colors using the escape control codes. A few alias examples
      that will colorize your thread and frame prompts are:
      
      settings set frame-format 'frame #${frame.index}: \033[0;33m${frame.pc}\033[0m{ \033[1;4;36m${module.file.basename}\033[0;36m ${function.name}{${function.pc-offset}}\033[0m}{ \033[0;35mat \033[1;35m${line.file.basename}:${line.number}}\033[0m\n'
      
      settings set thread-format 'thread #${thread.index}: \033[1;33mtid\033[0;33m = ${thread.id}\033[0m{, \033[0;33m${frame.pc}\033[0m}{ \033[1;4;36m${module.file.basename}\033[0;36m ${function.name}{${function.pc-offset}}\033[0m}{, \033[1;35mstop reason\033[0;35m = ${thread.stop-reason}\033[0m}{, \033[1;36mname = \033[0;36m${thread.name}\033[0m}{, \033[1;32mqueue = \033[0;32m${thread.queue}}\033[0m\n'
      
      A quick web search for "colorize terminal output" should allow you to see what
      you can do to make your output look like you want it.
      
      The "settings set" commands above can of course be added to your ~/.lldbinit
      file for permanent use.
      
      Changed the pure virtual 
          void ExecutionContextScope::Calculate (ExecutionContext&);
      To:
          void ExecutionContextScope::CalculateExecutionContext (ExecutionContext&);
          
      I did this because this is a class that anything in the execution context
      heirarchy inherits from and "target->Calculate (exe_ctx)" didn't always tell
      you what it was really trying to do unless you look at the parameter.
      
      llvm-svn: 115485
      0603aa9d
  18. Sep 30, 2010
    • Greg Clayton's avatar
      Cleaned up a unused member variable in Debugger. · 4957bf69
      Greg Clayton authored
      Added the start of Host specific launch services, though it currently isn't
      hookup up to anything. We want to be able to launch a process and use the
      native launch services to launch an app like it would be launched by the
      user double clicking on the app. We also eventually want to be able to run
      a command line app in a newly spawned terminal to avoid terminal sharing.
      
      Fixed an issue with the new DWARF forward type declaration stuff. A crasher
      was found that was happening when trying to properly expand the forward
      declarations.
      
      llvm-svn: 115213
      4957bf69
  19. Sep 29, 2010
    • Greg Clayton's avatar
      Fixed the forward declaration issue that was present in the DWARF parser after · 1be10fca
      Greg Clayton authored
      adding methods to C++ and objective C classes. In order to make methods, we
      need the function prototype which means we need the arguments. Parsing these
      could cause a circular reference that caused an  assertion.
      
      Added a new typedef for the clang opaque types which are just void pointers:
      lldb::clang_type_t. This appears in lldb-types.h.
      
      This was fixed by enabling struct, union, class, and enum types to only get
      a forward declaration when we make the clang opaque qual type for these
      types. When they need to actually be resolved, lldb_private::Type will call
      a new function in the SymbolFile protocol to resolve a clang type when it is
      not fully defined (clang::TagDecl::getDefinition() returns NULL). This allows
      us to be a lot more lazy when parsing clang types and keeps down the amount
      of data that gets parsed into the ASTContext for each module. 
      
      Getting the clang type from a "lldb_private::Type" object now takes a boolean
      that indicates if a forward declaration is ok:
      
          clang_type_t lldb_private::Type::GetClangType (bool forward_decl_is_ok);
          
      So function prototypes that define parameters that are "const T&" can now just
      parse the forward declaration for type 'T' and we avoid circular references in
      the type system.
      
      llvm-svn: 115012
      1be10fca
  20. Sep 28, 2010
  21. Sep 27, 2010
    • Caroline Tice's avatar
      · 1559a46b
      Caroline Tice authored
      Create more useful instance names for target, process and thread instances.
      
      Change default 'set' behavior so that all instance settings for the specified variable will be
      updated, unless the "-n" ("--no_override") command options is specified.
      
      llvm-svn: 114808
      1559a46b
  22. Sep 23, 2010
  23. Sep 22, 2010
  24. Sep 20, 2010
Loading