summaryrefslogtreecommitdiffstats
path: root/covoar/CoverageReaderRTEMS.h
blob: bdd5ef5fa427ce03bc9772a040ded34aebab9d2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 *  $Id$
 */

/*! @file CoverageReaderRTEMS.h
 *  @brief CoverageReaderRTEMS Specification
 *
 *  This file contains the specification of the CoverageReaderRTEMS class.
 */

#ifndef __COVERAGE_READER_RTEMS_H__
#define __COVERAGE_READER_RTEMS_H__

#include "CoverageReaderBase.h"
#include "ExecutableInfo.h"

namespace Coverage {

  /*! @class CoverageReaderRTEMS
   *
   *  This class implements the functionality which reads a coverage map
   *  file produced by RTEMS.  Since the SPARC has 32-bit instructions,
   *  RTEMS 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.
@verbatim
TBD
@endverbatim
   */
  class CoverageReaderRTEMS : public CoverageReaderBase {

  public:

    /* Inherit documentation from base class. */
    CoverageReaderRTEMS();

    /* Inherit documentation from base class. */
    virtual ~CoverageReaderRTEMS();

    /* Inherit documentation from base class. */
    void processFile(
      const char* const     file,
      ExecutableInfo* const executableInformation
    );
  };

}
#endif