/usr/lib/perl5/Verilog/Preproc.pm is in libverilog-perl 3.403-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | # Verilog - Verilog Perl Interface
# See copyright, etc in below POD section.
######################################################################
package Verilog::Preproc;
use Carp;
use Verilog::Getopt;
require DynaLoader;
use base qw(DynaLoader);
use strict;
use vars qw($VERSION);
$VERSION = '3.403';
######################################################################
#### Configuration Section
bootstrap Verilog::Preproc;
#In Preproc.xs:
# sub _new (class, keepcmt, linedir, pedantic, synthesis)
# sub _open (class)
# sub getall (class)
# sub getline (class)
# sub eof (class)
# sub filename (class)
# sub lineno (class)
# sub unreadback (class, text)
######################################################################
#### Accessors
sub new {
my $class = shift; $class = ref $class if ref $class;
my $self = {keep_comments=>1,
keep_whitespace=>1,
line_directives=>1,
ieee_predefined=>1,
pedantic=>0,
synthesis=>0,
options=>Verilog::Getopt->new(), # If the user didn't give one, still work!
#include_open_nonfatal=>0,
@_};
bless $self, $class;
# Sets $self->{_cthis}
$self->{keep_comments} = 2 if ($self->{keep_comments} eq 'sub');
$self->{keep_comments} = 3 if ($self->{keep_comments} eq 'expand'); #TBD
$self->_new($self,
$self->{keep_comments},
$self->{keep_whitespace},
$self->{line_directives},
$self->{pedantic},
$self->{synthesis},
);
if ($self->{synthesis}) {
# Fourth argument 1 for cmdline - no `undefineall effect
$self->define('SYNTHESIS',1,undef,1);
}
if ($self->{ieee_predefined}) {
$self->define('SV_COV_START', 0,undef,1);
$self->define('SV_COV_STOP', 1,undef,1);
$self->define('SV_COV_RESET', 2,undef,1);
$self->define('SV_COV_CHECK', 3,undef,1);
$self->define('SV_COV_MODULE', 10,undef,1);
$self->define('SV_COV_HIER', 11,undef,1);
$self->define('SV_COV_ASSERTION', 20,undef,1);
$self->define('SV_COV_FSM_STATE', 21,undef,1);
$self->define('SV_COV_STATEMENT', 22,undef,1);
$self->define('SV_COV_TOGGLE', 23,undef,1);
$self->define('SV_COV_OVERFLOW', -2,undef,1);
$self->define('SV_COV_ERROR', -1,undef,1);
$self->define('SV_COV_NOCOV', 0,undef,1);
$self->define('SV_COV_OK', 1,undef,1);
$self->define('SV_COV_PARTIAL', 2,undef,1);
}
#use Data::Dumper; print Dumper($self);
return $self;
}
sub DESTROY {
my $self = shift;
$self->_DESTROY;
}
sub open {
my $self = shift;
my %params = (
# filename =>
# open_nonfatal => 0,
);
if ($#_ > 0) { %params=(@_); } else { $params{filename}=shift; }
# We allow either open(name) or open(filename=>name);
# Allow user to put `defined names on the command line instead of filenames,
# then convert them properly.
my $filename = $params{filename};
$filename = $self->remove_defines($filename);
printf ("Perl open $filename\n") if $self->{debug};
$filename = $self->{options}->file_path($filename);
printf ("Perl openfp $filename\n") if $self->{debug};
if (!-r $filename) {
if (!$params{open_nonfatal}) {
$self->error("Cannot open $filename");
}
return undef;
} else {
$self->_open($filename);
}
return $self;
}
sub debug {
my $self = shift;
my $level = shift;
$self->{debug} = $level;
$self->_debug($level);
}
######################################################################
#### Utilities
sub remove_defines {
my $self = shift;
my $sym = shift;
my $val = "x";
while (defined $val) {
last if $sym eq $val;
(my $xsym = $sym) =~ s/^\`//;
$val = $self->{options}->defvalue_nowarn($xsym); #Undef if not found
$sym = $val if defined $val;
}
return $sym;
}
sub fileline {
my $self = shift;
return ($self->filename||"").":".($self->lineno||"");
}
######################################################################
#### Called by the parser
sub error {
my ($self,$text,$token)=@_;
my $fileline = $self->filename.":".$self->lineno;
croak ("%Error: $fileline: $text\n"
."Stopped");
}
sub comment {}
sub def_substitute {
my ($self, $out) = @_;
return $out;
}
sub include {
my ($self,$filename)=@_;
print "INCLUDE $filename\n" if $self->{debug};
$self->open(filename => $filename,
open_nonfatal => $self->{include_open_nonfatal},
);
}
# Note rather than overriding these, a derived Verilog::Getopt class can
# accomplish the same thing.
sub undef {
my $self = shift;
$self->{options}->undef(@_);
}
sub undefineall {
my $self = shift;
$self->{options}->undefineall(@_);
}
sub define {
my $self = shift;
#print "DEFINE @_\n";
$self->{options}->fileline($self->filename.":".$self->lineno);
$self->{options}->define(@_);
}
sub def_params {
# Return define parameters
my $self = shift;
my $val = $self->{options}->defparams(@_);
#printf "DEFEXISTS @_ -> %s\n", $val if $self->{debug};
$val = "" if !defined $val;
return $val;
}
sub def_value {
# Return value
my $self = shift;
#printf "DEFVALUE @_ -> %s\n", $self->{options}->defvalue_nowarn(@_);
return $self->{options}->defvalue(@_);
}
######################################################################
#### Package return
1;
__END__
=pod
=head1 NAME
Verilog::Preproc - Preprocess Verilog files
=head1 SYNOPSIS
use Verilog::Getopt;
my $vp = Verilog::Preproc->new(I<parameters>);
$vp->open(filename=>"verilog_file.v");
my $line = $vp->getline();
=head1 EXAMPLE
# This is a complete verilog pre-parser!
# For a command line version, see vppreproc
use Verilog::Getopt;
use Verilog::Preproc;
my $opt = new Verilog::Getopt;
@ARGV = $opt->parameter(@ARGV);
my $vp = Verilog::Preproc->new(options=>$opt,);
$vp->open(filename=>"verilog_file.v");
while (defined (my $line = $vp->getline())) {
print $line;
}
=head1 DESCRIPTION
Verilog::Preproc reads Verilog files, and preprocesses them according to
the SystemVerilog 2009 (1800-2009) specification. Programs can be easily
converted from reading a IO::File into reading preprocessed output from
Verilog::Preproc.
See the "Which Package" section of L<Verilog-Perl> if you are unsure which
parsing package to use for a new application.
=head1 MEMBER FUNCTIONS
=over 4
=item $self->eof()
Returns true at the end of the file.
=item $self->filename()
Returns the filename of the most recently returned getline(). May not match
the filename passed on the command line, as `line directives are honored.
=item $self->getall()
Return the entire translated text up to the final EOF, similar to calling
join('',$self->getline) but significantly faster. With optional argument,
returns approximately that number of characters. Returns undef at EOF.
=item $self->getline()
Return the next line of text. Returns undef at EOF. (Just like
IO::File->getline().)
=item $self->lineno()
Returns the line number of the last getline(). Note that the line number
may change several times between getline(), for example when traversing
multiple include files.
=item $self->new(I<parameters>)
Creates a new preprocessor. See the PARAMETERS section for the options
that may be passed to new.
=item $self->open(filename=>I<filename>)
Opens the specified file. If filename ends in .gz, decompress while
reading. If called before a file is completely parsed, the new file will
be parsed completely before returning to the previously open file. (As if
it was an include file.)
Open may also be called without named parameters, in which case the only
argument is the filename.
=item $self->unreadback(I<text>)
Insert text into the input stream at the given point. The text will not
be parsed, just returned to the application. This lets comment() callbacks
insert special code into the output stream.
=back
=head1 PARAMETERS
The following named parameters may be passed to the new constructor.
=over 4
=item ieee_predefines=>0
With ieee_predefines false, disable defining SV_COV_START and other IEEE
mandated definitions.
=item include_open_nonfatal=>1
With include_open_nonfatal set to one, ignore any include files that do
not exist.
=item keep_comments=>0
With keep_comments set to zero, strip all comments. When set to one (the
default), insert comments in output streams. When set to 'sub', call the
comment() function so that meta-comments can be processed outside of the
output stream. Note that some programs use meta-comments to embed useful
information (synthesis and lint), so strip with caution if feeding to tools
other than your own. Defaults to 1.
=item keep_whitespace=>0
With keep_whitespace set to zero, compress all whitespace to a single space
or newline. When set to one (the default), retain whitespace. Defaults to
1.
=item line_directives=>0
With line_directives set to zero, suppress "`line" comments which indicate
filename and line number changes. Use the lineno() and filename() methods
instead to retrieve this information. Defaults true.
=item options=>Verilog::Getopt object
Specifies the object to be used for resolving filenames and defines. Other
classes may be used, as long as their interface matches that of Getopt.
=item pedantic=>1
With pedantic set, rigorously obey the Verilog pedantic. This used to
disable the `__FILE__ and `__LINE__ features but no longer does as they
were added to the 1800-2009 standard. It remains to disable `error and may
disable other future features that are not specified in the language
standard. Defaults false.
=item synthesis=>1
With synthesis set, define SYNTHESIS, and ignore text bewteen "ambit",
"pragma", "synopsys" or "synthesis" translate_off and translate_on meta
comments. Note using metacomments is discouraged as they have led to
silicon bugs (versus ifdef SYNTHESIS); see
L<http://www.veripool.org/papers/TenIPEdits_SNUGBos07_paper.pdf>.
=back
=head1 CALLBACKS
Default callbacks are implemented that are suitable for most applications.
Derived classes may override these callbacks as needed.
=over 4
=item $self->comment(I<comment>)
Called with each comment, when keep_comments=>'sub' is used. Defaults to
do nothing.
=item $self->undef(I<defname>)
Called with each `undef. Defaults to use options object.
=item $self->undefineall()
Called with each `undefineall. Defaults to use options object.
=item $self->define(I<defname>, I<value>, I<params>)
Called with each `define. Defaults to use options object.
=item $self->def_exists(I<defname>)
Called to determine if the define exists. Return true if the define
exists, or argument list with leading parenthesis if the define has
arguments. Defaults to use options object.
=item $self->def_substitute(I<string>)
Called to determine what string to insert for a define substitution.
Called with the value of the define after parameters have been expanded
computed per the SystemVerilog spec. Generally this function would just
return the same string as it is passed, but this can be overridden to allow
customized preprocessing.
=item $self->def_value(I<defname>)
Called to return value to substitute for specified define. Defaults to use
options object.
=item $self->error(I<message>)
Called on errors, with the error message as an argument. Defaults
to die.
=item $self->include(I<filename>)
Specifies a include file has been found. Defaults to call $self->open
after resolving the filename with the options parameter.
=back
=head1 COMPLIANCE
The preprocessor supports the constructs defined in the SystemVerilog 2012
standard (IEEE 1800-2012), which is a superset of Verilog 1995 (IEEE
1364-1995), Verilog 2001 (IEEE 1364-2001), Verilog 2005 (IEEE 1364-2005)
and SystemVerilog 2005 (IEEE 1800-2005), and SystemVerilog 2009 (IEEE
1800-2009).
Verilog::Preproc adds the `error macro (unless the pedantic parameter is
set.):
=over 4
=item `__FILE__
The __FILE__ define expands to the current filename as a string, like C++'s
__FILE__. This was incorporated into to the 1800-2009 standard (but
supported by Verilog-Perl since 2004!)
=item `__LINE__
The __LINE__ define expands to the current filename as a string, like C++'s
__LINE__. This was incorporated into to the 1800-2009 standard (but
supported by Verilog-Perl since 2004!)
=item `error I<"string">
`error will be reported whenever it is encountered. (Like C++ #error.)
These are useful for error macros, similar to assert() in C++.
=back
=head1 DISTRIBUTION
Verilog-Perl is part of the L<http://www.veripool.org/> free Verilog EDA
software tool suite. The latest version is available from CPAN and from
L<http://www.veripool.org/verilog-perl>.
Copyright 2000-2014 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 Version 3 or the Perl Artistic License Version 2.0.
=head1 AUTHORS
Wilson Snyder <wsnyder@wsnyder.org>
=head1 SEE ALSO
L<Verilog-Perl>,
L<Verilog::Language>, L<Verilog::Getopt>
L<IO::File>
This package is layered on a C++ interface which may be found in the kit.
=cut
|