-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathall_cmds.h
54 lines (46 loc) · 1.77 KB
/
all_cmds.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*************************************************************************
*
* Copyright (c) 2021 Rajit Manohar
*
* This program is free software; you can redistribute it and/or
* modify it 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., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
**************************************************************************
*/
#include <stdio.h>
#include <act/act.h>
#include <act/passes.h>
#include "config_pkg.h"
void act_cmds_init (void);
void ckt_cmds_init (void);
void timer_cmds_init (void);
void pandr_cmds_init (void);
void placement_cmds_init (void);
void routing_cmds_init (void);
void conf_cmds_init (void);
void misc_cmds_init (void);
/* -- functions exported -- */
FILE *sys_get_fileptr (int v);
void act_flatten_prs (Act *a, FILE *fp, Process *p, int mode);
void act_flatten_sim (Act *a, FILE *fps, FILE *fpa, Process *p);
void act_emit_verilog (Act *a, FILE *fp, Process *p);
/* fmt has i for integer, s for string, f for float, * means repeat
prev to the of arg list */
void save_to_log (int argc, char **argv, const char *fmt);
ActNetlistPass *getNetlistPass (void);
#ifdef FOUND_galois
void init_galois_shmemsys(int mode = 0);
void galois_set_threads (int nthreads);
#endif