2006-04-10 04:40:18 +02:00
|
|
|
#ifndef __PGenerate_H
|
|
|
|
|
#define __PGenerate_H
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2006 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
|
|
|
|
|
*/
|
|
|
|
|
#ifdef HAVE_CVS_IDENT
|
2007-06-02 05:42:12 +02:00
|
|
|
#ident "$Id: PGenerate.h,v 1.4 2007/06/02 03:42:12 steve Exp $"
|
2006-04-10 04:40:18 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "LineInfo.h"
|
|
|
|
|
# include "StringHeap.h"
|
|
|
|
|
# include "HName.h"
|
|
|
|
|
# include <list>
|
|
|
|
|
# include <map>
|
2007-05-24 06:07:11 +02:00
|
|
|
# include "pform_types.h"
|
2006-04-10 04:40:18 +02:00
|
|
|
|
|
|
|
|
class Design;
|
|
|
|
|
class NetScope;
|
|
|
|
|
class PExpr;
|
2007-03-05 06:59:10 +01:00
|
|
|
class PProcess;
|
2006-04-10 04:40:18 +02:00
|
|
|
class PGate;
|
|
|
|
|
class PWire;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This represents a generate scheme.
|
|
|
|
|
*/
|
|
|
|
|
class PGenerate : public LineInfo {
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PGenerate(unsigned id_number);
|
|
|
|
|
~PGenerate();
|
|
|
|
|
|
|
|
|
|
// Generate schemes have an ID number, for when the scope is
|
|
|
|
|
// implicit.
|
|
|
|
|
const unsigned id_number;
|
|
|
|
|
perm_string scope_name;
|
|
|
|
|
|
|
|
|
|
enum scheme_t {GS_NONE, GS_LOOP, GS_CONDIT};
|
|
|
|
|
scheme_t scheme_type;
|
|
|
|
|
|
|
|
|
|
// generate loops have an index variable and three
|
|
|
|
|
// expressions: for (index = <init>; <test>; index=<step>)
|
|
|
|
|
perm_string loop_index;
|
|
|
|
|
PExpr*loop_init;
|
|
|
|
|
PExpr*loop_test;
|
|
|
|
|
PExpr*loop_step;
|
|
|
|
|
|
2007-05-24 06:07:11 +02:00
|
|
|
map<pform_name_t,PWire*>wires;
|
2006-04-10 04:40:18 +02:00
|
|
|
PWire* add_wire(PWire*);
|
2007-05-24 06:07:11 +02:00
|
|
|
PWire* get_wire(const pform_name_t&name) const;
|
2006-04-10 04:40:18 +02:00
|
|
|
|
|
|
|
|
list<PGate*> gates;
|
|
|
|
|
void add_gate(PGate*);
|
|
|
|
|
|
2007-03-05 06:59:10 +01:00
|
|
|
list<PProcess*> behaviors;
|
|
|
|
|
void add_behavior(PProcess*behave);
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
list<PGenerate*> generates;
|
|
|
|
|
PGenerate*parent;
|
|
|
|
|
|
2006-04-10 04:40:18 +02:00
|
|
|
// This method is called by the elaboration of a module to
|
|
|
|
|
// generate scopes. the container is the scope that is to
|
|
|
|
|
// contain the generated scope.
|
|
|
|
|
bool generate_scope(Design*des, NetScope*container);
|
|
|
|
|
|
|
|
|
|
bool elaborate_sig(Design*des) const;
|
|
|
|
|
bool elaborate(Design*des) const;
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
void dump(ostream&out, unsigned indent) const;
|
2006-04-10 04:40:18 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool generate_scope_loop_(Design*des, NetScope*container);
|
|
|
|
|
|
|
|
|
|
// These are the scopes created by generate_scope.
|
|
|
|
|
list<NetScope*>scope_list_;
|
|
|
|
|
// internal function called on each scope generated by this scheme.
|
|
|
|
|
bool elaborate_sig_(Design*des, NetScope*scope) const;
|
|
|
|
|
bool elaborate_(Design*des, NetScope*scope) const;
|
|
|
|
|
|
|
|
|
|
private: // not implemented
|
|
|
|
|
PGenerate(const PGenerate&);
|
|
|
|
|
PGenerate& operator= (const PGenerate&);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|