Age | Commit message (Expand) | Author |
2007-03-23 | Fix constant fold of div by zero and rem by zero to match IEEE 754 | Reid Spencer |
2007-03-22 | Change uses of Function::front to Function::getEntryBlock for readability. | Dan Gohman |
2007-03-22 | Add the NoUnwind function attribute. | Reid Spencer |
2007-03-20 | DominanceFrontier::calculate(). | Devang Patel |
2007-03-20 | LoopSimplify::FindPHIToPartitionLoops() | Devang Patel |
2007-03-20 | Fix a nasty memory leak, caused by my revamp of the value symbol table. | Chris Lattner |
2007-03-19 | Allow ConstantInt::get(Ty, uint64_t) to interpret the 64-bit values as a | Reid Spencer |
2007-03-19 | For PR1258: | Reid Spencer |
2007-03-08 | Speed Up Pass Manager. | Devang Patel |
2007-03-08 | Added ContainsRelocations() to check if a constant might only be resolvable a... | Evan Cheng |
2007-03-06 | Keep track of higher level analysis. | Devang Patel |
2007-03-06 | Keep track of inherited analysis. For example, if a loop pass does not | Devang Patel |
2007-03-06 | Add preparePassManager() hook. This allows each pass to check whether | Devang Patel |
2007-03-05 | Current pass manager, not the parent pass manager, assumes the role of | Devang Patel |
2007-03-05 | Avoid constructing std::strings unless pass debugging is ON. | Devang Patel |
2007-03-05 | Account for time consumed by releaseMemory() properly. | Devang Patel |
2007-03-05 | Unbreak VC++ build. | Jeff Cohen |
2007-03-03 | Fix constant folding of fp->int bitcast for vectors. | Reid Spencer |
2007-03-02 | Prefer non-virtual calls to ConstantInt::isZero over virtual calls to | Reid Spencer |
2007-03-01 | Use the APInt versions of the bit-wise conversions of float/double to int | Reid Spencer |
2007-03-01 | Use modern variable name. ConstantUnsignedInt is long since dead. No | Reid Spencer |
2007-03-01 | Use a simpler constructor when constructing ConstantInst. | Reid Spencer |
2007-03-01 | Drop the ConstantInt(const Type&, const APInt&) constructor. It is | Reid Spencer |
2007-03-01 | Reduce #includage by taking a method out of line. | Reid Spencer |
2007-02-28 | Provide an ICmpInst::makeConstantRange to generate a ConstantRange value | Reid Spencer |
2007-02-28 | Implement a convenience method to construct a ConstantInt directly from an | Reid Spencer |
2007-02-27 | Pull out the stops. | Reid Spencer |
2007-02-27 | Remove some redundancy. | Reid Spencer |
2007-02-27 | Adjust to changes in the APInt interface. | Reid Spencer |
2007-02-27 | For PR1205: | Reid Spencer |
2007-02-27 | Make getPassManagerType() const. | Devang Patel |
2007-02-27 | Allow the AsmWriter to print out arbitrary precision integers. | Reid Spencer |
2007-02-27 | Correct the implelmentation of ConstantInt::getAllOnesValue() for bit | Reid Spencer |
2007-02-27 | For PR1205: | Reid Spencer |
2007-02-27 | ConstantFolding.cpp/h -> ConstantFold.cpp/h to avoid confusion with | Chris Lattner |
2007-02-26 | For PR1205: | Reid Spencer |
2007-02-26 | reapply my previous patch with a bugfix. | Chris Lattner |
2007-02-26 | revert my previous change, something strange is happening. | Chris Lattner |
2007-02-25 | Rework GlobalValue::removeDeadConstantUsers to always remove dead constant | Chris Lattner |
2007-02-25 | disable some noisy debug output | Chris Lattner |
2007-02-24 | Fix Transforms/ConstProp/2007-02-23-sdiv.ll and PR1215 | Chris Lattner |
2007-02-24 | Refactor the setName stuff, moving it down the inheritance hierarchy, to | Chris Lattner |
2007-02-20 | This cast broke lots of tests. | Evan Cheng |
2007-02-20 | switch ConstantFP's from ValueMap to DenseMap, which is much faster to query | Chris Lattner |
2007-02-20 | cleanup ConstantInt to use a single DenseMap for uniquing instead of the | Chris Lattner |
2007-02-20 | Make ConstantInt::getTrue/getFalse be llvm_shutdown safe. | Chris Lattner |
2007-02-20 | Clean up the internals of the ConstantInt machinery | Chris Lattner |
2007-02-20 | simplify some code that was not llvm_shutdown safe | Chris Lattner |
2007-02-20 | remove dead method | Chris Lattner |
2007-02-19 | llvm-gcc issue fixed, revert reversal :) | Chris Lattner |