diff options
author | Julian Büning <julian.buening@rwth-aachen.de> | 2018-10-03 14:42:37 +0200 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-10-23 18:57:53 +0300 |
commit | 2b34877c5dbf24eabf331a124b1e68d901a72cba (patch) | |
tree | 4d6f4a753d9d36a18c482cf0c8d4b8dc550bafb8 /tools | |
parent | d032742a963e7d8e83dad509dd1c95b4e1a34436 (diff) | |
download | klee-2b34877c5dbf24eabf331a124b1e68d901a72cba.tar.gz |
refactor klee_open_output_file to return std::unique_ptr
and introduce klee_open_compressed_output_file with similar behavior along some other minor improvements
Diffstat (limited to 'tools')
-rw-r--r-- | tools/klee/main.cpp | 92 |
1 files changed, 44 insertions, 48 deletions
diff --git a/tools/klee/main.cpp b/tools/klee/main.cpp index 1de5fbeb..4b32c00b 100644 --- a/tools/klee/main.cpp +++ b/tools/klee/main.cpp @@ -221,7 +221,7 @@ class KleeHandler : public InterpreterHandler { private: Interpreter *m_interpreter; TreeStreamWriter *m_pathWriter, *m_symPathWriter; - llvm::raw_ostream *m_infoFile; + std::unique_ptr<llvm::raw_ostream> m_infoFile; SmallString<128> m_outputDirectory; @@ -250,9 +250,9 @@ public: const char *errorSuffix); std::string getOutputFilename(const std::string &filename); - llvm::raw_fd_ostream *openOutputFile(const std::string &filename); + std::unique_ptr<llvm::raw_fd_ostream> openOutputFile(const std::string &filename); std::string getTestFilename(const std::string &suffix, unsigned id); - llvm::raw_fd_ostream *openTestFile(const std::string &suffix, unsigned id); + std::unique_ptr<llvm::raw_fd_ostream> openTestFile(const std::string &suffix, unsigned id); // load a .path file static void loadPathFile(std::string name, @@ -265,7 +265,7 @@ public: }; KleeHandler::KleeHandler(int argc, char **argv) - : m_interpreter(0), m_pathWriter(0), m_symPathWriter(0), m_infoFile(0), + : m_interpreter(0), m_pathWriter(0), m_symPathWriter(0), m_outputDirectory(), m_numTotalTests(0), m_numGeneratedTests(0), m_pathsExplored(0), m_argc(argc), m_argv(argv) { @@ -347,7 +347,6 @@ KleeHandler::~KleeHandler() { delete m_symPathWriter; fclose(klee_warning_file); fclose(klee_message_file); - delete m_infoFile; } void KleeHandler::setInterpreter(Interpreter *i) { @@ -372,17 +371,17 @@ std::string KleeHandler::getOutputFilename(const std::string &filename) { return path.str(); } -llvm::raw_fd_ostream *KleeHandler::openOutputFile(const std::string &filename) { - llvm::raw_fd_ostream *f; +std::unique_ptr<llvm::raw_fd_ostream> +KleeHandler::openOutputFile(const std::string &filename) { std::string Error; std::string path = getOutputFilename(filename); - f = klee_open_output_file(path, Error); - if (!Error.empty()) { + auto f = klee_open_output_file(path, Error); + if (!f) { klee_warning("error opening file \"%s\". KLEE may have run out of file " "descriptors: try to increase the maximum number of open file " "descriptors by using ulimit (%s).", path.c_str(), Error.c_str()); - return NULL; + return nullptr; } return f; } @@ -393,8 +392,8 @@ std::string KleeHandler::getTestFilename(const std::string &suffix, unsigned id) return filename.str(); } -llvm::raw_fd_ostream *KleeHandler::openTestFile(const std::string &suffix, - unsigned id) { +std::unique_ptr<llvm::raw_fd_ostream> +KleeHandler::openTestFile(const std::string &suffix, unsigned id) { return openOutputFile(getTestFilename(suffix, id)); } @@ -444,30 +443,29 @@ void KleeHandler::processTestCase(const ExecutionState &state, } if (errorMessage) { - llvm::raw_ostream *f = openTestFile(errorSuffix, id); - *f << errorMessage; - delete f; + auto f = openTestFile(errorSuffix, id); + if (f) + *f << errorMessage; } if (m_pathWriter) { std::vector<unsigned char> concreteBranches; m_pathWriter->readStream(m_interpreter->getPathStreamID(state), concreteBranches); - llvm::raw_fd_ostream *f = openTestFile("path", id); - for (std::vector<unsigned char>::iterator I = concreteBranches.begin(), - E = concreteBranches.end(); - I != E; ++I) { - *f << *I << "\n"; + auto f = openTestFile("path", id); + if (f) { + for (const auto &branch : concreteBranches) { + *f << branch << '\n'; + } } - delete f; } if (errorMessage || WriteKQueries) { std::string constraints; m_interpreter->getConstraintLog(state, constraints,Interpreter::KQUERY); - llvm::raw_ostream *f = openTestFile("kquery", id); - *f << constraints; - delete f; + auto f = openTestFile("kquery", id); + if (f) + *f << constraints; } if (WriteCVCs) { @@ -475,43 +473,42 @@ void KleeHandler::processTestCase(const ExecutionState &state, // SMT-LIBv2 not CVC which is a bit confusing std::string constraints; m_interpreter->getConstraintLog(state, constraints, Interpreter::STP); - llvm::raw_ostream *f = openTestFile("cvc", id); - *f << constraints; - delete f; + auto f = openTestFile("cvc", id); + if (f) + *f << constraints; } if(WriteSMT2s) { std::string constraints; m_interpreter->getConstraintLog(state, constraints, Interpreter::SMTLIB2); - llvm::raw_ostream *f = openTestFile("smt2", id); - *f << constraints; - delete f; + auto f = openTestFile("smt2", id); + if (f) + *f << constraints; } if (m_symPathWriter) { std::vector<unsigned char> symbolicBranches; m_symPathWriter->readStream(m_interpreter->getSymbolicPathStreamID(state), symbolicBranches); - llvm::raw_fd_ostream *f = openTestFile("sym.path", id); - for (std::vector<unsigned char>::iterator I = symbolicBranches.begin(), E = symbolicBranches.end(); I!=E; ++I) { - *f << *I << "\n"; + auto f = openTestFile("sym.path", id); + if (f) { + for (const auto &branch : symbolicBranches) { + *f << branch << '\n'; + } } - delete f; } if (WriteCov) { std::map<const std::string*, std::set<unsigned> > cov; m_interpreter->getCoveredLines(state, cov); - llvm::raw_ostream *f = openTestFile("cov", id); - for (std::map<const std::string*, std::set<unsigned> >::iterator - it = cov.begin(), ie = cov.end(); - it != ie; ++it) { - for (std::set<unsigned>::iterator - it2 = it->second.begin(), ie = it->second.end(); - it2 != ie; ++it2) - *f << *it->first << ":" << *it2 << "\n"; + auto f = openTestFile("cov", id); + if (f) { + for (const auto &entry : cov) { + for (const auto &line : entry.second) { + *f << *entry.first << ':' << line << '\n'; + } + } } - delete f; } if (m_numGeneratedTests == StopAfterNTests) @@ -519,13 +516,12 @@ void KleeHandler::processTestCase(const ExecutionState &state, if (WriteTestInfo) { double elapsed_time = util::getWallTime() - start_time; - llvm::raw_ostream *f = openTestFile("info", id); - *f << "Time to generate test case: " - << elapsed_time << "s\n"; - delete f; + auto f = openTestFile("info", id); + if (f) + *f << "Time to generate test case: " << elapsed_time << "s\n"; } } - + if (errorMessage && OptExitOnError) { m_interpreter->prepareForEarlyExit(); klee_error("EXITING ON ERROR:\n%s\n", errorMessage); |