Skip to content
  1. Jan 12, 2009
  2. Jan 09, 2009
  3. Jan 07, 2009
  4. Jan 05, 2009
  5. Jan 03, 2009
  6. Jan 02, 2009
    • Duncan Sands's avatar
      Load tracking means that the value analyzed may · c7affb0a
      Duncan Sands authored
      not have pointer type.  In particular, it may
      be the condition argument for a select or a GEP
      index.  While I was unable to construct a testcase
      for which some bits of the original pointer are
      captured due to one of these, it's very very close
      to being possible - so play safe and exclude these
      possibilities.
      
      llvm-svn: 61580
      c7affb0a
    • Duncan Sands's avatar
      When calculating 'nocapture' argument attributes, allow · b193a37c
      Duncan Sands authored
      the argument to be stored to an alloca by tracking uses
      of the alloca.  This occurs 4 times (out of 7121, 0.05%)
      in MultiSource/Applications, so may not be worth it.  On
      the other hand, it is easy to do and fairly cheap.  The
      functions it helps are: W_addcom and W_addlit in spiff;
      process_args (argv) in d (make_dparser); ercPixConcealIMB
      in JM/ldecod.
      
      llvm-svn: 61570
      b193a37c
    • Duncan Sands's avatar
      Improve comments and reorganize a bit - no functionality · cefc8604
      Duncan Sands authored
      change.
      
      llvm-svn: 61569
      cefc8604
    • Nick Lewycky's avatar
      Make adding nocapture a bit stronger. FreeInst is nocapture. Also, · 7e82055e
      Nick Lewycky authored
      functions that don't write can't leak a pointer except through 
      the return value, so a void readonly function is implicitly nocapture.
      
      Test these, and add a test that verifies that f1 calling f2 with an 
      otherwise dead pointer gets both of them marked nocapture.
      
      llvm-svn: 61552
      7e82055e
  7. Jan 01, 2009
  8. Dec 31, 2008
  9. Dec 29, 2008
    • Duncan Sands's avatar
      Experiments show that looking through phi nodes · f6069577
      Duncan Sands authored
      and select instructions doesn't buy anything here
      except extra complexity: the only difference in
      the entire testsuite was that a readonly function
      became readnone in MiBench/consumer-typeset.  Add
      a comment about this.
      
      llvm-svn: 61478
      f6069577
    • Duncan Sands's avatar
      Allow readnone functions to read (and write!) global · c125d6a3
      Duncan Sands authored
      constants, since doing so is irrelevant for aliasing
      purposes.  While this doesn't increase the total number
      of functions marked readonly or readnone in MultiSource/
      Applications (3089), it does result in 12 functions being
      marked readnone rather than readonly.
      Before:
        readnone: 820
        readonly: 2269
      After:
        readnone: 832
        readonly: 2257
      
      llvm-svn: 61469
      c125d6a3
  10. Dec 17, 2008
  11. Dec 16, 2008
  12. Dec 15, 2008
  13. Nov 21, 2008
  14. Nov 20, 2008
  15. Nov 19, 2008
  16. Nov 18, 2008
Loading