about summary refs log tree commit diff homepage
path: root/lib/Expr
AgeCommit message (Expand)Author
2011-10-17Fix some -Wunused-variable warnings.Daniel Dunbar
2011-07-24Applied patch by Leandro Sales that makes Kleaver compatible with theCristian Cadar
2011-07-20Deprecate LLVM_VERSION_MAJOR and LLVM_VERSION_MINOR in favour ofPeter Collingbourne
2011-06-09Patch from Martin Nowack for LLVM 2.9Cristian Cadar
2011-05-18Maintain an equivalence set during comparison operationsPeter Collingbourne
2011-05-18Support for arbitrary sized types in ConstantExpr::fromMemoryPeter Collingbourne
2011-04-23Patch by arrowdodger (http://keeda.stanford.edu/pipermail/klee-dev/2011-April...Cristian Cadar
2010-07-15Fix a -Wbool-conversion warning.Daniel Dunbar
2010-05-02Fix some const cast warnings.Daniel Dunbar
2010-04-05Add long double support, patch by David Ramos.Daniel Dunbar
2009-09-05Applied patch submitted by Pongsin Poosankam that fixes a bug in theCristian Cadar
2009-09-01Update for LLVM ostream changes.Daniel Dunbar
2009-08-01Add Expr::dumpDaniel Dunbar
2009-07-28Move Machine constants into Context object, initialized based on the targetDaniel Dunbar
2009-07-11Removed the Nz macro.Cristian Cadar
2009-07-10Updated the Not operation for constants. Added extra test case for this.Cristian Cadar
2009-07-10Added support for bitwise not. Replacing "false == " with Not inCristian Cadar
2009-07-10Replaced createNot() by createIsZero() and "Not" macro by "Nz". Cristian Cadar
2009-06-27Start move to using APFloat (support long double).Daniel Dunbar
2009-06-26More large integer support.Daniel Dunbar
2009-06-25Kill off last getConstantValue uses.Daniel Dunbar
2009-06-25Remove some more uses of getConstantValue.Daniel Dunbar
2009-06-25Switch to using APInt math operations.Daniel Dunbar
2009-06-22Remove unnecessary width field, the width is part of the APInt.Daniel Dunbar
2009-06-22Store ConstantExpr's value as an APInt.Daniel Dunbar
2009-06-22Add ConstantExpr::toString (instead of using getConstantValue()).Daniel Dunbar
2009-06-16Add basic constant folding / simplification for Eq.Daniel Dunbar
2009-06-16Add (very) basic constant folding for And,Or,Xor.Daniel Dunbar
2009-06-16Add (very) basic constant folding for Mul.Daniel Dunbar
2009-06-16Start SimplifyingExprBuilderDaniel Dunbar
2009-06-15Support partial folding for Sub in new constant folding builder.Daniel Dunbar
2009-06-15Support partial folding for Add in new constant folding builder.Daniel Dunbar
2009-06-14Rename FoldingExprBuilder -> SimplifyingExprBuilderDaniel Dunbar
2009-06-14Kill off ExtractExpr::createByteOff.Daniel Dunbar
2009-06-14The expansion for Read{MSB,LSB} needs to continue to use the folding methods,Daniel Dunbar
2009-06-14Use ExprBuilder for constructing expressions in the Parser.Daniel Dunbar
2009-06-14Remove the (A < constant) => (A == 0 || A == 1 ... || A == constant - 1)Daniel Dunbar
2009-06-14Add ExprBuilder base class, and start of implementations.Daniel Dunbar
2009-06-14More ConstantExpr cleanup.Daniel Dunbar
2009-06-14Add ConstantExpr::{getLimitedValue,getZExtValue}.Daniel Dunbar
2009-06-14Rewrite ImpliedValue to use ConstantExpr operations.Daniel Dunbar
2009-06-14Add several ConstantExpr utility functions and move clients over.Daniel Dunbar
2009-06-14Add constant folding operations to ConstantExpr.Daniel Dunbar
2009-06-13Reverted last change that added createIff. Since we only handleCristian Cadar
2009-06-13Added a helper function to construct IFF expressions.Cristian Cadar
2009-06-10Move declaration of vc_DeleteExpr outside of function.Daniel Dunbar
2009-06-10(Missed save) Move Array construction out of MemoryObject into ObjectState.Daniel Dunbar
2009-06-10Move Array construction out of MemoryObject into ObjectState.Daniel Dunbar
2009-06-09More constant Array support.Daniel Dunbar
2009-06-09Add initial support for constant Arrays.Daniel Dunbar