mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-18 11:58:32 +00:00
78 lines
2.7 KiB
C++
78 lines
2.7 KiB
C++
/*
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
*
|
|
* Copyright (C) 2012 Claire Xenia Wolf <claire@yosyshq.com>
|
|
*
|
|
* 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.
|
|
*
|
|
* 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.
|
|
*
|
|
* ---
|
|
*
|
|
* The Verilog frontend.
|
|
*
|
|
* This frontend is using the AST frontend library (see frontends/ast/).
|
|
* Thus this frontend does not generate RTLIL code directly but creates an
|
|
* AST directly from the Verilog parse tree and then passes this AST to
|
|
* the AST frontend library.
|
|
*
|
|
*/
|
|
|
|
#ifndef VERILOG_FRONTEND_H
|
|
#define VERILOG_FRONTEND_H
|
|
|
|
#include "kernel/yosys.h"
|
|
#include "frontends/ast/ast.h"
|
|
#include "frontends/verilog/location.hh"
|
|
|
|
#if ! defined(yyFlexLexerOnce)
|
|
#define yyFlexLexer frontend_verilog_yyFlexLexer
|
|
#include <FlexLexer.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <list>
|
|
|
|
YOSYS_NAMESPACE_BEGIN
|
|
|
|
namespace VERILOG_FRONTEND
|
|
{
|
|
/* Ephemeral context class */
|
|
struct ConstParser {
|
|
std::optional<std::string> filename;
|
|
std::optional<AST::AstSrcLocType> loc;
|
|
private:
|
|
std::string fmt_maybe_loc(std::string msg);
|
|
void log_maybe_loc_error(std::string msg);
|
|
void log_maybe_loc_warn(std::string msg);
|
|
// divide an arbitrary length decimal number by two and return the rest
|
|
int my_decimal_div_by_two(std::vector<uint8_t> &digits);
|
|
// find the number of significant bits in a binary number (not including the sign bit)
|
|
int my_ilog2(int x);
|
|
// parse a binary, decimal, hexadecimal or octal number with support for special bits ('x', 'z' and '?')
|
|
void my_strtobin(std::vector<RTLIL::State> &data, const char *str, int len_in_bits, int base, char case_type, bool is_unsized);
|
|
public:
|
|
// convert the Verilog code for a constant to an AST node
|
|
std::unique_ptr<AST::AstNode> const2ast(std::string code, char case_type = 0, bool warn_z = false);
|
|
|
|
};
|
|
[[noreturn]]
|
|
extern void verr_at(std::string filename, int begin_line, char const *fmt, va_list ap);
|
|
[[noreturn]]
|
|
extern void err_at_loc(frontend_verilog_yy::location loc, char const *fmt, ...);
|
|
[[noreturn]]
|
|
extern void err_at_ast(AST::AstSrcLocType loc, char const *fmt, ...);
|
|
};
|
|
|
|
YOSYS_NAMESPACE_END
|
|
|
|
#endif
|