Convert repository to git from svn.

- Change .cvsignore to .gitignore
- Remove Id metacomments
- Cleanup whitespace at end of lines
This commit is contained in:
Wilson Snyder 2008-06-09 21:25:10 -04:00
parent 056f72f27f
commit 52912c6329
658 changed files with 636 additions and 1187 deletions

View File

@ -7,7 +7,7 @@
*.1 *.1
*.tmp *.tmp
*.tex *.tex
Makefile /Makefile
README README
config.cache config.cache
config.status config.status

View File

@ -1244,8 +1244,6 @@ of input ports exists for tracing.
**** First code written. **** First code written.
---------------------------------------------------------------------- ----------------------------------------------------------------------
$Id$
----------------------------------------------------------------------
This uses outline mode in Emacs. See C-h m [M-x describe-mode]. This uses outline mode in Emacs. See C-h m [M-x describe-mode].

View File

@ -1,4 +1,3 @@
# $Id$
#***************************************************************************** #*****************************************************************************
# DESCRIPTION: Verilator top level: Makefile pre-configure version # DESCRIPTION: Verilator top level: Makefile pre-configure version
# #
@ -101,7 +100,7 @@ DISTDEP = info Makefile
# Files to distribute. # Files to distribute.
DISTBIN = $(wildcard bin/verilator-*) DISTBIN = $(wildcard bin/verilator-*)
DISTFILES_INC = $(INFOS) .cvsignore COPYING *.in *.ac \ DISTFILES_INC = $(INFOS) .gitignore COPYING *.in *.ac \
Changes README TODO \ Changes README TODO \
MANIFEST.SKIP \ MANIFEST.SKIP \
bin/* \ bin/* \

1
TODO
View File

@ -1,4 +1,3 @@
// $Id$
// DESCRIPTION: Verilator: List of To Do issues. // DESCRIPTION: Verilator: List of To Do issues.
// //
// Copyright 2004-2008 by Wilson Snyder. This program is free software; you can // Copyright 2004-2008 by Wilson Snyder. This program is free software; you can

View File

@ -1,7 +1,6 @@
: # -*-Mode: perl;-*- use perl, wherever it is : # -*-Mode: perl;-*- use perl, wherever it is
eval 'exec perl -wS $0 ${1+"$@"}' eval 'exec perl -wS $0 ${1+"$@"}'
if 0; if 0;
# $Id$
###################################################################### ######################################################################
# #
# Copyright 2003-2008 by Wilson Snyder. This program is free software; you can # Copyright 2003-2008 by Wilson Snyder. This program is free software; you can
@ -84,7 +83,6 @@ run ($vcmd);
#---------------------------------------------------------------------- #----------------------------------------------------------------------
sub usage { sub usage {
print '$Revision$$Date$ ', "\n";
pod2usage(-exitstatus=>2, -verbose=>2); pod2usage(-exitstatus=>2, -verbose=>2);
} }

View File

@ -1,7 +1,6 @@
: # -*-Mode: perl;-*- use perl, wherever it is : # -*-Mode: perl;-*- use perl, wherever it is
eval 'exec perl -wS $0 ${1+"$@"}' eval 'exec perl -wS $0 ${1+"$@"}'
if 0; if 0;
# $Id$
###################################################################### ######################################################################
# #
# Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This # Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This
@ -115,7 +114,6 @@ sub filter {
#---------------------------------------------------------------------- #----------------------------------------------------------------------
sub usage { sub usage {
print '$Id$ ', "\n";
pod2usage(-verbose=>2, -exitval => 2); pod2usage(-verbose=>2, -exitval => 2);
exit (1); exit (1);
} }

View File

@ -1,7 +1,6 @@
: # -*-Mode: perl;-*- use perl, wherever it is : # -*-Mode: perl;-*- use perl, wherever it is
eval 'exec perl -wS $0 ${1+"$@"}' eval 'exec perl -wS $0 ${1+"$@"}'
if 0; if 0;
# $Id$
# DESCRIPTION: Print include statements for each ARGV # DESCRIPTION: Print include statements for each ARGV
# #
# Copyright 2003-2008 by Wilson Snyder. This program is free software; you can # Copyright 2003-2008 by Wilson Snyder. This program is free software; you can

View File

@ -1,7 +1,6 @@
: # -*-Mode: perl;-*- use perl, wherever it is : # -*-Mode: perl;-*- use perl, wherever it is
eval 'exec perl -wS $0 ${1+"$@"}' eval 'exec perl -wS $0 ${1+"$@"}'
if 0; if 0;
# $Id$
###################################################################### ######################################################################
# #
# Copyright 2007-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This # Copyright 2007-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This
@ -50,7 +49,6 @@ profcfunc($Opt_File);
#---------------------------------------------------------------------- #----------------------------------------------------------------------
sub usage { sub usage {
print '$Id$ ', "\n";
pod2usage(-verbose=>2, -exitval => 2); pod2usage(-verbose=>2, -exitval => 2);
exit (1); exit (1);
} }

View File

@ -1,10 +1,8 @@
dnl $Id$
dnl DESCRIPTION: Process this file with autoconf to produce a configure script. dnl DESCRIPTION: Process this file with autoconf to produce a configure script.
dnl Copyright 2003-2008 by Wilson Snyder. This program is free software; you can dnl Copyright 2003-2008 by Wilson Snyder. This program is free software; you can
dnl redistribute it and/or modify it under the terms of either the GNU dnl redistribute it and/or modify it under the terms of either the GNU
dnl General Public License or the Perl Artistic License. dnl General Public License or the Perl Artistic License.
AC_REVISION($Revision$)dnl
AC_INIT(src/Verilator.cpp) AC_INIT(src/Verilator.cpp)
AC_CONFIG_HEADER(src/config_build.h) AC_CONFIG_HEADER(src/config_build.h)

View File

@ -1,4 +1,4 @@
// $Id$ -*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// //
// Copyright 2003-2008 by Wilson Snyder. This program is free software; you can // Copyright 2003-2008 by Wilson Snyder. This program is free software; you can

View File

@ -1,4 +1,4 @@
// $Id$ -*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// //
// Copyright 2003-2008 by Wilson Snyder. This program is free software; you can // Copyright 2003-2008 by Wilson Snyder. This program is free software; you can

View File

@ -1,4 +1,4 @@
# $Id$ -*- Makefile -*- # -*- Makefile -*-
###################################################################### ######################################################################
# DESCRIPTION: Makefile commands for all verilated target files # DESCRIPTION: Makefile commands for all verilated target files
# #

View File

@ -1,4 +1,4 @@
// $Id$ -*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// //
// Code available from: http://www.veripool.org/verilator // Code available from: http://www.veripool.org/verilator

View File

@ -1,4 +1,4 @@
// $Id$ -*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// //
// Copyright 2003-2008 by Wilson Snyder. This program is free software; you can // Copyright 2003-2008 by Wilson Snyder. This program is free software; you can

View File

@ -4,8 +4,6 @@
# Created: 1993-05-16 # Created: 1993-05-16
# Public domain # Public domain
# $Id:$
errstatus=0 errstatus=0
for file for file

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/perl -w
#$Id$
###################################################################### ######################################################################
# #
# Copyright 2007-2008 by Wilson Snyder. # Copyright 2007-2008 by Wilson Snyder.

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/perl -w
# $Id$
###################################################################### ######################################################################
# #
# Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This # Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This
@ -50,7 +49,6 @@ cwrite ("graph_export.cpp");
#---------------------------------------------------------------------- #----------------------------------------------------------------------
sub usage { sub usage {
print '$Id$ ', "\n";
pod2usage(-verbose=>2, -exitval => 2); pod2usage(-verbose=>2, -exitval => 2);
exit (1); exit (1);
} }

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/perl -w
# $Id$
###################################################################### ######################################################################
# #
# Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This # Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This
@ -55,7 +54,6 @@ dotwrite();
#---------------------------------------------------------------------- #----------------------------------------------------------------------
sub usage { sub usage {
print '$Id$ ', "\n";
pod2usage(-verbose=>2, -exitval => 2); pod2usage(-verbose=>2, -exitval => 2);
exit (1); exit (1);
} }

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/perl -w
# $Id$
###################################################################### ######################################################################
# #
# Copyright 2007-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This # Copyright 2007-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This

4
nodist/leakchecking.txt Normal file
View File

@ -0,0 +1,4 @@
export GLIBCPP_FORCE_NEW=1
compile with -DVL_LEAK_CHECKS
valgrind --tool=memcheck --leak-check=yes /home/wsnyder/src/verilator/v4/verilator/verilator_bin_dbg -MMD --bin /home/wsnyder/src/verilator/v4/verilator/verilator_bin_dbg --cc -f /home/wsnyder/src/verilator/v4/verilator/test_c/../test_v/input.vc top.v --no-skip-identical 2>&1 | tee ~/d/aa
valgrind --tool=memcheck --leak-check=yes /home/wsnyder/src/verilator/v4/verilator/verilator_bin_dbg -MMD --bin /home/wsnyder/src/verilator/v4/verilator/verilator_bin_dbg --cc /home/wsnyder/src/verilator/v4/verilator/test_regress/t/t_case_huge.v --no-skip-identical -I/home/wsnyder/src/verilator/v4/verilator/test_regress/t 2>&1 | tee ~/d/aa

View File

@ -1,5 +1,4 @@
#!/usr/bin/perl -w #!/usr/bin/perl -w
# $Id$
###################################################################### ######################################################################
# #
# Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This # Copyright 2005-2008 by Wilson Snyder <wsnyder@wsnyder.org>. This
@ -52,7 +51,6 @@ print '(query-replace-regexp "(\\([0-9a-z_]+\\))" "\\1" nil nil nil)',"\n";
#---------------------------------------------------------------------- #----------------------------------------------------------------------
sub usage { sub usage {
print '$Id$ ', "\n";
pod2usage(-verbose=>2, -exitval => 2); pod2usage(-verbose=>2, -exitval => 2);
exit (1); exit (1);
} }

View File

@ -1,6 +1,5 @@
\input texinfo @c -*-texinfo-*- \input texinfo @c -*-texinfo-*-
@c %**start of header @c %**start of header
$c $Id$
@setfilename readme.info @setfilename readme.info
@settitle Verilator Installation @settitle Verilator Installation
@c %**end of header @c %**end of header

View File

View File

@ -1,4 +1,4 @@
# $Id$ */ # -*- Makefile -*-
#***************************************************************************** #*****************************************************************************
# #
# DESCRIPTION: Verilator: Makefile for verilog source # DESCRIPTION: Verilator: Makefile for verilog source
@ -74,7 +74,7 @@ prefiles::
ifeq ($(VERILATOR_AUTHOR_SITE),1) # Local... Else don't burden users ifeq ($(VERILATOR_AUTHOR_SITE),1) # Local... Else don't burden users
prefiles:: config_rev.h prefiles:: config_rev.h
# This output goes into srcdir, as we need to distribute it as part of the kit. # This output goes into srcdir, as we need to distribute it as part of the kit.
config_rev.h: config_rev.pl .svn/entries config_rev.h: config_rev.pl ../.git/index
$(PERL) config_rev.pl . >$@ $(PERL) config_rev.pl . >$@
endif endif

