blob: 935e4316dd4ddd97b7350202ad96abe372686674 (
plain) (
tree)
|
|
//===-- Context.cpp -------------------------------------------------------===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "Context.h"
#include "klee/Expr.h"
#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 3)
#include "llvm/IR/Type.h"
#include "llvm/IR/DerivedTypes.h"
#else
#include "llvm/Type.h"
#include "llvm/DerivedTypes.h"
#endif
#include <cassert>
using namespace klee;
static bool Initialized = false;
static Context TheContext;
void Context::initialize(bool IsLittleEndian, Expr::Width PointerWidth) {
assert(!Initialized && "Duplicate context initialization!");
TheContext = Context(IsLittleEndian, PointerWidth);
Initialized = true;
}
const Context &Context::get() {
assert(Initialized && "Context has not been initialized!");
return TheContext;
}
// FIXME: This is a total hack, just to avoid a layering issue until this stuff
// moves out of Expr.
ref<Expr> Expr::createSExtToPointerWidth(ref<Expr> e) {
return SExtExpr::create(e, Context::get().getPointerWidth());
}
ref<Expr> Expr::createZExtToPointerWidth(ref<Expr> e) {
return ZExtExpr::create(e, Context::get().getPointerWidth());
}
ref<ConstantExpr> Expr::createPointer(uint64_t v) {
return ConstantExpr::create(v, Context::get().getPointerWidth());
}
|