1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
//
// Pascal Tree Grammar that walks tree, building symtab
//
// Adapted from,
// Pascal User Manual And Report (Second Edition-1978)
// Kathleen Jensen - Niklaus Wirth
//
// By
//
// Hakki Dogusan dogusanh@tr-net.net.tr
//
// Then significantly enhanced by Piet Schoutteten
// with some guidance by Terence Parr. Piet added tree
// construction, and some tree walkers.
//
{
import java.util.*;
import java.io.*;
}
class SymtabPhase extends PascalTreeParserSuper;
options {
importVocab = Pascal;
ASTLabelType = "PascalAST";
}
{
Stack scopes = new Stack();
Stack usesScopes = new Stack();
//public static File thisUnit;
public File thisUnit;
}
program
: programHeading
block
{System.out.println(scopes.peek());}
;
programHeading
: #(PROGRAM IDENT identifierList)
{Scope root = new Scope(null);
scopes.push(root);}
| #(UNIT IDENT)
{
Scope root = new Scope(null); // create new scope
scopes.push(root); // enter new scope :)
root.addSymbol(new Unit(#IDENT.getText())); // create unit symbol entry
String tUnit = new String (#IDENT.getText());
tUnit = tUnit.concat(".sym");
thisUnit = new File (PascalParser.translateFilePath, tUnit);
}
;
block
: ( labelDeclarationPart
| constantDefinitionPart
| typeDefinitionPart
| variableDeclarationPart
| procedureAndFunctionDeclarationPart
| usesUnitsPart
| IMPLEMENTATION
{ System.out.println(scopes.peek());
//write symbol table and exit when currentFileName != translateFileName
if (PascalParser.currentFileName.compareTo(PascalParser.translateFileName) != 0) {
try{
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(thisUnit));
oos.writeObject(scopes);
oos.close();
}
catch (IOException e) {
System.err.println("IOexception: "+e); }
_t = null;
throw new RecognitionException();
}
}
)*
compoundStatement
;
usesUnitsPart
{
String usesFile, usesSymtab;
String oldUsesFile;
File f, symFile;
Object readSymtab = new Stack();
}
: #(USES usesList:identifierList)
// walk identifierList and make symbol table
{
usesList = (PascalAST) usesList.getFirstChild();
oldUsesFile = PascalParser.currentFileName;
while (usesList !=null) {
// make symboltable for usesFile
usesFile = usesList.getText();
usesFile = usesFile.concat(".pas");
usesSymtab = usesList.getText();
usesSymtab = usesSymtab.concat(".sym");
f = new File(PascalParser.translateFilePath,usesFile);
symFile = new File(PascalParser.translateFilePath,usesSymtab);
// we have to build the symbol table when ...
if (( !(symFile.exists() ) )
// this .sym file (usesSymtyb) does not exist or ...
|| ((f.lastModified()) > (symFile.lastModified()) ) ){
// the date of this .sym file (usesSymtyb) is older than the .pas file (usesFile)
try {
PascalParser.parseFile(f.getName(),new FileInputStream(f));
}
catch (Exception e) {
System.err.println("parser exception: "+e);
e.printStackTrace(); // so we can get stack trace
}
}
// read serialized symbol table and add to symbol table "usesScopes"
File symTab = new File (PascalParser.translateFilePath , usesSymtab);
try {
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(symTab));
readSymtab = ois.readObject();
ois.close();
}
catch (ClassNotFoundException cnfe) {
System.err.println("parser exception: "+cnfe);
cnfe.printStackTrace(); // so we can get stack trace
}
catch (FileNotFoundException e) {
System.err.println("parser exception: "+e);
e.printStackTrace(); // so we can get stack trace
}
catch (IOException e) {
System.err.println("parser exception: "+e);
e.printStackTrace(); // so we can get stack trace
}
Stack symTabToPop = (Stack) readSymtab;
// add uses symbol table "readSymtab" to symboltable "usesScopes"
while (!(symTabToPop.empty())) {
usesScopes.push(symTabToPop.pop());
}
usesList = (PascalAST) usesList.getNextSibling();
}
PascalParser.currentFileName = oldUsesFile;
}
;
constantDefinition
{
Constant c = null;
}
: #(r:EQUAL IDENT c=constant)
{
if ( c!=null ) {
Scope sc = (Scope)scopes.peek();
c.setName(#IDENT.getText());
sc.addSymbol(c);
r.symbol = c; // AST def root points to symbol table entry now
}
}
;
constant returns [Constant c=null]
: NUM_INT
{c = new IntegerConstant(#NUM_INT.getText());}
| NUM_REAL
{c = new RealConstant(#NUM_REAL.getText());}
| #( PLUS
( NUM_INT
{c = new IntegerConstant(#NUM_INT.getText());}
| NUM_REAL
{c = new RealConstant(#NUM_REAL.getText());}
| IDENT
)
)
| #( MINUS
( NUM_INT
{c = new IntegerConstant(#NUM_INT.getText());}
| NUM_REAL
{c = new RealConstant(#NUM_REAL.getText());}
| IDENT
)
)
| IDENT
| STRING_LITERAL
| #(CHR (NUM_INT|NUM_REAL))
;
typeDefinition
{
TypeSpecifier t=null;
}
: #(TYPEDECL IDENT
( type
| #(r:FUNCTION (formalParameterList)? t=resultType)
{
if ( t!=null ) {r.symbol = t;}
}
| #(PROCEDURE (formalParameterList)?)
)
)
;
type returns [TypeSpecifier ts=null]
: #(SCALARTYPE identifierList)
| #(DOTDOT constant constant)
| ts=typeIdentifier
| structuredType
| #(POINTER typeIdentifier)
;
typeIdentifier returns [TypeSpecifier ts=null]
: IDENT // lookup and return type spec
| CHAR
| BOOLEAN
| INTEGER {ts=PascalParser.symbolTable.getPredefinedType("integer");}
| REAL {ts=PascalParser.symbolTable.getPredefinedType("real");}
| #( STRING
( IDENT
| NUM_INT
| NUM_REAL
|
)
)
;
variableDeclaration
{
Vector ids=null;
TypeSpecifier t=null;
}
: #(r:VARDECL ids=identifierList t=type)
{
// walk list of identifiers, creating variable syms and setting types
if ( t!=null ) {
Scope sc = (Scope)scopes.peek();
for (int i=0; ids!=null && i<ids.size(); i++) {
String id = (String)ids.elementAt(i);
Variable v = new Variable(id,t);
sc.addSymbol(v);
r.symbol = t; // AST def root points to symbol table entry now
}
}
}
;
parameterGroup
{
Vector ids=null;
TypeSpecifier t=null;
}
: #(r:ARGDECL ids=identifierList t=typeIdentifier)
{
// walk list of identifiers, creating variable syms and setting types
if ( t!=null ) {
Scope sc = (Scope)scopes.peek();
for (int i=0; ids!=null && i<ids.size(); i++) {
String id = (String)ids.elementAt(i);
Variable v = new Variable(id,t);
sc.addSymbol(v);
r.symbol = t; // AST def root points to symbol table entry now
}
}
}
;
identifierList returns [Vector ids=new Vector()]
: #( IDLIST ( IDENT {ids.addElement(#IDENT.getText());} )+ )
;
functionDeclaration
{
TypeSpecifier t=null;
}
: #(r:FUNCTION IDENT (formalParameterList)? t=resultType block)
{
if ( t!=null ) {r.symbol = t;}
}
;
resultType returns [TypeSpecifier ts=null]
: ts=typeIdentifier
;
|