Files
iverilog/vhdlpp/parse_api.h
T

72 lines
2.5 KiB
C
Raw Permalink Normal View History

#ifndef IVL_parse_api_H
#define IVL_parse_api_H
2010-12-13 06:02:18 +02:00
/*
* Copyright (c) 2011-2014 Stephen Williams ([email protected])
2010-12-13 06:02:18 +02:00
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form 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
2012-08-28 18:41:23 -07:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
2010-12-13 06:02:18 +02:00
*/
2010-12-15 07:36:47 +02:00
# include <cstdio>
2011-01-03 08:30:09 +02:00
# include "entity.h"
2010-12-15 07:36:47 +02:00
2011-07-22 20:49:57 -07:00
typedef void*yyscan_t;
2010-12-13 06:02:18 +02:00
/*
2012-05-14 09:58:49 -07:00
* The yyltype supports the passing of detailed source file location
2010-12-13 06:02:18 +02:00
* information between the lexical analyzer and the parser. Defining
* YYLTYPE compels the lexor to use this type and not something other.
*/
struct yyltype {
unsigned first_line;
const char*text;
2011-07-22 20:49:57 -07:00
yyltype() { first_line = 1; text = ""; }
2010-12-13 06:02:18 +02:00
};
# define YYLTYPE struct yyltype
2010-12-15 07:36:47 +02:00
/*
2011-07-23 10:07:20 -07:00
* This calls the bison-generated parser with the given file path as
* the input stream. If the file cannot be opened, this returns -1.
2011-07-30 15:04:07 -07:00
* The "library_name" argument is the name of the library that is
* being parsed. If this is a regular source file, then this name is
* nil. Note that the "work" library is handled specially.
2010-12-15 07:36:47 +02:00
*/
2011-07-30 15:04:07 -07:00
extern int parse_source_file(const char*file_path, perm_string library_name);
2010-12-15 07:36:47 +02:00
2011-02-19 11:39:00 -08:00
/*
2011-03-29 08:18:22 -07:00
* Use this function during parse to generate error messages. The "loc"
2011-02-19 11:39:00 -08:00
* is the location of the token that triggered the error, and the fmt
* is printf-style format.
*/
extern void errormsg(const YYLTYPE&loc, const char*fmt, ...) __attribute__((format (printf, 2, 3)));
extern void sorrymsg(const YYLTYPE&loc, const char*fmt, ...) __attribute__((format (printf, 2, 3)));
2010-12-15 07:36:47 +02:00
/*
* Set this to a non-zero value to enable parser debug output.
*/
extern int yydebug;
/*
* The parser counts the errors that is handed in the parse_errors
* variable. For a clean compile, this value should not change. (The
* caller sets its initial value.) The sorrys are the count of
* unsupported constructs that are encountered.
2010-12-15 07:36:47 +02:00
*/
extern int parse_errors;
extern int parse_sorrys;
2010-12-15 07:36:47 +02:00
#endif /* IVL_parse_api_H */