| Commit message (Expand) | Author | Age | Files | Lines |
| * | When InstCombine simplifies a load -> extract element to gep -> load, place | Mon P Wang | 2009-08-13 | 1 | -3/+5 |
| * | Simplify conditional. | Andreas Bolka | 2009-08-13 | 1 | -4/+1 |
| * | Simplify and reduce indentation using early exits. | Andreas Bolka | 2009-08-13 | 1 | -18/+13 |
| * | DEBUGify some DOUTs. | Andreas Bolka | 2009-08-13 | 1 | -7/+8 |
| * | Prune trailing whitespace. | Andreas Bolka | 2009-08-13 | 1 | -4/+4 |
| * | Transform -X/C to X/-C, implementing a README.txt entry. | Dan Gohman | 2009-08-12 | 1 | -0/+8 |
| * | Optimize (x/C)*C to x if the division is exact. | Dan Gohman | 2009-08-12 | 1 | -1/+10 |
| * | Update instcombine's debug output to account for Value*'s operator<< | Dan Gohman | 2009-08-12 | 1 | -10/+10 |
| * | Remove a bunch more now-unnecessary Context arguments. | Dan Gohman | 2009-08-12 | 5 | -154/+143 |
| * | Eliminate a bunch of now unnecessary explicit Context variables. | Dan Gohman | 2009-08-12 | 1 | -97/+94 |
| * | Add contexts to some of the MVT APIs. No functionality change yet, just the ... | Owen Anderson | 2009-08-12 | 1 | -4/+4 |
| * | Optimize exact sdiv by a constant power of 2 to ashr. | Dan Gohman | 2009-08-11 | 1 | -0/+9 |
| * | Remove unnecessary casts. | Dan Gohman | 2009-08-11 | 2 | -2/+2 |
| * | Remove dead metadata. | Devang Patel | 2009-08-11 | 1 | -0/+3 |
| * | Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ... | Owen Anderson | 2009-08-10 | 2 | -3/+3 |
| * | More ProfileInfo improvements. | Daniel Dunbar | 2009-08-08 | 3 | -6/+17 |
| * | Fix dom frontier update. This fixes PR4667. | Devang Patel | 2009-08-07 | 1 | -19/+23 |
| * | Fix a bunch of namespace pollution. | Dan Gohman | 2009-08-07 | 2 | -2/+5 |
| * | Use DebugInfoFinder. | Devang Patel | 2009-08-06 | 1 | -10/+9 |
| * | Privatize the StructType table, which unfortunately involves routing contexts... | Owen Anderson | 2009-08-05 | 4 | -6/+6 |
| * | Check for !isa<Constant> instead of isa<Instruction>. This | Dan Gohman | 2009-08-04 | 1 | -1/+1 |
| * | Add a new Constant::getIntegerValue helper function, and convert a | Dan Gohman | 2009-08-03 | 1 | -8/+4 |
| * | Make SimplifyDemandedUseBits generate vector constants where | Eli Friedman | 2009-08-03 | 1 | -2/+2 |
| * | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson | 2009-07-31 | 21 | -203/+169 |
| * | Fix GVN's debug output, now that operator<< on Value* doesn't print | Dan Gohman | 2009-07-31 | 1 | -11/+12 |
| * | - Convert the rest of the DOUTs to DEBUG+errs(). | Bill Wendling | 2009-07-31 | 1 | -14/+13 |
| * | PR4662: Fix a crash introduced by the recent LLVMContext changes. | Eli Friedman | 2009-07-31 | 1 | -1/+2 |
| * | Move getTrue() and getFalse() to 2.5-like APIs. | Owen Anderson | 2009-07-31 | 7 | -107/+110 |
| * | Move more code back to 2.5 APIs. | Owen Anderson | 2009-07-30 | 26 | -118/+105 |
| * | Twines: Don't allow implicit conversion from integers, this is too tricky. | Daniel Dunbar | 2009-07-30 | 4 | -13/+13 |
| * | Switch obvious clients to Twine instead of utostr (when they were already using | Daniel Dunbar | 2009-07-30 | 4 | -18/+14 |
| * | Eliminate a few unused-variable warnings | Douglas Gregor | 2009-07-29 | 2 | -4/+0 |
| * | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 20 | -107/+97 |
| * | Fix PR4645 which was fallout from the fix for PR4641. | Daniel Dunbar | 2009-07-29 | 1 | -8/+15 |
| * | Remove now unused Context variables. | Benjamin Kramer | 2009-07-29 | 1 | -1/+0 |
| * | Move ConstantExpr to 2.5 API. | Owen Anderson | 2009-07-29 | 18 | -164/+162 |
| * | Bulk erasing instructions without RAUWing them is unsafe. Instead, break them | Nick Lewycky | 2009-07-29 | 1 | -7/+9 |
| * | Rename MDNode.h header. It defines MDnode and other metadata classes. | Devang Patel | 2009-07-28 | 1 | -1/+1 |
| * | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 3 | -11/+11 |
| * | Change ConstantArray to 2.5 API. | Owen Anderson | 2009-07-28 | 5 | -7/+7 |
| * | Teach instcombine to respect and preserve inbounds. Add inbounds | Dan Gohman | 2009-07-28 | 1 | -21/+53 |
| * | Fix a small little typo. | Mike Stump | 2009-07-28 | 1 | -1/+1 |
| * | Replace dyn_castGetElementPtr with dyn_cast<GEPOperator>. | Dan Gohman | 2009-07-28 | 1 | -15/+5 |
| * | Grab the LLVMContext and parent Module of SI ahead of the | Dan Gohman | 2009-07-28 | 1 | -3/+4 |
| * | Fix a release-asserts warning. Debug functions should be marked used, | Mike Stump | 2009-07-27 | 1 | -0/+2 |
| * | Avoid build warnings. | Mike Stump | 2009-07-27 | 2 | -0/+2 |
| * | Move ConstantStruct back to 2.5 API. | Owen Anderson | 2009-07-27 | 2 | -3/+3 |
| * | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson | 2009-07-27 | 3 | -9/+7 |
| * | Do not seed mstadata into the value map. | Devang Patel | 2009-07-27 | 1 | -25/+4 |
| * | Remove Value::getName{Start,End}, the last of the old Name APIs. | Daniel Dunbar | 2009-07-26 | 10 | -39/+38 |