source: rtems-tools/tester/covoar/CoverageReaderRTEMS.h @ 0c4884a

Last change on this file since 0c4884a 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 CoverageReaderRTEMS.h
2 *  @brief CoverageReaderRTEMS Specification
3 *
4 *  This file contains the specification of the CoverageReaderRTEMS class.
5 */
6
7#ifndef __COVERAGE_READER_RTEMS_H__
8#define __COVERAGE_READER_RTEMS_H__
9
10#include "CoverageReaderBase.h"
11#include "ExecutableInfo.h"
12
13namespace Coverage {
14
15  /*! @class CoverageReaderRTEMS
16   *
17   *  This class implements the functionality which reads a coverage map
18   *  file produced by RTEMS.  Since the SPARC has 32-bit instructions,
19   *  RTEMS 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 CoverageReaderRTEMS : public CoverageReaderBase {
27
28  public:
29
30    /* Inherit documentation from base class. */
31    CoverageReaderRTEMS();
32
33    /* Inherit documentation from base class. */
34    virtual ~CoverageReaderRTEMS();
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.