2013-01-05 04:13:26 -06:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
2021-06-07 17:39:36 -05:00
|
|
|
* Copyright (C) 2012 Claire Xenia Wolf <claire@yosyshq.com>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-01-05 04:13:26 -06:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-01-05 04:13:26 -06:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* ---
|
|
|
|
*
|
|
|
|
* A very simple and straightforward frontend for the RTLIL text
|
2020-08-26 12:29:32 -05:00
|
|
|
* representation.
|
2013-01-05 04:13:26 -06:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-08-26 12:29:32 -05:00
|
|
|
#ifndef RTLIL_FRONTEND_H
|
|
|
|
#define RTLIL_FRONTEND_H
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
#include "kernel/yosys.h"
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
YOSYS_NAMESPACE_BEGIN
|
|
|
|
|
2020-08-26 12:29:32 -05:00
|
|
|
namespace RTLIL_FRONTEND {
|
2014-08-23 08:03:55 -05:00
|
|
|
extern std::istream *lexin;
|
2013-01-05 04:13:26 -06:00
|
|
|
extern RTLIL::Design *current_design;
|
2018-12-23 08:45:09 -06:00
|
|
|
extern bool flag_nooverwrite;
|
|
|
|
extern bool flag_overwrite;
|
2019-04-05 10:31:49 -05:00
|
|
|
extern bool flag_lib;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
YOSYS_NAMESPACE_END
|
|
|
|
|
2020-08-26 12:29:32 -05:00
|
|
|
extern int rtlil_frontend_yydebug;
|
|
|
|
int rtlil_frontend_yylex(void);
|
|
|
|
void rtlil_frontend_yyerror(char const *s);
|
|
|
|
void rtlil_frontend_yyrestart(FILE *f);
|
|
|
|
int rtlil_frontend_yyparse(void);
|
|
|
|
int rtlil_frontend_yylex_destroy(void);
|
|
|
|
int rtlil_frontend_yyget_lineno(void);
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|