View File

@ -1,4 +1,4 @@
# $Id$ -*- Makefile -*- # -*- Makefile -*-
#***************************************************************************** #*****************************************************************************
# #
# DESCRIPTION: Verilator: Makefile for verilog source # DESCRIPTION: Verilator: Makefile for verilog source

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Break always into sensitivity active domains // DESCRIPTION: Verilator: Break always into sensitivity active domains
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Break always into sensitivity block domains // DESCRIPTION: Verilator: Break always into sensitivity block domains
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Break always into sensitivity active domains // DESCRIPTION: Verilator: Break always into sensitivity active domains
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Break always into sensitivity block domains // DESCRIPTION: Verilator: Break always into sensitivity block domains
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Collect and print statistics // DESCRIPTION: Verilator: Collect and print statistics
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Assertion expansion // DESCRIPTION: Verilator: Assertion expansion
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Collect and print statistics // DESCRIPTION: Verilator: Collect and print statistics
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Assertion pre-expansion // DESCRIPTION: Verilator: Assertion pre-expansion
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Ast node structures // DESCRIPTION: Verilator: Ast node structures
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Ast node structure // DESCRIPTION: Verilator: Ast node structure
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Ast node structures // DESCRIPTION: Verilator: Ast node structures
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Ast node structure // DESCRIPTION: Verilator: Ast node structure
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Removal of named begin blocks // DESCRIPTION: Verilator: Removal of named begin blocks
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Removal of named begin blocks // DESCRIPTION: Verilator: Removal of named begin blocks
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Branch prediction // DESCRIPTION: Verilator: Branch prediction
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Branch prediction // DESCRIPTION: Verilator: Branch prediction
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Find broken links in tree // DESCRIPTION: Verilator: Find broken links in tree
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Find broken links in tree // DESCRIPTION: Verilator: Find broken links in tree
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Break case statements up and add Unknown assigns // DESCRIPTION: Verilator: Break case statements up and add Unknown assigns
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Break case statements up and add Unknown assigns // DESCRIPTION: Verilator: Break case statements up and add Unknown assigns
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Add C++ casts across expression size changes // DESCRIPTION: Verilator: Add C++ casts across expression size changes
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Add C++ casts across expression size changes // DESCRIPTION: Verilator: Add C++ casts across expression size changes
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Add temporaries, such as for changed nodes // DESCRIPTION: Verilator: Add temporaries, such as for changed nodes
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Pre C-Emit stage changes // DESCRIPTION: Verilator: Pre C-Emit stage changes
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Add temporaries, such as for clean nodes // DESCRIPTION: Verilator: Add temporaries, such as for clean nodes
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Pre C-Emit stage changes // DESCRIPTION: Verilator: Pre C-Emit stage changes
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Clocking POS/NEGEDGE insertion // DESCRIPTION: Verilator: Clocking POS/NEGEDGE insertion
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Clocking POS/NEGEDGE insertion // DESCRIPTION: Verilator: Clocking POS/NEGEDGE insertion
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Combine common code into functions // DESCRIPTION: Verilator: Combine common code into functions
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Combine common code into functions // DESCRIPTION: Verilator: Combine common code into functions
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Constant folding // DESCRIPTION: Verilator: Constant folding
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Propagate constants across AST // DESCRIPTION: Verilator: Propagate constants across AST
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Netlist (top level) functions // DESCRIPTION: Verilator: Netlist (top level) functions
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Coverage modules/signals together // DESCRIPTION: Verilator: Coverage modules/signals together
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Dead code elimination // DESCRIPTION: Verilator: Dead code elimination
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Dead branch elimination // DESCRIPTION: Verilator: Dead branch elimination
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Add temporaries, such as for delayed nodes // DESCRIPTION: Verilator: Add temporaries, such as for delayed nodes
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Pre C-Emit stage changes // DESCRIPTION: Verilator: Pre C-Emit stage changes
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Prevent very deep expressions // DESCRIPTION: Verilator: Prevent very deep expressions
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Prevent very deep expressions // DESCRIPTION: Verilator: Prevent very deep expressions
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Prevent very deep expressions // DESCRIPTION: Verilator: Prevent very deep expressions
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Prevent very deep expressions // DESCRIPTION: Verilator: Prevent very deep expressions
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Rename scope references to module-local references // DESCRIPTION: Verilator: Rename scope references to module-local references
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Rename scope references to module-local references // DESCRIPTION: Verilator: Rename scope references to module-local references
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit C++ for tree // DESCRIPTION: Verilator: Emit C++ for tree
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit C++ code for module tree // DESCRIPTION: Verilator: Emit C++ code for module tree
// //

