klee
CoreStats.cpp
Go to the documentation of this file.
1//===-- CoreStats.cpp -----------------------------------------------------===//
2//
3// The KLEE Symbolic Virtual Machine
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "CoreStats.h"
11
12using namespace klee;
13
14Statistic stats::allocations("Allocations", "Alloc");
15Statistic stats::coveredInstructions("CoveredInstructions", "Icov");
16Statistic stats::falseBranches("FalseBranches", "Bf");
17Statistic stats::forkTime("ForkTime", "Ftime");
18Statistic stats::forks("Forks", "Forks");
19Statistic stats::instructionRealTime("InstructionRealTimes", "Ireal");
20Statistic stats::instructionTime("InstructionTimes", "Itime");
21Statistic stats::instructions("Instructions", "I");
22Statistic stats::minDistToReturn("MinDistToReturn", "Rdist");
23Statistic stats::minDistToUncovered("MinDistToUncovered", "UCdist");
24Statistic stats::resolveTime("ResolveTime", "Rtime");
25Statistic stats::solverTime("SolverTime", "Stime");
26Statistic stats::states("States", "States");
27Statistic stats::trueBranches("TrueBranches", "Bt");
28Statistic stats::uncoveredInstructions("UncoveredInstructions", "Iuncov");
Statistic minDistToReturn
Statistic resolveTime
Statistic allocations
Statistic forkTime
Statistic states
Statistic solverTime
Statistic instructionTime
Statistic coveredInstructions
Statistic falseBranches
Statistic trueBranches
Statistic instructions
Statistic uncoveredInstructions
Statistic forks
The number of process forks.
Statistic instructionRealTime
Statistic minDistToUncovered
Definition: main.cpp:291