Skip to content
  1. 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
  2. Oct 15, 2010
    • Caroline Tice's avatar
      Disable "process.macosx" plugin, since it is not being actively supported · 43a8c39b
      Caroline Tice authored
      at the moment, and no longer works properly (bit rot).
      
      llvm-svn: 116626
      43a8c39b
    • Greg Clayton's avatar
      Skip checking for a bunch of built-ins when evaluating an expression. · ee4b5dd6
      Greg Clayton authored
      llvm-svn: 116565
      ee4b5dd6
    • Greg Clayton's avatar
      Did a bit of parameter renaming. · 9476d957
      Greg Clayton authored
      llvm-svn: 116562
      9476d957
    • Greg Clayton's avatar
      Added short names and descriptions to the UnixSignals class. Also cleaned up · 8dbc336d
      Greg Clayton authored
      the code a bit.
      
      llvm-svn: 116561
      8dbc336d
    • Greg Clayton's avatar
      Separated the DWARF index for types from that the index of the namespaces · 69b0488d
      Greg Clayton authored
      since we can't parse DW_TAG_namespace DIEs as types. They are only decls in
      clang. All of the types we handle right now have both clang "XXXType" classes
      to go with the "XXXDecl" classes which means they can be used within the 
      lldb_private::Type class. I need to check to see which other decls that don't
      have associated type objects need to float around the debugger and possibly
      make a lldb_private::Decl class to manage them.
      
      llvm-svn: 116558
      69b0488d
    • 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
  3. Oct 14, 2010
  4. Oct 13, 2010
    • Caroline Tice's avatar
      Add new argument type, eArgSignalName, · 35731357
      Caroline Tice authored
      Add missing break statment to case statement in Process::ShouldBroadcastEvent.
      
      Add new command, "process handle" to allow users to control process behavior on
      the receipt of various Unix signals (whether the process should stop; whether the
      process should be passed the signal; whether the debugger user should be notified
      that the signal came in).
      
      llvm-svn: 116430
      35731357
    • Greg Clayton's avatar
      Default "frame variable" to not show types before values by default. You now... · b6e8cf96
      Greg Clayton authored
      Default "frame variable" to not show types before values by default. You now enable type display with --show-types or -t (instead of disabling it with --no-types or -t).
      
      llvm-svn: 116418
      b6e8cf96
    • Greg Clayton's avatar
      Fixed C++ class clang type creation and display by making sure we omit · 24739923
      Greg Clayton authored
      artifical members (like the vtable pointer member that shows up in the DWARF).
      We were adding this to each class which was making all member variables be off
      by a pointer size.
      
      Added a test case so we can track this with "test/forward".
      
      Fixed the type name index in DWARF to include all the types after finding
      some types were being omitted due to the DW_AT_specification having the
      DW_AT_declaration attribute which was being read into the real type instances
      when there were forward declarations in the DWARF, causing the type to be
      omitted. We now check to make sure any DW_AT_declaration values are only
      respected when parsing types if the attribute is from the current DIE.
      
      After fixing the missing types, we ran into some issues with the expression
      parser finding duplicate entries for __va_list_tag since they are built in
      types and would result in a "duplicate __va_list_tag definition" error. We
      are now just ignoring this name during lookup, but we will need to see if
      we can get the name lookup function to not get called in these cases.
      
      Fixed an issue that would cause an assertion where DW_TAG_subroutine_types
      that had no children, would not properly make a clang function type of:
      "void (*) (void)".
      
      llvm-svn: 116392
      24739923
    • Caroline Tice's avatar
      Comment out code that was preventing commands that take raw input strings · 4239eade
      Caroline Tice authored
      from being alias-able.
      
      llvm-svn: 116357
      4239eade
    • Caroline Tice's avatar
      Replace contains_string with 'strcasestr' from libc. · 4b6fbf37
      Caroline Tice authored
      llvm-svn: 116351
      4b6fbf37
  5. Oct 12, 2010
  6. Oct 11, 2010
    • Greg Clayton's avatar
      Fixed an issue where objc types weren't ever getting fully resolved (beyond · aaf99e04
      Greg Clayton authored
      forward declarations).
      
      llvm-svn: 116181
      aaf99e04
    • Greg Clayton's avatar
      Added a "--no-lldbinit" option (-n for short (which magically matches · 6eee5aa0
      Greg Clayton authored
      what gdb uses)) so we can tell our "lldb" driver program to not automatically
      parse any .lldbinit files. 
      
      llvm-svn: 116179
      6eee5aa0
    • 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
    • Greg Clayton's avatar
      Added a new test case to test signals with. · 864174e1
      Greg Clayton authored
      Added frame relative frame selection to "frame select". You can now select
      frames relative to the current frame (which defaults to zero if the current
      frame hasn't yet been set for a thread):
      
      The gdb "up" command can be done as:
      (lldb) frame select -r 1
      The gdb "down" command can be done as:
      (lldb) frame select -r -1
      
      Place the following in your ~/.lldbinit file for "up" and "down":
      
      command alias up frame select -r 1
      command alias down frame select -r -1
      
      llvm-svn: 116176
      864174e1
    • Greg Clayton's avatar
      Plugged memory leak. · 222f5700
      Greg Clayton authored
      llvm-svn: 116175
      222f5700
  7. Oct 10, 2010
    • Greg Clayton's avatar
      Added new options to memory read to allow saving memory to disk · 6d7e77b9
      Greg Clayton authored
      as binary bytes or as an ASCII text dump. 
      - The output file is specified with the  "--outfile FILE" option.
      - The memory can be appended to an existing file using the "--append" option. 
      - The memory will be written as an ASCII text dump by default, or as 
        binary with the "--binary" option. 
      
      Added new options to memory write to allow writing all or part of
      a file on disk to target memory:
      - The input file is specified using the "--infile FILE" option
      - The offset at which to start in the file defaults to zero, but
        can be overridden using the "--offset OFFSET" option. If the
        size is not specified, the remaining number of bytes in the file
        will be used as the default byte size.
      - The number of bytes to write defaults to the entire file byte
        size, but can be changed with the "--size COUNT" option.
       
      
      llvm-svn: 116172
      6d7e77b9
  8. Oct 09, 2010
  9. Oct 08, 2010
Loading