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
      Dump the measurements directly instead of getting their metrics first · 24ccabfd
      Enrico Granata authored
      (this code needs to be pushed up so that in the basic scenarios TestCase knows to dump all its measurements directly)
      
      llvm-svn: 176718
      24ccabfd
    • 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
Loading