193 lines
4.7 KiB
C++
193 lines
4.7 KiB
C++
#ifndef _AST_PARSE_H
|
|
#define _AST_PARSE_H
|
|
//
|
|
// See copyright.h for copyright notice and limitation of liability
|
|
// and disclaimer of warranty provisions.
|
|
//
|
|
#include "copyright.h"
|
|
|
|
#ifndef _COOL_H_
|
|
#define _COOL_H_
|
|
|
|
#include "cool-io.h"
|
|
|
|
/* a type renaming */
|
|
typedef int Boolean;
|
|
class Entry;
|
|
typedef Entry *Symbol;
|
|
|
|
Boolean copy_Boolean(Boolean);
|
|
void assert_Boolean(Boolean);
|
|
void dump_Boolean(ostream &,int,Boolean);
|
|
|
|
Symbol copy_Symbol(Symbol);
|
|
void assert_Symbol(Symbol);
|
|
void dump_Symbol(ostream &,int,Symbol);
|
|
|
|
#endif
|
|
#include "tree.h"
|
|
typedef class Program_class *Program;
|
|
typedef class Class__class *Class_;
|
|
typedef class Feature_class *Feature;
|
|
typedef class Formal_class *Formal;
|
|
typedef class Expression_class *Expression;
|
|
typedef class Case_class *Case;
|
|
typedef list_node<Class_> Classes_class;
|
|
typedef Classes_class *Classes;
|
|
typedef list_node<Feature> Features_class;
|
|
typedef Features_class *Features;
|
|
typedef list_node<Formal> Formals_class;
|
|
typedef Formals_class *Formals;
|
|
typedef list_node<Expression> Expressions_class;
|
|
typedef Expressions_class *Expressions;
|
|
typedef list_node<Case> Cases_class;
|
|
typedef Cases_class *Cases;
|
|
/* A Bison parser, made by GNU Bison 2.3. */
|
|
|
|
/* Skeleton interface for Bison's Yacc-like parsers in C
|
|
|
|
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
|
Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, 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
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA. */
|
|
|
|
/* As a special exception, you may create a larger work that contains
|
|
part or all of the Bison parser skeleton and distribute that work
|
|
under terms of your choice, so long as that work isn't itself a
|
|
parser generator using the skeleton or a modified version thereof
|
|
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
the parser skeleton itself, you may (at your option) remove this
|
|
special exception, which will cause the skeleton and the resulting
|
|
Bison output files to be licensed under the GNU General Public
|
|
License without this special exception.
|
|
|
|
This special exception was added by the Free Software Foundation in
|
|
version 2.2 of Bison. */
|
|
|
|
/* Tokens. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
know about them. */
|
|
enum yytokentype {
|
|
PROGRAM = 258,
|
|
CLASS = 259,
|
|
METHOD = 260,
|
|
ATTR = 261,
|
|
FORMAL = 262,
|
|
BRANCH = 263,
|
|
ASSIGN = 264,
|
|
STATIC_DISPATCH = 265,
|
|
DISPATCH = 266,
|
|
COND = 267,
|
|
LOOP = 268,
|
|
TYPCASE = 269,
|
|
BLOCK = 270,
|
|
LET = 271,
|
|
PLUS = 272,
|
|
SUB = 273,
|
|
MUL = 274,
|
|
DIVIDE = 275,
|
|
NEG = 276,
|
|
LT = 277,
|
|
EQ = 278,
|
|
LEQ = 279,
|
|
COMP = 280,
|
|
INT = 281,
|
|
STR = 282,
|
|
BOOL = 283,
|
|
NEW = 284,
|
|
ISVOID = 285,
|
|
NO_EXPR = 286,
|
|
OBJECT = 287,
|
|
NO_TYPE = 288,
|
|
STR_CONST = 289,
|
|
INT_CONST = 290,
|
|
ID = 291,
|
|
LINENO = 292
|
|
};
|
|
#endif
|
|
/* Tokens. */
|
|
#define PROGRAM 258
|
|
#define CLASS 259
|
|
#define METHOD 260
|
|
#define ATTR 261
|
|
#define FORMAL 262
|
|
#define BRANCH 263
|
|
#define ASSIGN 264
|
|
#define STATIC_DISPATCH 265
|
|
#define DISPATCH 266
|
|
#define COND 267
|
|
#define LOOP 268
|
|
#define TYPCASE 269
|
|
#define BLOCK 270
|
|
#define LET 271
|
|
#define PLUS 272
|
|
#define SUB 273
|
|
#define MUL 274
|
|
#define DIVIDE 275
|
|
#define NEG 276
|
|
#define LT 277
|
|
#define EQ 278
|
|
#define LEQ 279
|
|
#define COMP 280
|
|
#define INT 281
|
|
#define STR 282
|
|
#define BOOL 283
|
|
#define NEW 284
|
|
#define ISVOID 285
|
|
#define NO_EXPR 286
|
|
#define OBJECT 287
|
|
#define NO_TYPE 288
|
|
#define STR_CONST 289
|
|
#define INT_CONST 290
|
|
#define ID 291
|
|
#define LINENO 292
|
|
|
|
|
|
|
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
typedef union YYSTYPE
|
|
#line 22 "ast.y"
|
|
{
|
|
int lineno;
|
|
Boolean boolean;
|
|
Symbol symbol;
|
|
Program program;
|
|
Class_ class_;
|
|
Classes classes;
|
|
Feature feature;
|
|
Features features;
|
|
Formal formal;
|
|
Formals formals;
|
|
Case case_;
|
|
Cases cases;
|
|
Expression expression;
|
|
Expressions expressions;
|
|
}
|
|
/* Line 1489 of yacc.c. */
|
|
#line 140 "ast.tab.h"
|
|
YYSTYPE;
|
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
#endif
|
|
|
|
extern YYSTYPE ast_yylval;
|
|
|
|
#endif
|