| Commit message (Expand) | Author | Age | Files | Lines |
* | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 1 | -8/+15 |
* | Apply a patch by Micah Villmow to fix AsmParser to accept vector | Dan Gohman | 2009-03-14 | 1 | -0/+6 |
* | Extension of GEP in constant folder was broken (apparently this code | Daniel Dunbar | 2009-02-24 | 1 | -1/+1 |
* | Allow the inverse transform x86_fp80 -> i80 (also | Duncan Sands | 2009-02-04 | 1 | -9/+4 |
* | Fix PR3468: a crash when constant folding a bitcast of | Duncan Sands | 2009-02-04 | 1 | -6/+5 |
* | Make special cases (0 inf nan) work for frem. | Dale Johannesen | 2009-01-21 | 1 | -10/+0 |
* | div/rem by zero and div/rem overflow are both undefined according to | Chris Lattner | 2009-01-19 | 1 | -11/+11 |
* | Added support for the following definition of shufflevector | Mon P Wang | 2008-11-10 | 1 | -9/+10 |
* | Fix unused variable warnings. | Devang Patel | 2008-11-03 | 1 | -0/+1 |
* | apply Eli's patch for PR2165 and provide a testcase. | Chris Lattner | 2008-10-16 | 1 | -0/+6 |
* | Add a "loses information" return value to APFloat::convert | Dale Johannesen | 2008-10-09 | 1 | -2/+4 |
* | Rename APFloat::convertToAPInt to bitcastToAPInt to | Dale Johannesen | 2008-10-09 | 1 | -2/+2 |
* | Try to fold each element of a vector. This is needed to maintain structural | Nick Lewycky | 2008-09-03 | 1 | -12/+4 |
* | Don't crash when trying to constant fold a vector with some elements that can't | Nick Lewycky | 2008-09-03 | 1 | -6/+12 |
* | Fix a case where vector comparison constant folding would cause an | Chris Lattner | 2008-07-10 | 1 | -33/+33 |
* | elementwise comparison of vector constants was completely wrong. Fix | Chris Lattner | 2008-07-10 | 1 | -19/+32 |
* | improve comment | Chris Lattner | 2008-07-08 | 1 | -1/+1 |
* | Fix three bugs: | Chris Lattner | 2008-07-08 | 1 | -56/+101 |
* | Constant folding for insertvalue and extractvalue. | Dan Gohman | 2008-06-03 | 1 | -10/+105 |
* | Revert constant-folding change that will miscompile in some cases. | Nick Lewycky | 2008-05-17 | 1 | -23/+0 |
* | Unbreak the build. | Nick Lewycky | 2008-05-17 | 1 | -1/+1 |
* | Constant fold inttoptr and ptrtoint. | Nick Lewycky | 2008-05-17 | 1 | -0/+23 |
* | IR support for extractvalue and insertvalue instructions. Also, begin | Dan Gohman | 2008-05-15 | 1 | -4/+17 |
* | merge of use-diet branch to trunk | Gabor Greif | 2008-05-10 | 1 | -8/+8 |
* | hopefully resolve PR2240 | Chris Lattner | 2008-04-20 | 1 | -1/+1 |
* | rearrange some code, simplify handling of shifts. | Chris Lattner | 2008-04-20 | 1 | -60/+56 |
* | Use simplified ConstantFP::get method, fix a bug handling frem x, 0 with long... | Chris Lattner | 2008-04-20 | 1 | -13/+17 |
* | Implement PR2206. | Chris Lattner | 2008-04-19 | 1 | -8/+17 |
* | refactor handling of symbolic constant folding, picking up | Chris Lattner | 2008-04-19 | 1 | -62/+62 |
* | indentation fix. | Chris Lattner | 2008-04-19 | 1 | -14/+14 |
* | Don't eliminate bitcast instructions that change the type of a pointer | Nate Begeman | 2008-03-31 | 1 | -19/+21 |
* | Handle a special case xor undef, undef -> 0. Technically this should be trans... | Evan Cheng | 2008-03-25 | 1 | -1/+6 |
* | Use the new convertFromAPInt instead of convertFromZeroExtendedInteger. | Dan Gohman | 2008-02-29 | 1 | -6/+3 |
* | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov | 2008-02-20 | 1 | -7/+14 |
* | Fix some minor issues folding undef, PR2052 | Chris Lattner | 2008-02-19 | 1 | -1/+3 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Change the PointerType api for creating pointer types. The old functionality ... | Christopher Lamb | 2007-12-17 | 1 | -4/+7 |
* | Teach VMCore to constant fold shufflevectors with constant operands. | Chris Lattner | 2007-12-11 | 1 | -2/+45 |
* | significantly simplify some code, no functionality change. | Chris Lattner | 2007-12-11 | 1 | -88/+23 |
* | refactor some code, no functionality change. | Chris Lattner | 2007-12-11 | 1 | -94/+96 |
* | Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. | Chris Lattner | 2007-12-10 | 1 | -11/+10 |
* | Add support for vectors to int <-> float casts. | Nate Begeman | 2007-11-17 | 1 | -0/+18 |
* | Fix a regression in test/CodeGen/X86/2007-04-24-VectorCrash.ll introduced | Dan Gohman | 2007-10-31 | 1 | -4/+3 |
* | Add support for folding binary operators with vector zero operands. | Dan Gohman | 2007-10-30 | 1 | -19/+29 |
* | Disable attempts to constant fold PPC f128. | Dale Johannesen | 2007-10-16 | 1 | -0/+4 |
* | avoid an APFloat copy. | Chris Lattner | 2007-10-15 | 1 | -1/+1 |
* | Disable some compile-time optimizations on PPC | Dale Johannesen | 2007-10-14 | 1 | -0/+12 |
* | convertFromInteger, as originally written, expected sign-extended | Neil Booth | 2007-10-07 | 1 | -1/+1 |
* | Constant fold int-to-long-double conversions; | Dale Johannesen | 2007-09-30 | 1 | -17/+9 |
* | Remove no-longer-used variable. | Dale Johannesen | 2007-09-25 | 1 | -3/+2 |