1999-07-03 04:12:51 +02:00
|
|
|
#ifndef __PTask_H
|
|
|
|
|
#define __PTask_H
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 1999 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)
|
1999-09-01 22:46:19 +02:00
|
|
|
#ident "$Id: PTask.h,v 1.5 1999/09/01 20:46:19 steve Exp $"
|
1999-07-03 04:12:51 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "LineInfo.h"
|
1999-07-24 04:11:19 +02:00
|
|
|
# include "svector.h"
|
1999-07-03 04:12:51 +02:00
|
|
|
# include <string>
|
|
|
|
|
class Design;
|
1999-07-24 04:11:19 +02:00
|
|
|
class PWire;
|
1999-07-03 04:12:51 +02:00
|
|
|
class Statement;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The PTask holds the parsed definitions of a task.
|
|
|
|
|
*/
|
|
|
|
|
class PTask : public LineInfo {
|
|
|
|
|
|
|
|
|
|
public:
|
1999-07-24 04:11:19 +02:00
|
|
|
explicit PTask(svector<PWire*>*p, Statement*s);
|
1999-07-03 04:12:51 +02:00
|
|
|
~PTask();
|
|
|
|
|
|
|
|
|
|
virtual void elaborate(Design*des, const string&path) const;
|
|
|
|
|
void dump(ostream&, unsigned) const;
|
|
|
|
|
|
|
|
|
|
private:
|
1999-07-24 04:11:19 +02:00
|
|
|
svector<PWire*>*ports_;
|
1999-07-03 04:12:51 +02:00
|
|
|
Statement*statement_;
|
|
|
|
|
|
|
|
|
|
private: // Not implemented
|
|
|
|
|
PTask(const PTask&);
|
|
|
|
|
PTask& operator=(const PTask&);
|
|
|
|
|
};
|
|
|
|
|
|
1999-08-26 00:22:41 +02:00
|
|
|
/*
|
|
|
|
|
* The function is similar to a task (in this context) but there is a
|
|
|
|
|
* single output port and a set of input ports. The output port is the
|
|
|
|
|
* function return value.
|
|
|
|
|
*/
|
1999-07-31 21:14:47 +02:00
|
|
|
class PFunction : public LineInfo {
|
1999-08-26 00:22:41 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit PFunction(svector<PWire *>*p, Statement *s);
|
1999-07-31 21:14:47 +02:00
|
|
|
~PFunction();
|
|
|
|
|
|
1999-08-26 00:22:41 +02:00
|
|
|
void set_output(PWire*);
|
|
|
|
|
|
1999-09-01 22:46:19 +02:00
|
|
|
/* Functions are elaborated in 2 passes. */
|
|
|
|
|
virtual void elaborate_1(Design *des, const string &path) const;
|
|
|
|
|
virtual void elaborate_2(Design *des, const string &path) const;
|
|
|
|
|
|
1999-07-31 21:14:47 +02:00
|
|
|
void dump(ostream&, unsigned) const;
|
|
|
|
|
|
1999-08-26 00:22:41 +02:00
|
|
|
private:
|
|
|
|
|
PWire*out_;
|
1999-07-31 21:14:47 +02:00
|
|
|
svector<PWire *> *ports_;
|
|
|
|
|
Statement *statement_;
|
|
|
|
|
};
|
|
|
|
|
|
1999-07-03 04:12:51 +02:00
|
|
|
/*
|
|
|
|
|
* $Log: PTask.h,v $
|
1999-09-01 22:46:19 +02:00
|
|
|
* Revision 1.5 1999/09/01 20:46:19 steve
|
|
|
|
|
* Handle recursive functions and arbitrary function
|
|
|
|
|
* references to other functions, properly pass
|
|
|
|
|
* function parameters and save function results.
|
|
|
|
|
*
|
1999-08-26 00:22:41 +02:00
|
|
|
* Revision 1.4 1999/08/25 22:22:41 steve
|
|
|
|
|
* elaborate some aspects of functions.
|
|
|
|
|
*
|
1999-07-31 21:14:47 +02:00
|
|
|
* Revision 1.3 1999/07/31 19:14:47 steve
|
|
|
|
|
* Add functions up to elaboration (Ed Carter)
|
|
|
|
|
*
|
1999-07-24 04:11:19 +02:00
|
|
|
* Revision 1.2 1999/07/24 02:11:19 steve
|
|
|
|
|
* Elaborate task input ports.
|
|
|
|
|
*
|
1999-07-03 04:12:51 +02:00
|
|
|
* Revision 1.1 1999/07/03 02:12:51 steve
|
|
|
|
|
* Elaborate user defined tasks.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#endif
|