diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2010-07-08 21:14:27 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2010-07-08 21:14:27 +0000 |
commit | 59c0dedbc949433afeac482e8243119240076026 (patch) | |
tree | ee3da2176a1923af04b61f67dd0e53b70dbde095 /lib | |
parent | e3414c0e8cc91a35cdcae09c0af8162b8f7c2f94 (diff) | |
download | klee-59c0dedbc949433afeac482e8243119240076026.tar.gz |
Add support for InsertValue and ExtractValue instructions
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@107912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/Executor.cpp | 64 | ||||
-rw-r--r-- | lib/Core/Executor.h | 3 | ||||
-rw-r--r-- | lib/Core/ExecutorUtil.cpp | 3 | ||||
-rw-r--r-- | lib/Module/KModule.cpp | 2 |
4 files changed, 62 insertions, 10 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 02abc75b..5632b208 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -33,6 +33,7 @@ #include "klee/util/Assignment.h" #include "klee/util/ExprPPrinter.h" #include "klee/util/ExprUtil.h" +#include "klee/util/GetElementPtrTypeIterator.h" #include "klee/Config/config.h" #include "klee/Internal/ADT/KTest.h" #include "klee/Internal/ADT/RNG.h" @@ -56,7 +57,6 @@ #include "llvm/ADT/StringExtras.h" #include "llvm/Support/CallSite.h" #include "llvm/Support/CommandLine.h" -#include "llvm/Support/GetElementPtrTypeIterator.h" #include "llvm/Support/raw_ostream.h" #include "llvm/System/Process.h" #include "llvm/Target/TargetData.h" @@ -2203,6 +2203,43 @@ void Executor::executeInstruction(ExecutionState &state, KInstruction *ki) { bindLocal(ki, state, ConstantExpr::alloc(Result, Expr::Bool)); break; } + case Instruction::InsertValue: { + KGEPInstruction *kgepi = static_cast<KGEPInstruction*>(ki); + + ref<Expr> agg = eval(ki, 0, state).value; + ref<Expr> val = eval(ki, 1, state).value; + + ref<Expr> l = NULL, r = NULL; + unsigned lOffset = kgepi->offset*8, rOffset = kgepi->offset*8 + val->getWidth(); + + if (lOffset > 0) + l = ExtractExpr::create(agg, 0, lOffset); + if (rOffset < agg->getWidth()) + r = ExtractExpr::create(agg, rOffset, agg->getWidth() - rOffset); + + ref<Expr> result; + if (!l.isNull() && !r.isNull()) + result = ConcatExpr::create(r, ConcatExpr::create(val, l)); + else if (!l.isNull()) + result = ConcatExpr::create(val, l); + else if (!r.isNull()) + result = ConcatExpr::create(r, val); + else + result = val; + + bindLocal(ki, state, result); + break; + } + case Instruction::ExtractValue: { + KGEPInstruction *kgepi = static_cast<KGEPInstruction*>(ki); + + ref<Expr> agg = eval(ki, 0, state).value; + + ref<Expr> result = ExtractExpr::create(agg, kgepi->offset*8, getWidthForLLVMType(i->getType())); + + bindLocal(ki, state, result); + break; + } // Other instructions... // Unhandled @@ -2244,17 +2281,12 @@ void Executor::updateStates(ExecutionState *current) { removedStates.clear(); } -void Executor::bindInstructionConstants(KInstruction *KI) { - GetElementPtrInst *gepi = dyn_cast<GetElementPtrInst>(KI->inst); - if (!gepi) - return; - - KGEPInstruction *kgepi = static_cast<KGEPInstruction*>(KI); +template <typename TypeIt> +void Executor::computeOffsets(KGEPInstruction *kgepi, TypeIt ib, TypeIt ie) { ref<ConstantExpr> constantOffset = ConstantExpr::alloc(0, Context::get().getPointerWidth()); uint64_t index = 1; - for (gep_type_iterator ii = gep_type_begin(gepi), ie = gep_type_end(gepi); - ii != ie; ++ii) { + for (TypeIt ii = ib; ii != ie; ++ii) { if (const StructType *st = dyn_cast<StructType>(*ii)) { const StructLayout *sl = kmodule->targetData->getStructLayout(st); const ConstantInt *ci = cast<ConstantInt>(ii.getOperand()); @@ -2282,6 +2314,20 @@ void Executor::bindInstructionConstants(KInstruction *KI) { kgepi->offset = constantOffset->getZExtValue(); } +void Executor::bindInstructionConstants(KInstruction *KI) { + KGEPInstruction *kgepi = static_cast<KGEPInstruction*>(KI); + + if (GetElementPtrInst *gepi = dyn_cast<GetElementPtrInst>(KI->inst)) { + computeOffsets(kgepi, gep_type_begin(gepi), gep_type_end(gepi)); + } else if (InsertValueInst *ivi = dyn_cast<InsertValueInst>(KI->inst)) { + computeOffsets(kgepi, iv_type_begin(ivi), iv_type_end(ivi)); + assert(kgepi->indices.empty() && "InsertValue constant offset expected"); + } else if (ExtractValueInst *evi = dyn_cast<ExtractValueInst>(KI->inst)) { + computeOffsets(kgepi, ev_type_begin(evi), ev_type_end(evi)); + assert(kgepi->indices.empty() && "ExtractValue constant offset expected"); + } +} + void Executor::bindModuleConstants() { for (std::vector<KFunction*>::iterator it = kmodule->functions.begin(), ie = kmodule->functions.end(); it != ie; ++it) { diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index e6f7c63e..d211b8ce 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -355,6 +355,9 @@ private: /// bindModuleConstants - Initialize the module constant table. void bindModuleConstants(); + template <typename TypeIt> + void computeOffsets(KGEPInstruction *kgepi, TypeIt ib, TypeIt ie); + /// bindInstructionConstants - Initialize any necessary per instruction /// constant values. void bindInstructionConstants(KInstruction *KI); diff --git a/lib/Core/ExecutorUtil.cpp b/lib/Core/ExecutorUtil.cpp index 04264164..5f974725 100644 --- a/lib/Core/ExecutorUtil.cpp +++ b/lib/Core/ExecutorUtil.cpp @@ -17,6 +17,8 @@ #include "klee/Internal/Module/KModule.h" +#include "klee/util/GetElementPtrTypeIterator.h" + #include "llvm/Constants.h" #include "llvm/Function.h" #include "llvm/Instructions.h" @@ -25,7 +27,6 @@ #include "llvm/ModuleProvider.h" #endif #include "llvm/Support/CallSite.h" -#include "llvm/Support/GetElementPtrTypeIterator.h" #include "llvm/Target/TargetData.h" #include <iostream> #include <cassert> diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp index 76291cdc..2982ad67 100644 --- a/lib/Module/KModule.cpp +++ b/lib/Module/KModule.cpp @@ -517,6 +517,8 @@ KFunction::KFunction(llvm::Function *_function, switch(it->getOpcode()) { case Instruction::GetElementPtr: + case Instruction::InsertValue: + case Instruction::ExtractValue: ki = new KGEPInstruction(); break; default: ki = new KInstruction(); break; |