forked from github/verilator
a67ba04c37
Found with CLion inspections
68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
// DESCRIPTION: verilator_coverage: Top global container
|
|
//
|
|
// Code available from: https://verilator.org
|
|
//
|
|
//*************************************************************************
|
|
//
|
|
// Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
// Version 2.0.
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
//
|
|
//*************************************************************************
|
|
|
|
#ifndef _VLCTOP_H_
|
|
#define _VLCTOP_H_ 1
|
|
|
|
#include "config_build.h"
|
|
#include "verilatedos.h"
|
|
|
|
#include "VlcOptions.h"
|
|
#include "VlcTest.h"
|
|
#include "VlcPoint.h"
|
|
#include "VlcSource.h"
|
|
|
|
//######################################################################
|
|
// VlcTop - Top level options container
|
|
|
|
class VlcTop {
|
|
public:
|
|
// PUBLIC MEMBERS
|
|
VlcOptions opt; //< Runtime options
|
|
private:
|
|
// MEMBERS
|
|
VlcTests m_tests; //< List of all tests (all coverage files)
|
|
VlcPoints m_points; //< List of all points
|
|
VlcSources m_sources; //< List of all source files to annotate
|
|
|
|
// METHODS
|
|
void annotateCalc();
|
|
void annotateCalcNeeded();
|
|
void annotateOutputFiles(const string& dirname);
|
|
|
|
public:
|
|
// CONSTRUCTORS
|
|
VlcTop() {}
|
|
~VlcTop() {}
|
|
|
|
// ACCESSORS
|
|
VlcTests& tests() { return m_tests; }
|
|
VlcPoints& points() { return m_points; }
|
|
VlcSources& sources() { return m_sources; }
|
|
|
|
// METHODS
|
|
void annotate(const string& dirname);
|
|
void readCoverage(const string& filename, bool nonfatal = false);
|
|
void writeCoverage(const string& filename);
|
|
void writeInfo(const string& filename);
|
|
|
|
void rank();
|
|
};
|
|
|
|
//######################################################################
|
|
|
|
#endif // guard
|