| Commit message (Expand) | Author | Age | Files | Lines |
* | Kill off more cerr/cout uses and prune includes a bit. | Benjamin Kramer | 2009-08-23 | 4 | -20/+11 |
* | Fix -Asserts warnings. | Daniel Dunbar | 2009-08-23 | 1 | -0/+3 |
* | convert LoopInfo.h and GraphWriter.h to use raw_ostream | Chris Lattner | 2009-08-23 | 1 | -2/+2 |
* | eliminate uses of cerr() | Chris Lattner | 2009-08-23 | 2 | -12/+12 |
* | remove a few DOUTs here and there. | Chris Lattner | 2009-08-23 | 4 | -10/+10 |
* | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 2009-08-23 | 1 | -1/+1 |
* | eliminate the std::ostream form of WriteAsOperand and update clients. | Chris Lattner | 2009-08-23 | 1 | -2/+2 |
* | remove the std::ostream version of module and type printing. | Chris Lattner | 2009-08-23 | 1 | -3/+3 |
* | eliminate the "Value" printing methods that print to a std::ostream. | Chris Lattner | 2009-08-23 | 17 | -169/+180 |
* | Rename hasNoUnsignedOverflow and hasNoSignedOverflow to hasNoUnsignedWrap | Dan Gohman | 2009-08-20 | 1 | -1/+1 |
* | Fix a few places to check if TargetData is available before using it. | Dan Gohman | 2009-08-19 | 1 | -2/+2 |
* | Make SROA and PredicateSimplifier cope if TargetData is not | Dan Gohman | 2009-08-19 | 2 | -6/+16 |
* | Use hasDefinitiveInitializer() instead of testing the same thing | Dan Gohman | 2009-08-19 | 3 | -5/+5 |
* | Fix up PHI nodes correctly in the presence of unreachable BBs, part two. Also | Nick Lewycky | 2009-08-19 | 1 | -7/+30 |
* | Be more careful when modifying PHI nodes. Patch by Andre Tavares. | Nick Lewycky | 2009-08-19 | 1 | -1/+2 |
* | Fix SimplifyLibcalls and ValueTracking to check mayBeOverridden | Dan Gohman | 2009-08-19 | 1 | -1/+2 |
* | Fix a bug that caused globalopt to miscompile tramp3d: don't miss | Dan Gohman | 2009-08-18 | 1 | -3/+8 |
* | Make TargetData optional in MemCpyOptimizer. | Dan Gohman | 2009-08-18 | 1 | -10/+10 |
* | Make TargetData optional in SimplifyLibCalls. | Dan Gohman | 2009-08-18 | 1 | -7/+45 |
* | The attached patches attempt to fix cross builds. For example, if you | Anton Korobeynikov | 2009-08-18 | 1 | -1/+1 |
* | Update comments to new-style syntax. | Dan Gohman | 2009-08-17 | 1 | -2/+2 |
* | Don't crash on critical edge. Patch by Andre Tavares. | Nick Lewycky | 2009-08-17 | 1 | -1/+1 |
* | Fix debug output to include a newline after printing a Value, now | Dan Gohman | 2009-08-17 | 3 | -18/+18 |
* | Don't access the first element of a potentially empty | Duncan Sands | 2009-08-17 | 1 | -6/+7 |
* | Don't crash trying to promote VLAs. | Nick Lewycky | 2009-08-17 | 1 | -1/+4 |
* | Fix for PR3016: detect the tricky case, where there are | Eli Friedman | 2009-08-16 | 1 | -59/+37 |
* | Don't try to get the context from an erased Instruction. | Benjamin Kramer | 2009-08-15 | 1 | -1/+1 |
* | SSI construction should just go ahead and ignore instructions in unreachable | Nick Lewycky | 2009-08-15 | 1 | -2/+6 |
* | Make TargetData optional in GlobalOpt and ArgumentPromotion. | Dan Gohman | 2009-08-14 | 2 | -15/+16 |
* | Actually privatize a IntegerTypes, and fix a few bugs exposed by this. | Owen Anderson | 2009-08-13 | 1 | -1/+1 |
* | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 47 | -497/+628 |
* | 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 |