|
klee
|
#include "klee/ADT/Bits.h"#include "klee/ADT/Ref.h"#include "llvm/ADT/APFloat.h"#include "llvm/ADT/APInt.h"#include "llvm/ADT/DenseSet.h"#include "llvm/ADT/SmallVector.h"#include "llvm/Support/CommandLine.h"#include "llvm/Support/raw_ostream.h"#include <sstream>#include <set>#include <vector>#include <map>

Go to the source code of this file.
Classes | |
| class | klee::Expr |
| Class representing symbolic expressions. More... | |
| struct | klee::Expr::CreateArg |
| class | klee::NonConstantExpr |
| class | klee::BinaryExpr |
| class | klee::CmpExpr |
| class | klee::NotOptimizedExpr |
| class | klee::UpdateNode |
| Class representing a byte update of an array. More... | |
| class | klee::Array |
| class | klee::UpdateList |
| Class representing a complete list of updates into an array. More... | |
| class | klee::ReadExpr |
| Class representing a one byte read from an array. More... | |
| class | klee::SelectExpr |
| Class representing an if-then-else expression. More... | |
| class | klee::ConcatExpr |
| class | klee::ExtractExpr |
| class | klee::NotExpr |
| class | klee::CastExpr |
| class | klee::ConstantExpr |
Namespaces | |
| namespace | llvm |
| namespace | klee |
Macros | |
| #define | CAST_EXPR_CLASS(_class_kind) |
| #define | ARITHMETIC_EXPR_CLASS(_class_kind) |
| #define | COMPARISON_EXPR_CLASS(_class_kind) |
Functions | |
| bool | klee::operator== (const Expr &lhs, const Expr &rhs) |
| bool | klee::operator< (const Expr &lhs, const Expr &rhs) |
| bool | klee::operator!= (const Expr &lhs, const Expr &rhs) |
| bool | klee::operator> (const Expr &lhs, const Expr &rhs) |
| bool | klee::operator<= (const Expr &lhs, const Expr &rhs) |
| bool | klee::operator>= (const Expr &lhs, const Expr &rhs) |
| llvm::raw_ostream & | klee::operator<< (llvm::raw_ostream &os, const Expr &e) |
| llvm::raw_ostream & | klee::operator<< (llvm::raw_ostream &os, const Expr::Kind kind) |
| std::stringstream & | klee::operator<< (std::stringstream &os, const Expr &e) |
| std::stringstream & | klee::operator<< (std::stringstream &os, const Expr::Kind kind) |
Variables | |
| llvm::cl::OptionCategory | klee::ExprCat |
| #define CAST_EXPR_CLASS | ( | _class_kind | ) |
| #define COMPARISON_EXPR_CLASS | ( | _class_kind | ) |