2000-04-21 08:41:02 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2000 Stephen Williams (steve@icarus.com)
|
|
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
|
|
|
|
#if !defined(WINNT)
|
2000-04-29 03:20:14 +02:00
|
|
|
#ident "$Id: iverilog.c,v 1.7 2000/04/29 01:20:14 steve Exp $"
|
2000-04-21 08:41:02 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#ifndef IVL_ROOT
|
|
|
|
|
# define IVL_ROOT "."
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
const char*base = IVL_ROOT;
|
|
|
|
|
const char*opath = "a.out";
|
|
|
|
|
const char*targ = "vvm";
|
2000-04-23 23:14:32 +02:00
|
|
|
const char*start = 0;
|
|
|
|
|
|
2000-04-29 03:20:14 +02:00
|
|
|
char*f_list = 0;
|
|
|
|
|
|
2000-04-21 08:41:02 +02:00
|
|
|
int verbose_flag = 0;
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
char tmp[4096];
|
2000-04-21 08:41:02 +02:00
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
static int t_null(char*cmd, unsigned ncmd)
|
2000-04-22 00:51:38 +02:00
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " | %s/ivl ", base);
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
2000-04-26 23:11:41 +02:00
|
|
|
ncmd += rc;
|
2000-04-26 05:33:32 +02:00
|
|
|
|
2000-04-23 23:14:32 +02:00
|
|
|
if (start) {
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " -s%s", start);
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
2000-04-23 23:14:32 +02:00
|
|
|
}
|
2000-04-26 05:33:32 +02:00
|
|
|
|
|
|
|
|
if (verbose_flag) {
|
|
|
|
|
sprintf(tmp, " -v");
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sprintf(tmp, " -- -");
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
2000-04-22 00:51:38 +02:00
|
|
|
|
|
|
|
|
if (verbose_flag)
|
2000-04-26 05:33:32 +02:00
|
|
|
printf("translate: %s\n", cmd);
|
2000-04-22 00:51:38 +02:00
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
rc = system(cmd);
|
2000-04-22 00:51:38 +02:00
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-21 08:41:02 +02:00
|
|
|
/*
|
|
|
|
|
* This function handles the vvm target. After preprocessing, run the
|
|
|
|
|
* ivl translator to get C++, then run g++ to make an executable
|
|
|
|
|
* program out of that.
|
|
|
|
|
*/
|
2000-04-26 05:33:32 +02:00
|
|
|
static int t_vvm(char*cmd, unsigned ncmd)
|
2000-04-21 08:41:02 +02:00
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " | %s/ivl -o %s.cc -tvvm -Fcprop -Fnodangle -fVPI_MODULE_PATH=%s", base, opath, base);
|
|
|
|
|
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
|
|
|
|
|
2000-04-29 03:20:14 +02:00
|
|
|
if (f_list) {
|
|
|
|
|
rc = strlen(f_list);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-23 23:14:32 +02:00
|
|
|
if (start) {
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " -s%s", start);
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
2000-04-23 23:14:32 +02:00
|
|
|
}
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " -- -");
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
|
|
|
|
|
2000-04-21 08:41:02 +02:00
|
|
|
if (verbose_flag)
|
2000-04-26 05:33:32 +02:00
|
|
|
printf("translate: %s\n", cmd);
|
2000-04-21 08:41:02 +02:00
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
rc = system(cmd);
|
2000-04-21 08:41:02 +02:00
|
|
|
if (rc != 0) {
|
|
|
|
|
fprintf(stderr, "errors translating Verilog program.\n");
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, "g++ -O -rdynamic -fno-exceptions -o %s -I%s "
|
2000-04-21 08:41:02 +02:00
|
|
|
"-L%s %s.cc -lvvm -ldl", opath, base, base, opath);
|
|
|
|
|
|
|
|
|
|
if (verbose_flag)
|
2000-04-26 05:33:32 +02:00
|
|
|
printf("compile: %s\n", tmp);
|
2000-04-21 08:41:02 +02:00
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
rc = system(tmp);
|
2000-04-21 08:41:02 +02:00
|
|
|
if (rc != 0) {
|
|
|
|
|
fprintf(stderr, "errors compiling translated program.\n");
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, "%s.cc", opath);
|
|
|
|
|
unlink(tmp);
|
2000-04-21 08:41:02 +02:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
static int t_xnf(char*cmd, unsigned ncmd)
|
2000-04-21 08:41:02 +02:00
|
|
|
{
|
|
|
|
|
int rc;
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " | %s/ivl -o %s -txnf -Fcprop -Fsynth -Fnodangle -Fxnfio", base, opath);
|
|
|
|
|
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
|
|
|
|
|
2000-04-29 03:20:14 +02:00
|
|
|
if (f_list) {
|
|
|
|
|
rc = strlen(f_list);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-23 23:14:32 +02:00
|
|
|
if (start) {
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " -s%s", start);
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
2000-04-23 23:14:32 +02:00
|
|
|
}
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " -- -");
|
|
|
|
|
rc = strlen(tmp);
|
|
|
|
|
cmd = realloc(cmd, ncmd+rc+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += rc;
|
|
|
|
|
|
2000-04-21 08:41:02 +02:00
|
|
|
if (verbose_flag)
|
2000-04-26 05:33:32 +02:00
|
|
|
printf("translate: %s\n", cmd);
|
|
|
|
|
|
|
|
|
|
rc = system(cmd);
|
2000-04-21 08:41:02 +02:00
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
|
{
|
2000-04-26 05:33:32 +02:00
|
|
|
char*cmd;
|
|
|
|
|
unsigned ncmd;
|
2000-04-21 08:41:02 +02:00
|
|
|
int e_flag = 0;
|
|
|
|
|
int opt, idx;
|
|
|
|
|
char*cp;
|
|
|
|
|
|
2000-04-29 03:20:14 +02:00
|
|
|
while ((opt = getopt(argc, argv, "B:Ef:o:s:t:v")) != EOF) {
|
2000-04-21 08:41:02 +02:00
|
|
|
|
|
|
|
|
switch (opt) {
|
|
|
|
|
case 'B':
|
|
|
|
|
base = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'E':
|
|
|
|
|
e_flag = 1;
|
|
|
|
|
break;
|
2000-04-29 03:20:14 +02:00
|
|
|
case 'f':
|
|
|
|
|
if (f_list == 0) {
|
|
|
|
|
f_list = malloc(strlen("-f")+strlen(optarg)+1);
|
|
|
|
|
strcpy(f_list, "-f");
|
|
|
|
|
strcat(f_list, optarg);
|
|
|
|
|
} else {
|
|
|
|
|
f_list = realloc(f_list, strlen(f_list) +
|
|
|
|
|
strlen(" -f") +
|
|
|
|
|
strlen(optarg) + 1);
|
|
|
|
|
strcat(f_list, " -f");
|
|
|
|
|
strcat(f_list, optarg);
|
|
|
|
|
}
|
|
|
|
|
break;
|
2000-04-21 08:41:02 +02:00
|
|
|
case 'o':
|
|
|
|
|
opath = optarg;
|
|
|
|
|
break;
|
2000-04-23 23:14:32 +02:00
|
|
|
case 's':
|
|
|
|
|
start = optarg;
|
|
|
|
|
break;
|
2000-04-21 08:41:02 +02:00
|
|
|
case 't':
|
|
|
|
|
targ = optarg;
|
|
|
|
|
break;
|
|
|
|
|
case 'v':
|
|
|
|
|
verbose_flag = 1;
|
|
|
|
|
break;
|
|
|
|
|
case '?':
|
|
|
|
|
default:
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-23 23:14:32 +02:00
|
|
|
if (optind == argc) {
|
|
|
|
|
fprintf(stderr, "%s: No input files.\n", argv[0]);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
/* Start building the preprocess command line. */
|
|
|
|
|
|
2000-04-26 23:11:41 +02:00
|
|
|
sprintf(tmp, "%s/ivlpp", base);
|
2000-04-26 05:33:32 +02:00
|
|
|
if (verbose_flag)
|
|
|
|
|
strcat(tmp, " -v");
|
|
|
|
|
|
|
|
|
|
ncmd = strlen(tmp);
|
|
|
|
|
cmd = malloc(ncmd + 1);
|
2000-04-26 23:11:41 +02:00
|
|
|
strcpy(cmd, tmp);
|
2000-04-26 05:33:32 +02:00
|
|
|
|
|
|
|
|
/* Add all the verilog source files to the preprocess command line. */
|
|
|
|
|
|
2000-04-21 08:41:02 +02:00
|
|
|
for (idx = optind ; idx < argc ; idx += 1) {
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " %s", argv[idx]);
|
|
|
|
|
cmd = realloc(cmd, ncmd+strlen(tmp)+1);
|
2000-04-26 23:11:41 +02:00
|
|
|
strcpy(cmd+ncmd, tmp);
|
2000-04-26 05:33:32 +02:00
|
|
|
ncmd += strlen(tmp);
|
2000-04-21 08:41:02 +02:00
|
|
|
}
|
|
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
|
2000-04-21 08:41:02 +02:00
|
|
|
/* If the -E flag was given on the command line, then all we
|
|
|
|
|
do is run the preprocessor and put the output where the
|
|
|
|
|
user wants it. */
|
|
|
|
|
if (e_flag) {
|
|
|
|
|
if (strcmp(opath,"-") != 0) {
|
2000-04-26 05:33:32 +02:00
|
|
|
sprintf(tmp, " > %s", opath);
|
|
|
|
|
cmd = realloc(cmd, ncmd+strlen(tmp)+1);
|
|
|
|
|
strcpy(cmd+ncmd, tmp);
|
|
|
|
|
ncmd += strlen(tmp);
|
2000-04-21 08:41:02 +02:00
|
|
|
}
|
2000-04-26 05:33:32 +02:00
|
|
|
|
2000-04-21 08:41:02 +02:00
|
|
|
if (verbose_flag)
|
2000-04-26 05:33:32 +02:00
|
|
|
printf("preprocess: %s\n", cmd);
|
2000-04-21 08:41:02 +02:00
|
|
|
|
2000-04-26 05:33:32 +02:00
|
|
|
return system(cmd);
|
2000-04-21 08:41:02 +02:00
|
|
|
}
|
|
|
|
|
|
2000-04-22 00:51:38 +02:00
|
|
|
if (strcmp(targ,"null") == 0)
|
2000-04-26 05:33:32 +02:00
|
|
|
return t_null(cmd, ncmd);
|
2000-04-22 00:51:38 +02:00
|
|
|
else if (strcmp(targ,"vvm") == 0)
|
2000-04-26 05:33:32 +02:00
|
|
|
return t_vvm(cmd, ncmd);
|
2000-04-21 08:41:02 +02:00
|
|
|
else if (strcmp(targ,"xnf") == 0)
|
2000-04-26 05:33:32 +02:00
|
|
|
return t_xnf(cmd, ncmd);
|
2000-04-21 08:41:02 +02:00
|
|
|
else {
|
|
|
|
|
fprintf(stderr, "Unknown target: %s\n", targ);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: iverilog.c,v $
|
2000-04-29 03:20:14 +02:00
|
|
|
* Revision 1.7 2000/04/29 01:20:14 steve
|
|
|
|
|
* The -f flag is now in place.
|
|
|
|
|
*
|
2000-04-26 23:11:41 +02:00
|
|
|
* Revision 1.6 2000/04/26 21:11:41 steve
|
|
|
|
|
* Mussed up command string mashing.
|
|
|
|
|
*
|
2000-04-26 05:33:32 +02:00
|
|
|
* Revision 1.5 2000/04/26 03:33:32 steve
|
|
|
|
|
* Do not set width too small to hold significant bits.
|
|
|
|
|
*
|
2000-04-23 23:14:32 +02:00
|
|
|
* Revision 1.4 2000/04/23 21:14:32 steve
|
|
|
|
|
* The -s flag.
|
|
|
|
|
*
|
2000-04-22 00:54:47 +02:00
|
|
|
* Revision 1.3 2000/04/21 22:54:47 steve
|
|
|
|
|
* module path in vvm target.
|
|
|
|
|
*
|
2000-04-22 00:51:38 +02:00
|
|
|
* Revision 1.2 2000/04/21 22:51:38 steve
|
|
|
|
|
* Support the -tnull target type.
|
|
|
|
|
*
|
2000-04-21 08:41:02 +02:00
|
|
|
* Revision 1.1 2000/04/21 06:41:03 steve
|
|
|
|
|
* Add the iverilog driver program.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|