Age | Commit message (Expand) | Author |
2012-12-31 | add support for PHI nodes to ObjectSizeOffsetVisitor | Nuno Lopes |
2012-12-30 | convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu... | Nuno Lopes |
2012-12-30 | Remove the Function::getFnAttributes method in favor of using the AttributeSet | Bill Wendling |
2012-12-28 | Nuke some dead code that snuck in some how. I thought I had already | Chandler Carruth |
2012-12-28 | Fix a stunning oversight in the inline cost analysis. It was never | Chandler Carruth |
2012-12-28 | Teach the inline cost analysis about calls that can be simplified and | Chandler Carruth |
2012-12-28 | Teach instsimplify to use the constant folder where appropriate for | Chandler Carruth |
2012-12-28 | Add entry points to instsimplify for simplifying calls. The entry points | Chandler Carruth |
2012-12-24 | Add LLVMContext::emitWarning methods and use them. <rdar://problem/12867368> | Bob Wilson |
2012-12-24 | Update the docs of the cost model. | Nadav Rotem |
2012-12-22 | Remove trailing whitespace. | Craig Topper |
2012-12-20 | Add a new attribute, 'noduplicate'. If a function contains a noduplicate call... | James Molloy |
2012-12-19 | Fix a bug that was found by building clang with -fsanitize. | Nadav Rotem |
2012-12-19 | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling |
2012-12-14 | Fix a crash in ValueTracking on vectors of pointers. | Nadav Rotem |
2012-12-13 | Rename isPowerOfTwo to isKnownToBeAPowerOfTwo. | Rafael Espindola |
2012-12-12 | The TargetData is not used for the isPowerOfTwo determination. It has never | Rafael Espindola |
2012-12-12 | Have SimplifyBinOp call the new FAdd/FSub/FMul helpers, with fast-math flags off | Michael Ilseman |
2012-12-12 | Added a slew of SimplifyInstruction floating-point optimizations, many of whi... | Michael Ilseman |
2012-12-11 | Holding my nose and moving the accumulation routine to GEPOperator | Chandler Carruth |
2012-12-11 | Hoist the GEP constant address offset computation to a common home on | Chandler Carruth |
2012-12-10 | Optimistically analyse Phi cycles | Arnold Schwaighofer |
2012-12-10 | Add a new visitor for walking the uses of a pointer value. | Chandler Carruth |
2012-12-09 | Reorganize FastMathFlags to be a wrapper around unsigned, and streamline some... | Michael Ilseman |
2012-12-07 | Add support to ValueTracking for determining that a pointer is non-null | Chandler Carruth |
2012-12-06 | Have CannotBeNegativeZero() be aware of the nsz fast-math flag | Michael Ilseman |
2012-12-03 | constify the cost API | Nadav Rotem |
2012-12-03 | Use the new script to sort the includes of every file under lib. | Chandler Carruth |
2012-11-30 | Move the InstVisitor utility into VMCore where it belongs. It heavily | Chandler Carruth |
2012-11-30 | Modified dump() to provide a little | Preston Briggs |
2012-11-29 | Follow up to 168711: It's safe to base this analysis on the found compare, ju... | Benjamin Kramer |
2012-11-29 | Improve isImpliedCond comment a bit. | Andrew Trick |
2012-11-29 | Cleaned up a couple of comments. | Preston Briggs |
2012-11-27 | Modified depends() to recognize that when all levels are "=" and | Preston Briggs |
2012-11-27 | SCEV: Even if the latch terminator is foldable we can't deduce the result of ... | Benjamin Kramer |
2012-11-27 | Modify depends(Src, Dst, PossiblyLoopIndependent). | Preston Briggs |
2012-11-27 | Fast-math optimization: fold multiply by zero | Michael Ilseman |
2012-11-21 | Corrects a problem where we reply exclusively of GEPs to drive | Preston Briggs |
2012-11-20 | removes a few "const" qualifiers | Sebastian Pop |
2012-11-19 | Clean up handling of always-inline functions in the inliner. | Bob Wilson |
2012-11-19 | Some comment fixes. | Bob Wilson |
2012-11-17 | Phi speculation improvement for BasicAA | Hal Finkel |
2012-11-16 | Make this easier to understand, as suggested by Chandler. | Duncan Sands |
2012-11-16 | InstructionSimplify should be able to simplify A+B==B+A to 'true' | Duncan Sands |
2012-11-15 | Add doInitialization and doFinalization methods to ModulePass's, to allow the... | Owen Anderson |
2012-11-13 | DependenceAnalysis: Print all dependency pairs when dumping. Update all testc... | Benjamin Kramer |
2012-11-08 | llvm/ConstantFolding.cpp: Make ReadDataFromGlobal() and FoldReinterpretLoadFr... | NAKAMURA Takumi |
2012-11-05 | Don't infer whether a value is captured in the current function from the | Richard Osborne |
2012-11-05 | ConstantFolding.cpp: Whitespace. | NAKAMURA Takumi |
2012-11-04 | Apply the patch from PR14160. I failed to construct a testcase for this, but | Duncan Sands |