00001 //===-- CoreStats.h ---------------------------------------------*- C++ -*-===// 00002 // 00003 // The KLEE Symbolic Virtual Machine 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef KLEE_CORESTATS_H 00011 #define KLEE_CORESTATS_H 00012 00013 #include "klee/Statistic.h" 00014 00015 namespace klee { 00016 namespace stats { 00017 00018 extern Statistic allocations; 00019 extern Statistic resolveTime; 00020 extern Statistic instructions; 00021 extern Statistic instructionTime; 00022 extern Statistic instructionRealTime; 00023 extern Statistic coveredInstructions; 00024 extern Statistic uncoveredInstructions; 00025 extern Statistic trueBranches; 00026 extern Statistic falseBranches; 00027 extern Statistic forkTime; 00028 extern Statistic solverTime; 00029 00031 extern Statistic forks; 00032 00035 extern Statistic states; 00036 00039 extern Statistic reachableUncovered; 00040 00044 extern Statistic minDistToUncovered; 00045 00048 extern Statistic minDistToReturn; 00049 00050 } 00051 } 00052 00053 #endif
1.5.8