2005-01-26 23:33:38 +03:00
|
|
|
%{
|
2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2005-01-26 23:33:38 +03:00
|
|
|
/*-------------------------------------------------------------------------
|
2008-04-21 19:28:53 +04:00
|
|
|
Portions of this source have been derived from makedepf90 version 2.8.8,
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2008-04-21 19:28:53 +04:00
|
|
|
Copyright (C) 2000--2006 Erik Edelmann <erik.edelmann@iki.fi>
|
2005-01-26 23:33:38 +03:00
|
|
|
|
|
|
|
The code was originally distributed under the GPL but permission
|
|
|
|
from the copyright holder has been obtained to distribute this
|
|
|
|
derived work under the CMake license.
|
|
|
|
-------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
This file must be translated to C and modified to build everywhere.
|
|
|
|
|
|
|
|
Run bison like this:
|
|
|
|
|
2007-10-05 18:02:34 +04:00
|
|
|
bison --yacc --name-prefix=cmDependsFortran_yy
|
|
|
|
--defines=cmDependsFortranParserTokens.h
|
|
|
|
-ocmDependsFortranParser.cxx
|
|
|
|
cmDependsFortranParser.y
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2005-02-01 18:42:52 +03:00
|
|
|
Modify cmDependsFortranParser.cxx:
|
2005-01-27 00:19:05 +03:00
|
|
|
- remove TABs
|
2007-10-05 18:02:34 +04:00
|
|
|
- Remove the yyerrorlab block in range ["goto yyerrlab1", "yyerrlab1:"]
|
2005-01-26 23:33:38 +03:00
|
|
|
*/
|
|
|
|
|
2005-02-01 18:42:52 +03:00
|
|
|
/*-------------------------------------------------------------------------*/
|
|
|
|
#define cmDependsFortranParser_cxx
|
|
|
|
#include "cmDependsFortranParser.h" /* Interface to parser object. */
|
|
|
|
#include "cmDependsFortranParserTokens.h" /* Need YYSTYPE for YY_DECL. */
|
|
|
|
|
2009-06-12 18:46:25 +04:00
|
|
|
#include <cmsys/String.h>
|
|
|
|
|
2005-01-26 23:33:38 +03:00
|
|
|
/* Configure the parser to use a lexer object. */
|
|
|
|
#define YYPARSE_PARAM yyscanner
|
|
|
|
#define YYLEX_PARAM yyscanner
|
|
|
|
#define YYERROR_VERBOSE 1
|
|
|
|
#define cmDependsFortran_yyerror(x) \
|
|
|
|
cmDependsFortranError(yyscanner, x)
|
|
|
|
|
2005-01-26 23:58:51 +03:00
|
|
|
/* Forward declare the lexer entry point. */
|
|
|
|
YY_DECL;
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2005-02-01 18:42:52 +03:00
|
|
|
/* Helper function to forward error callback. */
|
|
|
|
static void cmDependsFortranError(yyscan_t yyscanner, const char* message)
|
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_Error(parser, message);
|
|
|
|
}
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2007-10-04 01:01:49 +04:00
|
|
|
static bool cmDependsFortranParserIsKeyword(const char* word,
|
|
|
|
const char* keyword)
|
|
|
|
{
|
2009-06-12 18:46:25 +04:00
|
|
|
return cmsysString_strcasecmp(word, keyword) == 0;
|
2007-10-04 01:01:49 +04:00
|
|
|
}
|
|
|
|
|
2005-01-29 01:09:43 +03:00
|
|
|
/* Disable some warnings in the generated code. */
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
# pragma warn -8004 /* Variable assigned a value that is not used. */
|
2006-08-01 19:38:42 +04:00
|
|
|
# pragma warn -8008 /* condition always returns true */
|
|
|
|
# pragma warn -8060 /* possibly incorrect assignment */
|
|
|
|
# pragma warn -8066 /* unreachable code */
|
2005-01-29 01:09:43 +03:00
|
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# pragma warning (disable: 4102) /* Unused goto label. */
|
2005-02-01 19:28:38 +03:00
|
|
|
# pragma warning (disable: 4065) /* Switch contains default but no case. */
|
2007-10-05 18:02:34 +04:00
|
|
|
# pragma warning (disable: 4701) /* Local variable may not be initialized. */
|
|
|
|
# pragma warning (disable: 4702) /* Unreachable code. */
|
|
|
|
# pragma warning (disable: 4127) /* Conditional expression is constant. */
|
|
|
|
# pragma warning (disable: 4244) /* Conversion to smaller type, data loss. */
|
2005-01-29 01:09:43 +03:00
|
|
|
#endif
|
2005-01-26 23:33:38 +03:00
|
|
|
%}
|
|
|
|
|
|
|
|
/* Generate a reentrant parser object. */
|
2007-10-03 23:41:39 +04:00
|
|
|
%pure-parser
|
2005-01-26 23:33:38 +03:00
|
|
|
|
|
|
|
%union {
|
|
|
|
char* string;
|
|
|
|
}
|
|
|
|
|
2005-01-29 01:13:03 +03:00
|
|
|
/*-------------------------------------------------------------------------*/
|
|
|
|
/* Tokens */
|
2007-10-03 23:41:39 +04:00
|
|
|
%token EOSTMT ASSIGNMENT_OP GARBAGE
|
2005-01-26 23:33:38 +03:00
|
|
|
%token CPP_INCLUDE F90PPR_INCLUDE COCO_INCLUDE
|
|
|
|
%token F90PPR_DEFINE CPP_DEFINE F90PPR_UNDEF CPP_UNDEF
|
|
|
|
%token CPP_IFDEF CPP_IFNDEF CPP_IF CPP_ELSE CPP_ELIF CPP_ENDIF
|
2007-10-05 18:02:34 +04:00
|
|
|
%token F90PPR_IFDEF F90PPR_IFNDEF F90PPR_IF
|
|
|
|
%token F90PPR_ELSE F90PPR_ELIF F90PPR_ENDIF
|
2008-04-24 07:53:20 +04:00
|
|
|
%token COMMA DCOLON
|
2007-10-03 23:41:39 +04:00
|
|
|
%token <string> CPP_TOENDL
|
|
|
|
%token <number> UNTERMINATED_STRING
|
|
|
|
%token <string> STRING WORD
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2005-01-29 01:13:03 +03:00
|
|
|
/*-------------------------------------------------------------------------*/
|
|
|
|
/* grammar */
|
2005-01-26 23:33:38 +03:00
|
|
|
%%
|
|
|
|
|
2007-10-03 23:41:39 +04:00
|
|
|
code: /* empty */ | code stmt;
|
2005-01-26 23:33:38 +03:00
|
|
|
|
2007-10-03 23:41:39 +04:00
|
|
|
stmt: keyword_stmt | assignment_stmt;
|
|
|
|
|
|
|
|
assignment_stmt: WORD ASSIGNMENT_OP other EOSTMT /* Ignore */
|
2007-12-18 01:55:21 +03:00
|
|
|
{
|
|
|
|
free($1);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
|
|
|
|
keyword_stmt:
|
|
|
|
WORD EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
2007-10-04 01:01:49 +04:00
|
|
|
if (cmDependsFortranParserIsKeyword($1, "interface"))
|
2007-10-03 23:41:39 +04:00
|
|
|
{
|
2007-10-05 18:02:34 +04:00
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
2007-10-03 23:41:39 +04:00
|
|
|
cmDependsFortranParser_SetInInterface(parser, true);
|
|
|
|
}
|
|
|
|
free($1);
|
2005-01-26 23:33:38 +03:00
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| WORD WORD other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
2007-10-04 01:01:49 +04:00
|
|
|
if (cmDependsFortranParserIsKeyword($1, "use"))
|
2007-10-03 23:41:39 +04:00
|
|
|
{
|
2007-10-05 18:02:34 +04:00
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
2007-10-03 23:41:39 +04:00
|
|
|
cmDependsFortranParser_RuleUse(parser, $2);
|
|
|
|
}
|
2007-10-04 01:01:49 +04:00
|
|
|
else if (cmDependsFortranParserIsKeyword($1, "module"))
|
2007-10-03 23:41:39 +04:00
|
|
|
{
|
2007-10-05 18:02:34 +04:00
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
2007-10-03 23:41:39 +04:00
|
|
|
cmDependsFortranParser_RuleModule(parser, $2);
|
|
|
|
}
|
2007-10-04 01:01:49 +04:00
|
|
|
else if (cmDependsFortranParserIsKeyword($1, "interface"))
|
2007-10-03 23:41:39 +04:00
|
|
|
{
|
2007-10-05 18:02:34 +04:00
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
2007-10-03 23:41:39 +04:00
|
|
|
cmDependsFortranParser_SetInInterface(parser, true);
|
|
|
|
}
|
2007-10-04 01:01:49 +04:00
|
|
|
else if (cmDependsFortranParserIsKeyword($2, "interface") &&
|
|
|
|
cmDependsFortranParserIsKeyword($1, "end"))
|
2007-10-03 23:41:39 +04:00
|
|
|
{
|
2007-10-05 18:02:34 +04:00
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
2007-10-03 23:41:39 +04:00
|
|
|
cmDependsFortranParser_SetInInterface(parser, false);
|
|
|
|
}
|
|
|
|
free($1);
|
2007-12-18 01:55:21 +03:00
|
|
|
free($2);
|
2005-01-26 23:33:38 +03:00
|
|
|
}
|
2008-04-24 07:53:20 +04:00
|
|
|
| WORD DCOLON WORD other EOSTMT
|
|
|
|
{
|
|
|
|
if (cmDependsFortranParserIsKeyword($1, "use"))
|
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleUse(parser, $3);
|
|
|
|
}
|
|
|
|
free($1);
|
|
|
|
free($3);
|
|
|
|
}
|
|
|
|
| WORD COMMA WORD DCOLON WORD other EOSTMT
|
|
|
|
{
|
|
|
|
if (cmDependsFortranParserIsKeyword($1, "use") &&
|
|
|
|
cmDependsFortranParserIsKeyword($3, "non_intrinsic") )
|
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleUse(parser, $5);
|
|
|
|
}
|
|
|
|
free($1);
|
|
|
|
free($3);
|
|
|
|
free($5);
|
|
|
|
}
|
2007-12-18 01:55:03 +03:00
|
|
|
| WORD STRING other EOSTMT /* Ignore */
|
2007-12-18 01:55:21 +03:00
|
|
|
{
|
2008-01-08 07:08:42 +03:00
|
|
|
if (cmDependsFortranParserIsKeyword($1, "include"))
|
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleInclude(parser, $2);
|
|
|
|
}
|
2007-12-18 01:55:21 +03:00
|
|
|
free($1);
|
|
|
|
free($2);
|
|
|
|
}
|
2007-12-18 01:55:03 +03:00
|
|
|
| include STRING other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
2007-12-18 01:55:03 +03:00
|
|
|
cmDependsFortranParser* parser =
|
|
|
|
cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleInclude(parser, $2);
|
2005-01-26 23:33:38 +03:00
|
|
|
free($2);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| define WORD other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleDefine(parser, $2);
|
|
|
|
free($2);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| undef WORD other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleUndef(parser, $2);
|
|
|
|
free($2);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| ifdef WORD other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleIfdef(parser, $2);
|
|
|
|
free($2);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| ifndef WORD other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleIfndef(parser, $2);
|
|
|
|
free($2);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| if other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleIf(parser);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| elif other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleElif(parser);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| else other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleElse(parser);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| endif other EOSTMT
|
2005-01-26 23:33:38 +03:00
|
|
|
{
|
|
|
|
cmDependsFortranParser* parser = cmDependsFortran_yyget_extra(yyscanner);
|
|
|
|
cmDependsFortranParser_RuleEndif(parser);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| WORD GARBAGE other EOSTMT /* Ignore */
|
2007-12-18 01:55:21 +03:00
|
|
|
{
|
|
|
|
free($1);
|
|
|
|
}
|
2007-10-03 23:41:39 +04:00
|
|
|
| GARBAGE other EOSTMT
|
|
|
|
| EOSTMT
|
|
|
|
| error
|
2005-01-26 23:33:38 +03:00
|
|
|
;
|
|
|
|
|
2007-10-03 23:41:39 +04:00
|
|
|
|
|
|
|
|
|
|
|
include: CPP_INCLUDE | F90PPR_INCLUDE | COCO_INCLUDE ;
|
|
|
|
define: CPP_DEFINE | F90PPR_DEFINE;
|
2005-01-26 23:33:38 +03:00
|
|
|
undef: CPP_UNDEF | F90PPR_UNDEF ;
|
|
|
|
ifdef: CPP_IFDEF | F90PPR_IFDEF ;
|
|
|
|
ifndef: CPP_IFNDEF | F90PPR_IFNDEF ;
|
|
|
|
if: CPP_IF | F90PPR_IF ;
|
|
|
|
elif: CPP_ELIF | F90PPR_ELIF ;
|
|
|
|
else: CPP_ELSE | F90PPR_ELSE ;
|
|
|
|
endif: CPP_ENDIF | F90PPR_ENDIF ;
|
|
|
|
other: /* empty */ | other misc_code ;
|
|
|
|
|
|
|
|
misc_code:
|
|
|
|
WORD { free ($1); }
|
|
|
|
| STRING { free ($1); }
|
2007-10-03 23:41:39 +04:00
|
|
|
| GARBAGE
|
|
|
|
| ASSIGNMENT_OP
|
2008-04-24 07:53:20 +04:00
|
|
|
| DCOLON
|
|
|
|
| COMMA
|
2005-01-26 23:33:38 +03:00
|
|
|
| UNTERMINATED_STRING
|
|
|
|
;
|
|
|
|
|
|
|
|
%%
|
2005-01-29 01:13:03 +03:00
|
|
|
/* End of grammar */
|