diff options
author | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-02-01 19:31:42 +0000 |
---|---|---|
committer | Stepan Dyatkovskiy <stpworld@narod.ru> | 2012-02-01 19:31:42 +0000 |
commit | 6adac1d681f328b1737acfa38f221ce2f3b20ef1 (patch) | |
tree | 339c8a169b46758e6a3b8b8d62deffc27f14bdcc /lib | |
parent | 5fa73a2145c1150c826e8d8de65ff3c7b3da962c (diff) | |
download | klee-6adac1d681f328b1737acfa38f221ce2f3b20ef1.tar.gz |
Second compatability fix for SwitchInst refactoring (added compatability with llvm versions < 3.1).
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@149528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/Executor.cpp | 18 | ||||
-rw-r--r-- | lib/Module/LowerSwitch.cpp | 7 |
2 files changed, 23 insertions, 2 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index b17b7c40..08cf3f74 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -1486,12 +1486,20 @@ void Executor::executeInstruction(ExecutionState &state, KInstruction *ki) { LLVM_TYPE_Q llvm::IntegerType *Ty = cast<IntegerType>(si->getCondition()->getType()); ConstantInt *ci = ConstantInt::get(Ty, CE->getZExtValue()); +#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 1) unsigned index = si->resolveSuccessorIndex(si->findCaseValue(ci)); +#else + unsigned index = si->findCaseValue(ci); +#endif transferToBasicBlock(si->getSuccessor(index), si->getParent(), state); } else { std::map<BasicBlock*, ref<Expr> > targets; ref<Expr> isDefault = ConstantExpr::alloc(1, Expr::Bool); +#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 1) for (unsigned i=0; i<cases; ++i) { +#else + for (unsigned i=1; i<cases; ++i) { +#endif ref<Expr> value = evalConstant(si->getCaseValue(i)); ref<Expr> match = EqExpr::create(cond, value); isDefault = AndExpr::create(isDefault, Expr::createIsZero(match)); @@ -1500,9 +1508,15 @@ void Executor::executeInstruction(ExecutionState &state, KInstruction *ki) { assert(success && "FIXME: Unhandled solver failure"); (void) success; if (result) { +#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 1) + BasicBlock *caseSuccessor = si->getCaseSuccessor(i); +#else + BasicBlock *caseSuccessor = si->getSuccessor(i); +#endif std::map<BasicBlock*, ref<Expr> >::iterator it = - targets.insert(std::make_pair(si->getCaseSuccessor(i), - ConstantExpr::alloc(0, Expr::Bool))).first; + targets.insert(std::make_pair(caseSuccessor, + ConstantExpr::alloc(0, Expr::Bool))).first; + it->second = OrExpr::create(match, it->second); } } diff --git a/lib/Module/LowerSwitch.cpp b/lib/Module/LowerSwitch.cpp index 852603b8..fb37da86 100644 --- a/lib/Module/LowerSwitch.cpp +++ b/lib/Module/LowerSwitch.cpp @@ -115,9 +115,16 @@ void LowerSwitchPass::processSwitchInst(SwitchInst *SI) { } CaseVector cases; + +#if LLVM_VERSION_CODE >= LLVM_VERSION(3, 1) for (unsigned i = 0; i < SI->getNumCases(); ++i) cases.push_back(SwitchCase(SI->getCaseValue(i), SI->getCaseSuccessor(i))); +#else + for (unsigned i = 1; i < SI->getNumSuccessors(); ++i) + cases.push_back(SwitchCase(SI->getSuccessorValue(i), + SI->getSuccessor(i))); +#endif // reverse cases, as switchConvert constructs a chain of // basic blocks by appending to the front. if we reverse, |