summaryrefslogtreecommitdiff
path: root/tester/covoar/CoverageReaderQEMU.h
diff options
context:
space:
mode:
Diffstat (limited to 'tester/covoar/CoverageReaderQEMU.h')
-rw-r--r--tester/covoar/CoverageReaderQEMU.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/tester/covoar/CoverageReaderQEMU.h b/tester/covoar/CoverageReaderQEMU.h
new file mode 100644
index 0000000..ec87ff0
--- /dev/null
+++ b/tester/covoar/CoverageReaderQEMU.h
@@ -0,0 +1,46 @@
+/*! @file CoverageReaderQEMU.h
+ * @brief CoverageReaderQEMU Specification
+ *
+ * This file contains the specification of the CoverageReaderQEMU class.
+ */
+
+#ifndef __COVERAGE_READER_QEMU_H__
+#define __COVERAGE_READER_QEMU_H__
+
+#include "CoverageReaderBase.h"
+#include "ExecutableInfo.h"
+
+namespace Coverage {
+
+ /*! @class CoverageReaderQEMU
+ *
+ * This class implements the functionality which reads a coverage map
+ * file produced by QEMU. Since the SPARC has 32-bit instructions,
+ * QEMU produces a file with an integer for each 32-bit word. The
+ * integer will have the least significant bit set if the address
+ * was executed. QEMU also supports reporting branch information.
+ * Several bits are set to indicate whether a branch was taken and
+ * NOT taken.
+@verbatim
+TBD
+@endverbatim
+ */
+ class CoverageReaderQEMU : public CoverageReaderBase {
+
+ public:
+
+ /* Inherit documentation from base class. */
+ CoverageReaderQEMU();
+
+ /* Inherit documentation from base class. */
+ virtual ~CoverageReaderQEMU();
+
+ /* Inherit documentation from base class. */
+ void processFile(
+ const char* const file,
+ ExecutableInfo* const executableInformation
+ );
+ };
+
+}
+#endif