Skip to content
  1. Jan 25, 2006
  2. Jan 24, 2006
  3. Jan 23, 2006
    • Reid Spencer's avatar
      For PR411: · 281dcd6a
      Reid Spencer authored
      No functionality changes, just improve the code by a) providing better
      function names, b) eliminating a call to get_suffix and c) tightening up
      a function elimination test to reduce further checking.
      
      llvm-svn: 25540
      281dcd6a
    • Chris Lattner's avatar
      Speedup and simplify pass registration by the observation that there is · c66da83a
      Chris Lattner authored
      exactly one PassInfo object per RegisterPass object and that their lifetimes
      are the same.  As such, there is no reason for the RegisterPass object to
      dynamically allocate the PassInfo object at compiler startup time: just inline
      the object by-value.  This should reduce codesize, heap size, and startup time. Yaay.
      
      llvm-svn: 25521
      c66da83a
  4. Jan 20, 2006
  5. Jan 19, 2006
  6. Jan 17, 2006
  7. Jan 16, 2006
    • Reid Spencer's avatar
      For PR411: · b4f9a6f1
      Reid Spencer authored
      This patch is an incremental step towards supporting a flat symbol table.
      It de-overloads the intrinsic functions by providing type-specific intrinsics
      and arranging for automatically upgrading from the old overloaded name to
      the new non-overloaded name. Specifically:
        llvm.isunordered -> llvm.isunordered.f32, llvm.isunordered.f64
        llvm.sqrt -> llvm.sqrt.f32, llvm.sqrt.f64
        llvm.ctpop -> llvm.ctpop.i8, llvm.ctpop.i16, llvm.ctpop.i32, llvm.ctpop.i64
        llvm.ctlz -> llvm.ctlz.i8, llvm.ctlz.i16, llvm.ctlz.i32, llvm.ctlz.i64
        llvm.cttz -> llvm.cttz.i8, llvm.cttz.i16, llvm.cttz.i32, llvm.cttz.i64
      New code should not use the overloaded intrinsic names. Warnings will be
      emitted if they are used.
      
      llvm-svn: 25366
      b4f9a6f1
    • Reid Spencer's avatar
      For PR411: · 84c00ea7
      Reid Spencer authored
      This file makes the helper functions for auto-upgrade of llvm assembly and
      bytecode more accessible. This is part of de-overloading of intrinsic
      functions to support the flat symbol table (no type planes).
      
      llvm-svn: 25365
      84c00ea7
  8. Jan 15, 2006
  9. Jan 14, 2006
  10. Jan 13, 2006
  11. Jan 12, 2006
  12. Jan 11, 2006
  13. Jan 10, 2006
  14. Jan 09, 2006
  15. Jan 08, 2006
  16. Jan 05, 2006
  17. Jan 04, 2006
Loading