aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/Module
diff options
context:
space:
mode:
authorMartin Nowack <martin@se.inf.tu-dresden.de>2013-11-13 23:53:46 +0100
committerDan Liew <daniel.liew@imperial.ac.uk>2013-12-19 15:45:03 +0000
commit17ec611bb5ada13350a72f2e1de439499128c62f (patch)
tree34cbb2376165f53992c45c2a0281b5953c897e23 /lib/Module
parenta329a133d66a86249a3b1ce8025a88f4c0b197c4 (diff)
downloadklee-17ec611bb5ada13350a72f2e1de439499128c62f.tar.gz
Allow to specify KLEE-internal functions
KLEE provides runtime library functions to do detection of bugs (e.g. overflow). This runtime functions are not the location of the bugs but it is the next non-runtime library function from the stack. Use the caller inside that function to indicate where the bug is.
Diffstat (limited to 'lib/Module')
-rw-r--r--lib/Module/KModule.cpp24
1 files changed, 15 insertions, 9 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp
index d889b51f..4bc10604 100644
--- a/lib/Module/KModule.cpp
+++ b/lib/Module/KModule.cpp
@@ -269,6 +269,17 @@ static void inlineChecks(Module *module, const char * functionName) {
DEBUG( klee_message("Tried to inline calls to %s. %u successes, %u failures",functionName, successCount, failCount) );
}
+void KModule::addInternalFunction(const char* functionName){
+ Function* internalFunction = module->getFunction(functionName);
+ if (!internalFunction) {
+ DEBUG_WITH_TYPE("KModule", klee_warning(
+ "Failed to add internal function %s. Not found.", functionName));
+ return ;
+ }
+ DEBUG( klee_message("Added function %s.",functionName));
+ internalFunctions.insert(internalFunction);
+}
+
void KModule::prepare(const Interpreter::ModuleOptions &opts,
InterpreterHandler *ih) {
if (!MergeAtExit.empty()) {
@@ -374,17 +385,12 @@ void KModule::prepare(const Interpreter::ModuleOptions &opts,
#endif
module = linkWithLibrary(module, path.c_str());
- /* In order for KLEE to report ALL errors at instrumented
- * locations the instrumentation call (e.g. "klee_div_zero_check")
- * must be inlined. Otherwise one of the instructions in the
- * instrumentation function will be used as the the location of
- * the error which means that the error cannot be recorded again
- * ( unless -emit-all-errors is used).
- */
+ // Add internal functions which are not used to check if instructions
+ // have been already visited
if (opts.CheckDivZero)
- inlineChecks(module, "klee_div_zero_check");
+ addInternalFunction("klee_div_zero_check");
if (opts.CheckOvershift)
- inlineChecks(module, "klee_overshift_check");
+ addInternalFunction("klee_overshift_check");
// Needs to happen after linking (since ctors/dtors can be modified)