ACT Library
Loading...
Searching...
No Matches
sizing.h
Go to the documentation of this file.
1/*************************************************************************
2 *
3 * This file is part of the ACT library
4 *
5 * Copyright (c) 2020 Rajit Manohar
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 *
22 **************************************************************************
23 */
24#ifndef __ACT_PASS_SIZING_H__
25#define __ACT_PASS_SIZING_H__
26
27#include <map>
28#include <act/act.h>
29#include <act/iter.h>
30#include <act/passes/booleanize.h>
31#include <common/hash.h>
32#include <common/array.h>
33
34class ActSizingPass : public ActPass {
35public:
37
38 int run (Process *p = NULL);
39
40private:
41 void *local_op (Process *p, int mode = 0);
42 void free_local (void *);
43
45};
46
47
48#endif /* __ACT_PASS_STATE_H__ */
This pass is used to pre-process information about languages and variables within the design....
Definition: booleanize.h:271
The main Act class used to read in an ACT file and create basic data structures. All design informati...
Definition: act.h:334
The main ActPass class used to implement an ACT analysis/synthesis pass. All the core tools use this ...
Definition: act.h:791
Act * a
Definition: act.h:810
Definition: sizing.h:34
int run(Process *p=NULL)
ActBooleanizePass * bp
Definition: sizing.h:44
ActSizingPass(Act *a)
void free_local(void *)
void * local_op(Process *p, int mode=0)
User-defined processes.
Definition: types.h:750
This contains the implementation of a number of C++ iterators to make it easier to walk through an AC...