Check for _YOSYS_ in yosys.h
[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 // Find more information in the "CodingReadme" file.
37
38
39 #ifndef YOSYS_H
40 #define YOSYS_H
41
42 #include <map>
43 #include <set>
44 #include <vector>
45 #include <string>
46 #include <algorithm>
47 #include <functional>
48 #include <initializer_list>
49
50 #include <sstream>
51 #include <fstream>
52 #include <istream>
53 #include <ostream>
54 #include <iostream>
55
56 #include <stdarg.h>
57 #include <stdlib.h>
58 #include <string.h>
59 #include <stdio.h>
60
61 #ifndef _YOSYS_
62 # error It looks like you are trying to build Yosys with the config defines set. \
63 When building Yosys with a custom make system, make sure you set all the \
64 defines the Yosys Makefile would set for your build configuration.
65 #endif
66
67 #ifdef YOSYS_ENABLE_TCL
68 # include <tcl.h>
69 #endif
70
71 #define PRIVATE_NAMESPACE_BEGIN namespace {
72 #define PRIVATE_NAMESPACE_END }
73 #define YOSYS_NAMESPACE_BEGIN namespace Yosys {
74 #define YOSYS_NAMESPACE_END }
75 #define YOSYS_NAMESPACE_PREFIX Yosys::
76 #define USING_YOSYS_NAMESPACE using namespace Yosys;
77
78 #if __cplusplus >= 201103L
79 # define OVERRIDE override
80 # define FINAL final
81 #else
82 # define OVERRIDE
83 # define FINAL
84 #endif
85
86 #if !defined(__GNUC__) && !defined(__clang__)
87 # define __attribute__(...)
88 #endif
89
90 YOSYS_NAMESPACE_BEGIN
91
92 namespace RTLIL {
93 struct IdString;
94 struct SigSpec;
95 struct Wire;
96 struct Cell;
97 }
98
99 std::string stringf(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
100 std::string vstringf(const char *fmt, va_list ap);
101 std::string next_token(std::string &text, const char *sep);
102 bool patmatch(const char *pattern, const char *string);
103 int run_command(const std::string &command, std::function<void(const std::string&)> process_line = std::function<void(const std::string&)>());
104 std::string make_temp_file(std::string template_str = "/tmp/yosys_XXXXXX");
105 std::string make_temp_dir(std::string template_str = "/tmp/yosys_XXXXXX");
106 void remove_directory(std::string dirname);
107
108 template<typename T> int GetSize(const T &obj) { return obj.size(); }
109 int GetSize(RTLIL::Wire *wire);
110
111 YOSYS_NAMESPACE_END
112
113 #include "kernel/log.h"
114 #include "kernel/rtlil.h"
115 #include "kernel/register.h"
116
117 YOSYS_NAMESPACE_BEGIN
118
119 void yosys_setup();
120 void yosys_shutdown();
121
122 #ifdef YOSYS_ENABLE_TCL
123 Tcl_Interp *yosys_get_tcl_interp();
124 #endif
125
126 extern int autoidx;
127 extern RTLIL::Design *yosys_design;
128
129 RTLIL::IdString new_id(std::string file, int line, std::string func);
130
131 #define NEW_ID \
132 YOSYS_NAMESPACE_PREFIX new_id(__FILE__, __LINE__, __FUNCTION__)
133
134 #define ID(_str) \
135 ([]() { static YOSYS_NAMESPACE_PREFIX RTLIL::IdString _id(_str); return _id; })()
136
137 RTLIL::Design *yosys_get_design();
138 std::string proc_self_dirname();
139 std::string proc_share_dirname();
140 const char *create_prompt(RTLIL::Design *design, int recursion_counter);
141
142 void run_frontend(std::string filename, std::string command, RTLIL::Design *design, std::string *backend_command, std::string *from_to_label);
143 void run_pass(std::string command, RTLIL::Design *design);
144 void run_backend(std::string filename, std::string command, RTLIL::Design *design);
145 void shell(RTLIL::Design *design);
146
147 // from kernel/version_*.o (cc source generated from Makefile)
148 extern const char *yosys_version_str;
149
150 // from passes/cmds/design.cc
151 extern std::map<std::string, RTLIL::Design*> saved_designs;
152 extern std::vector<RTLIL::Design*> pushed_designs;
153
154 // from passes/cmds/pluginc.cc
155 extern std::map<std::string, void*> loaded_plugins;
156 extern std::map<std::string, std::string> loaded_plugin_aliases;
157 void load_plugin(std::string filename, std::vector<std::string> aliases);
158
159 YOSYS_NAMESPACE_END
160
161 #endif