Improvements in new RTLIL::IdString implementation
[yosys.git] / kernel / yosys.h
1 /*
2 * yosys -- Yosys Open SYnthesis Suite
3 *
4 * Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
5 *
6 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 *
18 */
19
20
21 // *** NOTE TO THE READER ***
22 //
23 // Maybe you have just opened this file in the hope to learn more about the
24 // Yosys API. Let me congratulate you on this great decision! ;)
25 //
26 // If you want to know how the design is represented by Yosys in the memory,
27 // you should read "kernel/rtlil.h".
28 //
29 // If you want to know how to register a command with Yosys, you could read
30 // "kernel/register.h", but it would be easier to just look at a simple
31 // example instead. A simple one would be "passes/cmds/log.cc".
32 //
33 // This header is very boring. It just defines some general things that
34 // belong nowhere else and includes the interesting headers.
35
36
37 #ifndef YOSYS_H
38 #define YOSYS_H
39
40 #include <map>
41 #include <set>
42 #include <vector>
43 #include <string>
44 #include <algorithm>
45 #include <initializer_list>
46
47 #include <stdarg.h>
48 #include <stdlib.h>
49 #include <string.h>
50 #include <stdio.h>
51
52 #define PRIVATE_NAMESPACE_BEGIN namespace {
53 #define PRIVATE_NAMESPACE_END }
54
55 #if 0
56 # define YOSYS_NAMESPACE_BEGIN namespace Yosys {
57 # define YOSYS_NAMESPACE_END }
58 # define YOSYS_NAMESPACE_PREFIX Yosys::
59 # define USING_YOSYS_NAMESPACE using namespace Yosys;
60 #else
61 # define YOSYS_NAMESPACE_BEGIN
62 # define YOSYS_NAMESPACE_END
63 # define YOSYS_NAMESPACE_PREFIX
64 # define USING_YOSYS_NAMESPACE
65 #endif
66
67 YOSYS_NAMESPACE_BEGIN
68
69 namespace RTLIL {
70 struct IdString;
71 struct SigSpec;
72 struct Wire;
73 struct Cell;
74 }
75
76 std::string stringf(const char *fmt, ...);
77 std::string vstringf(const char *fmt, va_list ap);
78 template<typename T> int SIZE(const T &obj) { return obj.size(); }
79 int SIZE(RTLIL::Wire *wire);
80
81 YOSYS_NAMESPACE_END
82
83 #include "kernel/log.h"
84 #include "kernel/rtlil.h"
85 #include "kernel/register.h"
86 #include "kernel/compatibility.h"
87
88 YOSYS_NAMESPACE_BEGIN
89
90 void yosys_setup();
91 void yosys_shutdown();
92
93 #ifdef YOSYS_ENABLE_TCL
94 #include <tcl.h>
95 Tcl_Interp *yosys_get_tcl_interp();
96 #endif
97
98 extern int autoidx;
99 extern RTLIL::Design *yosys_design;
100
101 RTLIL::IdString new_id(std::string file, int line, std::string func);
102
103 #define NEW_ID \
104 YOSYS_NAMESPACE_PREFIX new_id(__FILE__, __LINE__, __FUNCTION__)
105
106 RTLIL::Design *yosys_get_design();
107 std::string proc_self_dirname();
108 std::string proc_share_dirname();
109 const char *create_prompt(RTLIL::Design *design, int recursion_counter);
110
111 void run_frontend(std::string filename, std::string command, RTLIL::Design *design, std::string *backend_command, std::string *from_to_label);
112 void run_pass(std::string command, RTLIL::Design *design);
113 void run_backend(std::string filename, std::string command, RTLIL::Design *design);
114 void shell(RTLIL::Design *design);
115
116 // from kernel/version_*.o (cc source generated from Makefile)
117 extern const char *yosys_version_str;
118
119 // from passes/cmds/design.cc
120 extern std::map<std::string, RTLIL::Design*> saved_designs;
121 extern std::vector<RTLIL::Design*> pushed_designs;
122
123 YOSYS_NAMESPACE_END
124
125 #endif