Skip to content
  1. Mar 09, 2013
  2. Mar 08, 2013
    • Greg Clayton's avatar
      <rdar://problem/13361742> · 613641d3
      Greg Clayton authored
      Don't resolve .o file locations when setting the file spec for each .o file in DWARF with debug map. We should trust the path.
      
      llvm-svn: 176725
      613641d3
    • Sean Callanan's avatar
      OptionValueFileSpec shouldn't be doing argument · 8773ce2f
      Sean Callanan authored
      parsing on the file name it gets.  That confuses
      it if there are spaces in the file name.
      
      <rdar://problem/13380392>
      
      llvm-svn: 176719
      8773ce2f
    • Enrico Granata's avatar
      Initial checkin of a new project: LLDB Performance Testing Infrastructure · f58cecec
      Enrico Granata authored
      This is a very basic implementation of a library that easily allows to drive LLDB.framework to write test cases for performance
      
      This is separate from the LLDB testsuite in test/ in that:
      a) this uses C++ instead of Python to avoid measures being affected by SWIG
      b) this is in very early development and needs lots of tweaking before it can be considered functionally complete
      c) this is not meant to test correctness but to help catch performance regressions
      
      There is a sample application built against the library (in darwin/sketch) that uses the famous sample app Sketch as an inferior to measure certain basic parameters of LLDB's behavior.
      The resulting output is a PLIST much like the following:
      
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <array>
      	<dict>
      		<key>fetch-frames</key>
      		<real>0.13161715522222225</real>
      	</dict>
      	<dict>
      		<key>file-line-bkpt</key>
      		<real>0.029111678750000002</real>
      	</dict>
      	<dict>
      		<key>fetch-modules</key>
      		<real>0.00026376766666666668</real>
      	</dict>
      	<dict>
      		<key>fetch-vars</key>
      		<real>0.17820429311111111</real>
      	</dict>
      	<dict>
      		<key>run-expr</key>
      		<real>0.029676525769230768</real>
      	</dict>
      </array>
      </plist>
      
      Areas for improvement:
      - code cleanups (I will be out of the office for a couple days this coming week, but please keep ideas coming!)
      - more metrics and test cases
      - better error checking
      
      This toolkit also comprises a simple event-loop-driven controller for LLDB, similar yet much simpler to what the Driver does to implement the lldb command-line tool.
      
      llvm-svn: 176715
      f58cecec
    • Sean Callanan's avatar
      Added very lightweight, statically-allocated · 8106d808
      Sean Callanan authored
      counters for a variety of metrics associated
      with expression parsing.  This should give some
      idea of how much work the expression parser is
      doing on Clang's behalf, and help with hopefully
      reducing that load over time.
      
      <rdar://problem/13210748> Audit type search/import for expressions
      
      llvm-svn: 176714
      8106d808
    • Jason Molenda's avatar
      Update PlatformDarwin to understand how armv7m / armv7em relate · 9c4a232a
      Jason Molenda authored
      to the other armv7 types as far as compatibility/interchangability
      goes.
      <rdar://problem/13361372> 
      
      llvm-svn: 176684
      9c4a232a
    • Greg Clayton's avatar
      <rdar://problem/13374267> · 1bbcc034
      Greg Clayton authored
      Fixed error where objective C methods with selectors names starting with ".cxx_" where causing errors for ARC built binaries.
      
      llvm-svn: 176683
      1bbcc034
    • Greg Clayton's avatar
      <rdar://problem/13119621> · c4ffd66f
      Greg Clayton authored
      Make dynamic type detection faster by using the AST metadata to help out and allow us not to complete types when we don't need to.
      
      After running "purge" on a MacOSX system, the Xcode variables view now populates more than 3x faster with this fix.
      
      llvm-svn: 176676
      c4ffd66f
    • Jason Molenda's avatar
    • Jim Ingham's avatar
      Add a comment to break disable's help to make clearer the relationship between the · b0fac509
      Jim Ingham authored
      enable/disable state of a breakpoint, and of its locations.
      
      llvm-svn: 176672
      b0fac509
  3. Mar 07, 2013
  4. Mar 06, 2013
  5. Mar 05, 2013
  6. Mar 04, 2013
    • Greg Clayton's avatar
      <rdar://problem/13338643> · 9422dd64
      Greg Clayton authored
      DWARF with .o files now uses 40-60% less memory!
      
      Big fixes include:
      - Change line table internal representation to contain "file addresses". Since each line table is owned by a compile unit that is owned by a module, it makes address translation into lldb_private::Address easy to do when needed.
      - Removed linked address members/methods from lldb_private::Section and lldb_private::Address
      - lldb_private::LineTable can now relink itself using a FileRangeMap to make it easier to re-link line tables in the future
      - Added ObjectFile::ClearSymtab() so that we can get rid of the object file symbol tables after we parse them once since they are not needed and kept memory allocated for no reason
      - Moved the m_sections_ap (std::auto_ptr to section list) and m_symtab_ap (std::auto_ptr to the lldb_private::Symtab) out of each of the ObjectFile subclasses and put it into lldb_private::ObjectFile.
      - Changed how the debug map is parsed and stored to be able to:
          - Lazily parse the debug map for each object file
          - not require the address map for a .o file until debug information is linked for a .o file
      
      llvm-svn: 176454
      9422dd64
    • Enrico Granata's avatar
      <rdar://problem/12897838> · c1a5b2eb
      Enrico Granata authored
      Making sure we do not try to copy memory at address 0 - that would make us crash
      
      llvm-svn: 176438
      c1a5b2eb
  7. Mar 02, 2013
  8. Mar 01, 2013
  9. Feb 28, 2013
Loading