NAME

SystemC::Coverage::Item - Coverage analysis item

SYNOPSIS

use SystemC::Coverage;

$Coverage = new SystemC::Coverage;
foreach my $item ($Coverage->items()) {
    print $item->count;
}

DESCRIPTION

SystemC::Coverage::Item provides data on a single coverage point.

METHODS

count_inc (inc)

Increment the item's count by the specified value.

hash

Return a reference to a hash of key/value pairs.

key

Return a key suitable for sorting.

ACCESSORS

column

Column number for the item.

comment

Textual description for the item.

count

Return the count for this point.

filename

Filename of the item.

hier

Hierarchy path name for the item.

lineno

Line number for the item.

type

Type of coverage (block, line, fsm, etc.)

DISTRIBUTION

SystemPerl is part of the http://www.veripool.com/ free SystemC software tool suite. The latest version is available from CPAN and from http://www.veripool.com/systemperl.html.

Copyright 2001-2008 by Wilson Snyder. This package is free software; you can redistribute it and/or modify it under the terms of either the GNU Lesser General Public License or the Perl Artistic License.

AUTHORS

Wilson Snyder <wsnyder@wsnyder.org>

SEE ALSO

SystemC::Coverage