diff options
author | Frank Busse <bb0xfb@gmail.com> | 2019-08-02 16:54:57 +0100 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-10-31 15:38:21 +0000 |
commit | 2b0b0f89fcfff828b6dd8c20f58d872c7395dba4 (patch) | |
tree | 5576a5fd49f8b764334cc0490e82ea2dce68fa37 | |
parent | 24996597043fd8fb76a6b0fa781fcb0197050dab (diff) | |
download | klee-2b0b0f89fcfff828b6dd8c20f58d872c7395dba4.tar.gz |
Executor: fix missing default case in switch instruction
-rw-r--r-- | lib/Core/Executor.cpp | 9 | ||||
-rw-r--r-- | test/regression/2019-08-02-missing-switch-default.ll | 50 |
2 files changed, 56 insertions, 3 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 655d6005..4ff181f5 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -1795,10 +1795,9 @@ void Executor::executeInstruction(ExecutionState &state, KInstruction *ki) { // Handle possible different branch targets // We have the following assumptions: - // - each case value is mutual exclusive to all other values including the - // default value + // - each case value is mutual exclusive to all other values // - order of case branches is based on the order of the expressions of - // the scase values, still default is handled last + // the case values, still default is handled last std::vector<BasicBlock *> bbOrder; std::map<BasicBlock *, ref<Expr> > branchTargets; @@ -1822,6 +1821,10 @@ void Executor::executeInstruction(ExecutionState &state, KInstruction *ki) { it != itE; ++it) { ref<Expr> match = EqExpr::create(cond, it->first); + // skip if case has same successor basic block as default case + // (should work even with phi nodes as a switch is a single terminating instruction) + if (it->second == si->getDefaultDest()) continue; + // Make sure that the default value does not contain this target's value defaultValue = AndExpr::create(defaultValue, Expr::createIsZero(match)); diff --git a/test/regression/2019-08-02-missing-switch-default.ll b/test/regression/2019-08-02-missing-switch-default.ll new file mode 100644 index 00000000..6adb8e19 --- /dev/null +++ b/test/regression/2019-08-02-missing-switch-default.ll @@ -0,0 +1,50 @@ +; REQUIRES: geq-llvm-3.8 +; RUN: rm -rf %t.klee-out +; RUN: llvm-as -f %s -o %t.bc +; RUN: %klee --switch-type=internal --output-dir=%t.klee-out %t.bc +; RUN: FileCheck --input-file=%t.klee-out/info %s +; CHECK: KLEE: done: completed paths = 3 + +target triple = "x86_64-pc-linux-gnu" + +@.str = private unnamed_addr constant [5 x i8] c"cond\00", align 1 + +define i32 @main() #0 { + %1 = alloca i32, align 4 + %2 = alloca i32, align 4 + %3 = alloca i32, align 4 + store i32 0, i32* %1, align 4 + %4 = bitcast i32* %2 to i8* + call void @klee_make_symbolic(i8* %4, i64 4, i8* getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i32 0, i32 0)) + store i32 0, i32* %3, align 4 + %5 = load i32, i32* %2, align 4 + switch i32 %5, label %7 [ + i32 1, label %6 + i32 5, label %7 + ] + +; <label>:6: + store i32 1, i32* %3, align 4 + br label %8 + +; <label>:7: + store i32 5, i32* %3, align 4 + br label %8 + +; <label>:8: + %9 = load i32, i32* %2, align 4 + %10 = icmp eq i32 %9, 7 + br i1 %10, label %11, label %12 + +; <label>:11: + store i32 7, i32* %3, align 4 + br label %12 + +; <label>:12: + %13 = load i32, i32* %1, align 4 + ret i32 %13 +} + +declare void @klee_make_symbolic(i8*, i64, i8*) + +attributes #0 = { noinline nounwind optnone uwtable } |