source: rtems-tools/tester/covoar/CoverageReaderSkyeye.h @ 3e187ba

5
Last change on this file since 3e187ba was 100f517, checked in by Chris Johns <chrisj@…>, on 05/09/14 at 11:50:37

covoar: Merger the covoar source from rtems-testing.git.

Use waf to build covoar.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*! @file CoverageReaderSkyeye.h
2 *  @brief CoverageReaderSkyeye Specification
3 *
4 *  This file contains the specification of the CoverageReaderSkyeye class.
5 */
6
7#ifndef __COVERAGE_READER_Skyeye_H__
8#define __COVERAGE_READER_Skyeye_H__
9
10#include "CoverageReaderBase.h"
11#include "ExecutableInfo.h"
12
13namespace Coverage {
14
15  /*! @class CoverageReaderSkyeye
16   *
17   *  This class implements the functionality which reads a coverage map
18   *  file produced by Skyeye.  Since the SPARC has 32-bit instructions,
19   *  Skyeye produces a file with an integer for each 32-bit word.  The
20   *  integer will have the least significant bit set if the address
21   *  was executed.
22@verbatim
23TBD
24@endverbatim
25   */
26  class CoverageReaderSkyeye : public CoverageReaderBase {
27
28  public:
29
30    /* Inherit documentation from base class. */
31    CoverageReaderSkyeye();
32
33    /* Inherit documentation from base class. */
34    virtual ~CoverageReaderSkyeye();
35
36    /* Inherit documentation from base class. */
37    void processFile(
38      const char* const     file,
39      ExecutableInfo* const executableInformation
40    );
41  };
42
43}
44#endif
Note: See TracBrowser for help on using the repository browser.