From b2659ec04a9814718736ad960635a9a28edd6078 Mon Sep 17 00:00:00 2001 From: Jiri Slaby Date: Wed, 7 Jun 2017 13:36:28 +0200 Subject: llvm4: use chrono helpers from LLVM LLVM 4 removes the old time interface and starts using the C++11's chrono. So switch to that in klee for LLVM 4 too. Signed-off-by: Jiri Slaby --- include/klee/Internal/Support/Timer.h | 8 ++++++++ include/klee/Internal/System/Time.h | 11 +++++++++++ 2 files changed, 19 insertions(+) (limited to 'include') diff --git a/include/klee/Internal/Support/Timer.h b/include/klee/Internal/Support/Timer.h index a422abd0..d80ccb31 100644 --- a/include/klee/Internal/Support/Timer.h +++ b/include/klee/Internal/Support/Timer.h @@ -12,9 +12,17 @@ #include +#if LLVM_VERSION_CODE >= LLVM_VERSION(4, 0) +#include +#endif + namespace klee { class WallTimer { +#if LLVM_VERSION_CODE >= LLVM_VERSION(4, 0) + llvm::sys::TimePoint<> start; +#else uint64_t startMicroseconds; +#endif public: WallTimer(); diff --git a/include/klee/Internal/System/Time.h b/include/klee/Internal/System/Time.h index 220e260c..12522c86 100644 --- a/include/klee/Internal/System/Time.h +++ b/include/klee/Internal/System/Time.h @@ -10,7 +10,13 @@ #ifndef KLEE_UTIL_TIME_H #define KLEE_UTIL_TIME_H +#if LLVM_VERSION_CODE >= LLVM_VERSION(4, 0) +#include + +#include "llvm/Support/Chrono.h" +#else #include "llvm/Support/TimeValue.h" +#endif namespace klee { namespace util { @@ -22,7 +28,12 @@ namespace klee { double getWallTime(); /// Wall time as TimeValue object. +#if LLVM_VERSION_CODE >= LLVM_VERSION(4, 0) + double durationToDouble(std::chrono::nanoseconds dur); + llvm::sys::TimePoint<> getWallTimeVal(); +#else llvm::sys::TimeValue getWallTimeVal(); +#endif } } -- cgit 1.4.1