Skip to content
  1. Sep 04, 2010
  2. Sep 02, 2010
    • Greg Clayton's avatar
      Added a new bool parameter to many of the DumpStopContext() methods that · 6dadd508
      Greg Clayton authored
      might dump file paths that allows the dumping of full paths or just the
      basenames. Switched the stack frame dumping code to use just the basenames for
      the files instead of the full path.
      
      Modified the StackID class to no rely on needing the start PC for the current
      function/symbol since we can use the SymbolContextScope to uniquely identify
      that, unless there is no symbol context scope. In that case we can rely upon
      the current PC value. This saves the StackID from having to calculate the 
      start PC when the StackFrame::GetStackID() accessor is called.
      
      Also improved the StackID less than operator to correctly handle inlined stack
      frames in the same stack.
      
      llvm-svn: 112867
      6dadd508
    • Greg Clayton's avatar
      StackFrame objects now own ValueObjects for any frame variables (locals, args, · 288bdf9c
      Greg Clayton authored
      function statics, file globals and static variables) that a frame contains. 
      The StackFrame objects can give out ValueObjects instances for
      each variable which allows us to track when a variable changes and doesn't
      depend on variable names when getting value objects.
      
      StackFrame::GetVariableList now takes a boolean to indicate if we want to
      get the frame compile unit globals and static variables.
      
      The value objects in the stack frames can now correctly track when they have
      been modified. There are a few more tweaks needed to complete this work. The
      biggest issue is when stepping creates partial stacks (just frame zero usually)
      and causes previous stack frames not to match up with the current stack frames
      because the previous frames only has frame zero. We don't really want to 
      require that all previous frames be complete since stepping often must check
      stack frames to complete their jobs. I will fix this issue tomorrow.
      
      llvm-svn: 112800
      288bdf9c
  3. Sep 01, 2010
  4. Aug 30, 2010
  5. Aug 28, 2010
  6. Aug 27, 2010
  7. Aug 26, 2010
    • Jim Ingham's avatar
      Change "Current" as in GetCurrentThread, GetCurrentStackFrame, etc, to... · 2976d00a
      Jim Ingham authored
      Change "Current" as in GetCurrentThread, GetCurrentStackFrame, etc, to "Selected" i.e. GetSelectedThread.  Selected makes more sense, since these are set by some user action (a selection).  I didn't change "CurrentProcess" since this is always controlled by the target, and a given target can only have one process, so it really can't be selected.
      
      llvm-svn: 112221
      2976d00a
  8. Aug 25, 2010
    • Greg Clayton's avatar
      Fixed another issue with the inline stack frames where if the first frame · 288e5afe
      Greg Clayton authored
      has inlined functions that all started at the same address, then the inlined
      backtrace would not produce correct stack frames.
      
      Also cleaned up and inlined a lot of stuff in lldb_private::Address.
      
      Added a function to StackFrame to detect if the frame is a concrete frame so
      we can detect the difference between actual frames and inlined frames.
      
      llvm-svn: 111989
      288e5afe
  9. Aug 24, 2010
    • Greg Clayton's avatar
      Got a lot of the kinks worked out in the inline support after debugging more · 9da7bd07
      Greg Clayton authored
      complex inlined examples.
      
      StackFrame classes don't have a "GetPC" anymore, they have "GetFrameCodeAddress()".
      This is because inlined frames will have a PC value that is the same as the 
      concrete frame that owns the inlined frame, yet the code locations for the
      frame can be different. We also need to be able to get the real PC value for
      a given frame so that variables evaluate correctly. To get the actual PC
      value for a frame you can use:
      
          addr_t pc = frame->GetRegisterContext()->GetPC();
      
      Some issues with the StackFrame stomping on its own symbol context were 
      resolved which were causing the information to change for a frame when the
      stack ID was calculated. Also the StackFrame will now correctly store the
      symbol context resolve flags for any extra bits of information that were 
      looked up (if you ask for a block only and you find one, you will alwasy have
      the compile unit and function).
      
      llvm-svn: 111964
      9da7bd07
    • Greg Clayton's avatar
      Added support for inlined stack frames being represented as real stack frames · 1b72fcb7
      Greg Clayton authored
      which is now on by default. Frames are gotten from the unwinder as concrete
      frames, then if inline frames are to be shown, extra information to track
      and reconstruct these frames is cached with each Thread and exanded as needed.
      
      I added an inline height as part of the lldb_private::StackID class, the class
      that helps us uniquely identify stack frames. This allows for two frames to
      shared the same call frame address, yet differ only in inline height.
      
      Fixed setting breakpoint by address to not require addresses to resolve.
      
      A quick example:
      
      % cat main.cpp
      
      % ./build/Debug/lldb test/stl/a.out 
      Current executable set to 'test/stl/a.out' (x86_64).
      (lldb) breakpoint set --address 0x0000000100000d31
      Breakpoint created: 1: address = 0x0000000100000d31, locations = 1
      (lldb) r
      Launching 'a.out'  (x86_64)
      (lldb) Process 38031 Stopped
      * thread #1: tid = 0x2e03, pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280, stop reason = breakpoint 1.1, queue = com.apple.main-thread
       277   	
       278   	      _CharT*
       279   	      _M_data() const
       280 ->	      { return  _M_dataplus._M_p; }
       281   	
       282   	      _CharT*
       283   	      _M_data(_CharT* __p)
      (lldb) bt
      thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
        frame #0: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280
        frame #1: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_rep() const at /usr/include/c++/4.2.1/bits/basic_string.h:288
        frame #2: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::size() const at /usr/include/c++/4.2.1/bits/basic_string.h:606
        frame #3: pc = 0x0000000100000d31, where = a.out`main [inlined] operator<< <char, std::char_traits<char>, std::allocator<char> > at /usr/include/c++/4.2.1/bits/basic_string.h:2414
        frame #4: pc = 0x0000000100000d31, where = a.out`main + 33 at /Volumes/work/gclayton/Documents/src/lldb/test/stl/main.cpp:14
        frame #5: pc = 0x0000000100000d08, where = a.out`start + 52
      
      Each inline frame contains only the variables that they contain and each inlined
      stack frame is treated as a single entity.
      
      llvm-svn: 111877
      1b72fcb7
  10. Aug 18, 2010
    • Greg Clayton's avatar
      Changed "Error Value::GetValueAsData (...)" to set the data extractor byte · ad3843c9
      Greg Clayton authored
      order and address size correctly when the value comes from a file address.
      Values have "file" addresses when they are globals and the debug information
      specifies that they live in the object file at a given address (DWARF will
      represent this as a location "DW_OP_addr <addr>"). This causes global pointers
      to correctly extract their children on 64 bit programs.
      
      llvm-svn: 111380
      ad3843c9
  11. Aug 10, 2010
  12. Aug 03, 2010
    • Greg Clayton's avatar
      Added FindTypes to Module and ModuleList. · 3504eee8
      Greg Clayton authored
      llvm-svn: 110093
      3504eee8
    • Greg Clayton's avatar
      Added support for objective C built-in types: id, Class, and SEL. This · b0b9fe61
      Greg Clayton authored
      involved watching for the objective C built-in types in DWARF and making sure
      when we convert the DWARF types into clang types that we use the appropriate
      ASTContext types.
      
      Added a way to find and dump types in lldb (something equivalent to gdb's 
      "ptype" command):
      
          image lookup --type <TYPENAME>
      
      This only works for looking up types by name and won't work with variables.
      It also currently dumps out verbose internal information. I will modify it
      to dump more appropriate user level info in my next submission.
      
      Hookup up the "FindTypes()" functions in the SymbolFile and SymbolVendor so
      we can lookup types by name in one or more images.
      
      Fixed "image lookup --address <ADDRESS>" to be able to correctly show all
      symbol context information, but it will only show this extra information when
      the new "--verbose" flag is used.
      
      Updated to latest LLVM to get a few needed fixes.
      
      llvm-svn: 110089
      b0b9fe61
  13. Jul 28, 2010
    • Greg Clayton's avatar
      Created lldb::LanguageType by moving an enumeration from the · 9e40956a
      Greg Clayton authored
      lldb_private::Language class into the enumerations header so it can be freely
      used by other interfaces.
      
      Added correct objective C class support to the DWARF symbol parser. Prior to
      this fix we were parsing objective C classes as C++ classes and now that the
      expression parser is ready to call functions we need to make sure the objective
      C classes have correct AST types.
      
      llvm-svn: 109574
      9e40956a
  14. Jul 27, 2010
    • Sean Callanan's avatar
      Changed SymbolContext so when you search for functions · 8ade104a
      Sean Callanan authored
      it returns a list of functions as a SymbolContextList.
      
      Rewrote the clients of SymbolContext to use this
      SymbolContextList.
      
      Rewrote some of the providers of the data to SymbolContext
      to make them respect preferences as to whether the list
      should be cleared first; propagated that change out.
      
      ClangExpressionDeclMap and ClangASTSource use this new
      function list to properly generate function definitions -
      even for functions that don't have a prototype in the
      debug information.
      
      llvm-svn: 109476
      8ade104a
  15. Jul 23, 2010
  16. Jul 22, 2010
    • Greg Clayton's avatar
      Modified both the ObjectFileMachO and ObjectFileELF to correctly set the · 4ceb9980
      Greg Clayton authored
      SectionType for Section objects for DWARF.
      
      Modified the DWARF plug-in to get the DWARF sections by SectionType so we
      can safely abstract the LLDB core from section names for the various object
      file formats.
      
      Modified the SectionType definitions for .debug_pubnames and .debug_pubtypes
      to use the correct case.
      
      llvm-svn: 109054
      4ceb9980
    • Greg Clayton's avatar
      Change over to using the definitions for mach-o types and defines to the · e1a916a7
      Greg Clayton authored
      defines that are in "llvm/Support/MachO.h". This should allow ObjectFileMachO
      and ObjectContainerUniversalMachO to be able to be cross compiled in Linux.
      
      Also did some cleanup on the ASTType by renaming it to ClangASTType and
      renaming the header file. Moved a lot of "AST * + opaque clang type *"
      functionality from lldb_private::Type over into ClangASTType.
      
      llvm-svn: 109046
      e1a916a7
  17. Jul 21, 2010
  18. Jul 14, 2010
  19. Jul 10, 2010
  20. Jul 09, 2010
  21. Jul 07, 2010
  22. Jul 06, 2010
  23. Jul 02, 2010
  24. Jul 01, 2010
    • Greg Clayton's avatar
      Added a missing static function prototype to FileSpec.h for ResolveUsername. · a5d24f66
      Greg Clayton authored
      Did a bit of code formatting and cleanup.
      
      llvm-svn: 107403
      a5d24f66
    • Jim Ingham's avatar
      Moved the User Name expansion over to FileSpec, and converted it to use getpwname directly. · f818ca37
      Jim Ingham authored
      Changed the file completion to deal with this, and FileSpec::Resolve now resolves all user names (not just ~/).
      
      llvm-svn: 107370
      f818ca37
    • Greg Clayton's avatar
      Fixed up disassembly to not emit the module name before all function names · 54b8b8c1
      Greg Clayton authored
      that are in the disassembly comments since most of them are in the same
      module (shared library). 
      
      Fixed a crasher that could happen when disassembling special section data.
      
      Added an address dump style that shows the symbol context without the module
      (used in the disassembly code).
      
      llvm-svn: 107366
      54b8b8c1
    • Greg Clayton's avatar
      Centralized all disassembly into static functions in source/Core/Disassembler.cpp. · dda4f7b5
      Greg Clayton authored
      Added the ability to read memory from the target's object files when we aren't
      running, so disassembling works before you run!
      
      Cleaned up the API to lldb_private::Target::ReadMemory().
      
      Cleaned up the API to the Disassembler to use actual "lldb_private::Address"
      objects instead of just an "addr_t". This is nice because the Address objects
      when resolved carry along their section and module which can get us the 
      object file. This allows Target::ReadMemory to be used when we are not 
      running.
      
      Added a new lldb_private::Address dump style: DumpStyleDetailedSymbolContext
      This will show a full breakdown of what an address points to. To see some
      sample output, execute a "image lookup --address <addr>".
      
      Fixed SymbolContext::DumpStopContext(...) to not require a live process in
      order to be able to print function and symbol offsets.
      
      llvm-svn: 107350
      dda4f7b5
  25. Jun 30, 2010
    • Caroline Tice's avatar
      Add a unique ID to each debugger instance. · ebc1bb27
      Caroline Tice authored
      Add functions to look up debugger by id
      Add global variable to lldb python module, to hold debugger id
      Modify embedded Python interpreter to update the global variable with the
       id of its current debugger.
      Modify the char ** typemap definition in lldb.swig to accept 'None' (for NULL)
       as a valid value.
      
      The point of all this is so that, when you drop into the embedded interpreter
      from the command interpreter (or when doing Python-based breakpoint commands),
      there is a way for the Python side to find/get the correct debugger
      instance ( by checking debugger_unique_id, then calling 
      SBDebugger::FindDebuggerWithID  on it).
      
      llvm-svn: 107287
      ebc1bb27
Loading