Skip to content
  1. May 09, 2008
  2. May 08, 2008
  3. May 06, 2008
  4. May 01, 2008
  5. Apr 30, 2008
  6. Apr 29, 2008
    • Chris Lattner's avatar
      Implement more aggressive support for analyzing string length. This · 92f47022
      Chris Lattner authored
      generalizes the previous code to handle the case when the string is not
      an immediate to the strlen call (for example, crazy stuff like 
      strlen(c ? "foo" : "bart"+1) -> 3).  This implements 
      gcc.c-torture/execute/builtins/strlen-2.c.  I will generalize other
      cases in simplifylibcalls to use the same routine later.
      
      llvm-svn: 50408
      92f47022
  7. Apr 26, 2008
  8. Apr 25, 2008
  9. Apr 23, 2008
  10. Apr 21, 2008
  11. Apr 19, 2008
  12. Apr 10, 2008
  13. Apr 09, 2008
  14. Apr 07, 2008
  15. Apr 06, 2008
  16. Apr 02, 2008
  17. Mar 24, 2008
    • Evan Cheng's avatar
      Increasing the inline limit from (overly conservative) 200 to 300. Given each... · 3471ae8c
      Evan Cheng authored
      Increasing the inline limit from (overly conservative) 200 to 300. Given each BB costs 20 and each instruction costs 5, 200 means a 4 BB function + 24 instructions (actually less because caller's size also contributes to it).
      
      Furthermore, double the limit when more than 10% of the callee instructions are vector instructions. Multimedia kernels tend to love inlining.
      
      llvm-svn: 48725
      3471ae8c
  18. Mar 22, 2008
  19. Mar 21, 2008
  20. Mar 20, 2008
  21. Mar 12, 2008
    • Chris Lattner's avatar
      Reimplement the parameter attributes support, phase #1. hilights: · 8a923e7c
      Chris Lattner authored
      1. There is now a "PAListPtr" class, which is a smart pointer around
         the underlying uniqued parameter attribute list object, and manages
         its refcount.  It is now impossible to mess up the refcount.
      2. PAListPtr is now the main interface to the underlying object, and
         the underlying object is now completely opaque.
      3. Implementation details like SmallVector and FoldingSet are now no
         longer part of the interface.
      4. You can create a PAListPtr with an arbitrary sequence of
         ParamAttrsWithIndex's, no need to make a SmallVector of a specific 
         size (you can just use an array or scalar or vector if you wish).
      5. All the client code that had to check for a null pointer before
         dereferencing the pointer is simplified to just access the 
         PAListPtr directly.
      6. The interfaces for adding attrs to a list and removing them is a
         bit simpler.
      
      Phase #2 will rename some stuff (e.g. PAListPtr) and do other less 
      invasive changes.
      
      llvm-svn: 48289
      8a923e7c
    • Devang Patel's avatar
      Check multiple return values. · cc189b56
      Devang Patel authored
      llvm-svn: 48267
      cc189b56
    • Devang Patel's avatar
      Fix attribute handling. · fa8667a2
      Devang Patel authored
      llvm-svn: 48262
      fa8667a2
  22. Mar 11, 2008
  23. Mar 10, 2008
  24. Mar 09, 2008
  25. Mar 07, 2008
  26. Mar 06, 2008
  27. Mar 04, 2008
Loading