Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Constant fold llvm.powi.*. This speeds up tramp3d--v4 by 9.5% | Chris Lattner | 2007-01-15 | 1 | -1/+12 |
| | | | | llvm-svn: 33229 | ||||
* | remove llvm.isunordered | Chris Lattner | 2007-01-07 | 1 | -5/+0 |
| | | | | llvm-svn: 32991 | ||||
* | For PR950: | Reid Spencer | 2006-12-31 | 1 | -1/+0 |
| | | | | | | | | | | | | | This patch replaces signed integer types with signless ones: 1. [US]Byte -> Int8 2. [U]Short -> Int16 3. [U]Int -> Int32 4. [U]Long -> Int64. 5. Removal of isSigned, isUnsigned, getSignedVersion, getUnsignedVersion and other methods related to signedness. In a few places this warranted identifying the signedness information from other sources. llvm-svn: 32785 | ||||
* | Unbreak VC++ build. | Jeff Cohen | 2006-12-02 | 1 | -0/+1 |
| | | | | llvm-svn: 32113 | ||||
* | Remove redundant <cmath>. | Jim Laskey | 2006-11-08 | 1 | -1/+0 |
| | | | | llvm-svn: 31561 | ||||
* | For PR950: | Reid Spencer | 2006-10-20 | 1 | -5/+6 |
| | | | | | | | | This patch implements the first increment for the Signless Types feature. All changes pertain to removing the ConstantSInt and ConstantUInt classes in favor of just using ConstantInt. llvm-svn: 31063 | ||||
* | Constant fold sqrtf | Chris Lattner | 2006-06-17 | 1 | -1/+4 |
| | | | | llvm-svn: 28853 | ||||
* | For PR411: | Reid Spencer | 2006-01-16 | 1 | -7/+18 |
| | | | | | | | | | | | | | | | | 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 | ||||
* | Add bswap intrinsics as documented in the Language Reference | Nate Begeman | 2006-01-14 | 1 | -0/+15 |
| | | | | llvm-svn: 25309 | ||||
* | Move some constant folding functions into LLVMAnalysis since they are used | John Criswell | 2005-10-27 | 1 | -0/+172 |
by Analysis and Transformation passes. llvm-svn: 24038 |