View File

@ -1,4 +1,4 @@
// $Id$ -*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit C++ for tree // DESCRIPTION: Verilator: Emit C++ for tree
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit C++ for tree // DESCRIPTION: Verilator: Emit C++ for tree
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit C++ for tree // DESCRIPTION: Verilator: Emit C++ for tree
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit Makefile // DESCRIPTION: Verilator: Emit Makefile
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit Makefile // DESCRIPTION: Verilator: Emit Makefile
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit Verilog from tree // DESCRIPTION: Verilator: Emit Verilog from tree
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- //-*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Emit Verilog code for module tree // DESCRIPTION: Verilator: Emit Verilog code for module tree
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Error handling // DESCRIPTION: Verilator: Error handling
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Error handling // DESCRIPTION: Verilator: Error handling
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Add temporaries, such as for expand nodes // DESCRIPTION: Verilator: Add temporaries, such as for expand nodes
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Expansion of wide operator macros to C operators // DESCRIPTION: Verilator: Expansion of wide operator macros to C operators
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: File stream wrapper that understands indentation // DESCRIPTION: Verilator: File stream wrapper that understands indentation
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: File stream wrapper that understands indentation // DESCRIPTION: Verilator: File stream wrapper that understands indentation
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Gate optimizations, such as wire elimination // DESCRIPTION: Verilator: Gate optimizations, such as wire elimination
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Break always into sensitivity block domains // DESCRIPTION: Verilator: Break always into sensitivity block domains
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Generated Clock repairs // DESCRIPTION: Verilator: Generated Clock repairs
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- //-*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Generated Clock Repairs // DESCRIPTION: Verilator: Generated Clock Repairs
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Common headers // DESCRIPTION: Verilator: Common headers
// //

View File

@ -1,4 +1,4 @@
// $Id$ // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph optimizations // DESCRIPTION: Verilator: Graph optimizations
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- //-*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph optimizations // DESCRIPTION: Verilator: Graph optimizations
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph acyclic algorithm // DESCRIPTION: Verilator: Graph acyclic algorithm
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph optimizations // DESCRIPTION: Verilator: Graph optimizations
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph algorithm base class // DESCRIPTION: Verilator: Graph algorithm base class
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph optimizations // DESCRIPTION: Verilator: Graph optimizations
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph automata base class // DESCRIPTION: Verilator: Graph automata base class
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Graph tests // DESCRIPTION: Verilator: Graph tests
// //

View File

@ -1,4 +1,3 @@
// $Id$
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Hashed common code into functions // DESCRIPTION: Verilator: Hashed common code into functions
// //

View File

@ -1,4 +1,4 @@
// $Id$ //-*- C++ -*- // -*- C++ -*-
//************************************************************************* //*************************************************************************
// DESCRIPTION: Verilator: Hash AST trees to find duplicates // DESCRIPTION: Verilator: Hash AST trees to find duplicates
// //

Some files were not shown because too many files have changed in this diff Show More