about summary refs log tree commit diff homepage
path: root/include
AgeCommit message (Expand)Author
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-16Start SimplifyingExprBuilderDaniel Dunbar
2009-06-15Support partial folding for Add in new constant folding builder.Daniel Dunbar
2009-06-14Add NonConstantExpr, so it is possible to statically type an expression that isDaniel Dunbar
2009-06-14Rename FoldingExprBuilder -> SimplifyingExprBuilderDaniel Dunbar
2009-06-14Kill off ExtractExpr::createByteOff.Daniel Dunbar
2009-06-14Use ExprBuilder for constructing expressions in the Parser.Daniel Dunbar
2009-06-14Add ExprBuilder base class, and start of implementations.Daniel Dunbar
2009-06-14More ConstantExpr cleanup.Daniel Dunbar
2009-06-14Remove some unused functionality.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 Array construction out of MemoryObject into ObjectState.Daniel Dunbar
2009-06-10Change ExecutionState::symbolics to include both the MemoryObject and theDaniel Dunbar
2009-06-09More constant Array support.Daniel Dunbar
2009-06-09Add initial support for constant Arrays.Daniel Dunbar
2009-06-09Remove Array::object.Daniel Dunbar
2009-06-09Remove Array::id.Daniel Dunbar
2009-06-09Add Array::name field, initialized but not used for anything yet.Daniel Dunbar
2009-06-09Kill off UpdateList::isRooted flag.Daniel Dunbar
2009-06-08Kill off Concat::is[248]ByteConcat, and fix FastCexSolver for this case.Daniel Dunbar
2009-06-08Add klee::createDummySolver, the dummy solver always fails.Daniel Dunbar
2009-06-07Make sure that ExprEvaluator will fold constant expressions (klee never createsDaniel Dunbar
2009-06-07Implement array declarations.Daniel Dunbar
2009-06-05Support the extended query command syntax.Daniel Dunbar
2009-06-05Add Expr::is{Zero,True,False} methods.Daniel Dunbar
2009-06-05llvm::Casting support for Kleaver AST nodes.Daniel Dunbar
2009-06-05Clean up a number of unused variable warnings when building w/oDaniel Dunbar
2009-06-05Expr::print shouldn't introduce line breaks or extra formatting.Daniel Dunbar
2009-06-04Make ConstantExpr's value and constructor private.Daniel Dunbar
2009-06-04Sink getConstantValue into ConstantExpr.Daniel Dunbar
2009-06-04Change Solver::getValue to make explicit that result is a ConstantExpr.Daniel Dunbar
2009-06-04Finish removing uses of Expr::isConstant.Daniel Dunbar
2009-06-04Start removing uses of Expr::isConstant.Daniel Dunbar
2009-06-04Change ConstantExpr::{alloc,create} to return a ref<ConstantExpr>Daniel Dunbar
2009-06-04Use dyn_cast<> instead of dyn_ref_cast.Daniel Dunbar
2009-06-04Use cast<> instead of static_ref_cast.Daniel Dunbar
2009-06-04Implement simplify_type for ref<>Daniel Dunbar
2009-06-04Expr: Add LLVM style casting support instead of requiring RTTI.Daniel Dunbar
2009-06-04Move isConstant from ref<> to Expr::Daniel Dunbar
2009-06-03Kill off specialized ref<> forwarding methods, in the interest of making it aDaniel Dunbar
2009-06-03Remove ref<>'s constant Expr optimization.Daniel Dunbar
2009-06-03Update ConstantExpr::fromMemory to return a ref<Expr>.Daniel Dunbar
2009-06-03Remove a usage of the direct ref<Expr> constructor that I missed.Daniel Dunbar