summaryrefslogtreecommitdiff
path: root/covoar/CoverageReaderTSIM.h
diff options
context:
space:
mode:
Diffstat (limited to 'covoar/CoverageReaderTSIM.h')
-rw-r--r--covoar/CoverageReaderTSIM.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/covoar/CoverageReaderTSIM.h b/covoar/CoverageReaderTSIM.h
deleted file mode 100644
index 4acb889..0000000
--- a/covoar/CoverageReaderTSIM.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*! @file CoverageReaderTSIM.h
- * @brief CoverageReaderTSIM Specification
- *
- * This file contains the specification of the CoverageReaderTSIM class.
- */
-
-#ifndef __COVERAGE_READER_TSIM_H__
-#define __COVERAGE_READER_TSIM_H__
-
-#include "CoverageReaderBase.h"
-#include "ExecutableInfo.h"
-
-namespace Coverage {
-
- /*! @class CoverageReaderTSIM
- *
- * This class implements the functionality which reads a coverage map
- * file produced by TSIM. Since the SPARC has 32-bit instructions,
- * TSIM produces a file with an integer for each 32-bit word. The
- * integer will have the least significant bit if the address
- * was executed.
-@verbatim
-40000000 : 1 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 1
-40000080 : 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
-@endverbatim
- */
- class CoverageReaderTSIM : public CoverageReaderBase {
-
- public:
-
- /* Inherit documentation from base class. */
- CoverageReaderTSIM();
-
- /* Inherit documentation from base class. */
- virtual ~CoverageReaderTSIM();
-
- /* Inherit documentation from base class. */
- void processFile(
- const char* const file,
- ExecutableInfo* const executableInformation
- );
- };
-
-}
-#endif