84 lines
2.4 KiB
C++
84 lines
2.4 KiB
C++
|
|
/*
|
||
|
|
* 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
|
||
|
|
* Picture Elements, Inc., 777 Panoramic Way, Berkeley, CA 94704.
|
||
|
|
*/
|
||
|
|
|
||
|
|
# include "entity.h"
|
||
|
|
# include "architec.h"
|
||
|
|
# include <fstream>
|
||
|
|
# include <iomanip>
|
||
|
|
|
||
|
|
static ostream& operator << (ostream&out, port_mode_t that)
|
||
|
|
{
|
||
|
|
switch (that) {
|
||
|
|
case PORT_NONE:
|
||
|
|
out << "NO-PORT";
|
||
|
|
break;
|
||
|
|
case PORT_IN:
|
||
|
|
out << "IN";
|
||
|
|
break;
|
||
|
|
case PORT_OUT:
|
||
|
|
out << "OUT";
|
||
|
|
break;
|
||
|
|
default:
|
||
|
|
out << "PORT-????";
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
return out;
|
||
|
|
}
|
||
|
|
|
||
|
|
void dump_design_entities(const char*path)
|
||
|
|
{
|
||
|
|
ofstream file (path);
|
||
|
|
for (map<perm_string,Entity*>::iterator cur = design_entities.begin()
|
||
|
|
; cur != design_entities.end() ; ++cur) {
|
||
|
|
cur->second->dump(file);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
void Entity::dump(ostream&out) const
|
||
|
|
{
|
||
|
|
out << "entity " << name_
|
||
|
|
<< " file=" << get_fileline() << endl;
|
||
|
|
if (ports.size() == 0) {
|
||
|
|
out << " No ports" << endl;
|
||
|
|
} else {
|
||
|
|
out << " PORTS:" << endl;
|
||
|
|
for (vector<InterfacePort*>::const_iterator cur = ports.begin()
|
||
|
|
; cur != ports.end() ; ++cur) {
|
||
|
|
InterfacePort*item = *cur;
|
||
|
|
out << setw(6) << "" << item->name
|
||
|
|
<< " : " << item->mode
|
||
|
|
<< ", type=" << item->type_name
|
||
|
|
<< ", file=" << item->get_fileline() << endl;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
for (map<perm_string,Architecture*>::const_iterator cur = arch_.begin()
|
||
|
|
; cur != arch_.end() ; ++cur) {
|
||
|
|
cur->second->dump(out, name_);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
void Architecture::dump(ostream&out, perm_string of_entity) const
|
||
|
|
{
|
||
|
|
out << "architecture " << name_
|
||
|
|
<< " of entity " << of_entity
|
||
|
|
<< " file=" << get_fileline() << endl;
|
||
|
|
}
|