Emit Verilog stubs for entities

The verilog includes the module declaration with correct ports
in the correct order. Get the port directions correct.
This commit is contained in:
Stephen Williams 2011-01-03 09:38:08 +02:00
parent 02820c9e34
commit 5a6d07ff9f
5 changed files with 101 additions and 1 deletions

View File

@ -51,7 +51,8 @@ CXXFLAGS = @WARNING_FLAGS@ @WARNING_FLAGS_CXX@ @CXXFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@ @EXTRALIBS@
O = main.o compiler.o entity.o lexor.o lexor_keyword.o parse.o StringHeap.o
O = main.o compiler.o entity.o entity_elaborate.o \
lexor.o lexor_keyword.o parse.o StringHeap.o
all: dep vhdlpp@EXEEXT@

View File

@ -23,6 +23,9 @@
const int GN_KEYWORD_2008 = 0x0001;
// TRUE if processing is supposed to dump progress to stderr.
extern bool verbose_flag;
extern StringHeapLex lex_strings;
#endif

View File

@ -33,6 +33,9 @@ class InterfacePort {
class Entity {
public:
int elaborate();
public:
perm_string name;
std::vector<InterfacePort*> ports;
@ -45,6 +48,12 @@ class Entity {
*/
extern std::map<perm_string,Entity*> design_entities;
/*
* Elaborate the collected entities, and return the number of
* elaboration errors.
*/
extern int elaborate_entities(void);
/*
* Use this function to dump a description of the design entities to a
* file. This is for debug, not for any useful purpose.

View File

@ -0,0 +1,80 @@
/*
* Copyright (c) 2011 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
*/
# include "entity.h"
# include "compiler.h"
# include <iostream>
# include <fstream>
# include <iomanip>
using namespace std;
int elaborate_entities(void)
{
int errors = 0;
for (map<perm_string,Entity*>::iterator cur = design_entities.begin()
; cur != design_entities.end() ; ++cur) {
errors += cur->second->elaborate();
}
return errors;
}
int Entity::elaborate()
{
int errors = 0;
if (verbose_flag)
cerr << "Elaborate entity " << name << "..." << endl;
cout << "module " << name;
// If there are ports, emit them.
if (ports.size() > 0) {
cout << "(";
const char*sep = 0;
for (vector<InterfacePort*>::iterator cur = ports.begin()
; cur != ports.end() ; ++cur) {
InterfacePort*port = *cur;
if (sep) cout << sep;
else sep = ", ";
switch (port->mode) {
case PORT_NONE: // Should not happen
cout << "NO_PORT " << port->name;
break;
case PORT_IN:
cout << "input " << port->name;
break;
case PORT_OUT:
cout << "output " << port->name;
break;
}
}
cout << ")";
}
cout << ";" << endl;
cout << "endmodule" << endl;
return errors;
}

View File

@ -115,6 +115,13 @@ int main(int argc, char*argv[])
if (dump_design_entities_path)
dump_design_entities(dump_design_entities_path);
int elaborate_errors = 0;
elaborate_errors = elaborate_entities();
if (elaborate_errors > 0) {
fprintf(stderr, "%d errors elaborating design.\n", elaborate_errors);
return 3;
}
lex_strings.cleanup();
return 0;
}