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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
|
/*-------------------------------------------------------------------------
ParserGen.java -- Generation of the Recursive Descent Parser
Compiler Generator Coco/R,
Copyright (c) 1990, 2004 Hanspeter Moessenboeck, University of Linz
extended by M. Loeberbauer & A. Woess, Univ. of Linz
ported from C# to Java by Wolfgang Ahorner
with improvements by Pat Terry, Rhodes University
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.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
As an exception, it is allowed to write an extension of Coco/R that is
used as a plugin in non-free software.
If not otherwise stated, any source code generated by Coco/R (other than
Coco/R itself) does not fall under the GNU General Public License.
------------------------------------------------------------------------*/
package Coco;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.Reader; /* pdt */
import java.io.BufferedReader; /* pdt */
import java.io.FileReader; /* pdt */
import java.io.StringWriter;
import java.io.PrintWriter; /* pdt */
import java.io.BufferedWriter; /* pdt */
import java.io.FileWriter; /* pdt */
import java.util.ArrayList;
import java.util.BitSet;
public class ParserGen {
static final int maxTerm = 3; // sets of size < maxTerm are enumerated
static final char CR = '\r';
static final char LF = '\n';
static final int EOF = -1;
static final String ls = System.getProperty("line.separator");
static final int tErr = 0; // error codes
static final int altErr = 1;
static final int syncErr = 2;
public Position usingPos; // "using" definitions from the attributed grammar
int errorNr; // highest parser error number
Symbol curSy; // symbol whose production is currently generated
private Reader fram; // parser frame input /* pdt */
protected PrintWriter gen; // generated parser file /* pdt */
StringWriter err; // generated parser error messages
String srcName; // name of attributed grammar file
String srcDir; // directory of attributed grammar file
ArrayList symSet = new ArrayList();
Tab tab; // other Coco objects
Trace trace;
Errors errors;
Buffer buffer;
// --------------------------------------------------------------------------
void Indent (int n) {
for (int i = 1; i <= n; i++) gen.print('\t');
}
boolean Overlaps (BitSet s1, BitSet s2) {
int len = s1.length();
for (int i = 0; i < len; ++i) {
if (s1.get(i) && s2.get(i)) {
return true;
}
}
return false;
}
// AW: use a switch if more than 5 alternatives and none starts with a resolver
boolean UseSwitch (Node p) {
BitSet s1, s2;
if (p.typ != Node.alt) return false;
int nAlts = 0;
s1 = new BitSet(tab.terminals.size());
while (p != null) {
s2 = tab.Expected0(p.sub, curSy);
// must not optimize with switch statement, if there are ll1 warnings
if (Overlaps(s1, s2)) { return false; }
s1.or(s2);
++nAlts;
// must not optimize with switch-statement, if alt uses a resolver expression
if (p.sub.typ == Node.rslv) return false;
p = p.down;
}
return nAlts > 5;
}
void CopySourcePart (Position pos, int indent) {
// Copy text described by pos from atg to gen
int ch, i;
if (pos != null) {
buffer.setPos(pos.beg); ch = buffer.Read();
Indent(indent);
done: while (buffer.getPos() <= pos.end) {
while (ch == CR || ch == LF) { // eol is either CR or CRLF or LF
gen.println(); Indent(indent);
if (ch == CR) { ch = buffer.Read(); } // skip CR
if (ch == LF) { ch = buffer.Read(); } // skip LF
for (i = 1; i <= pos.col && ch <= ' '; i++) {
// skip blanks at beginning of line
ch = buffer.Read();
}
if (buffer.getPos() > pos.end) break done;
}
gen.print((char)ch);
ch = buffer.Read();
}
if (indent > 0) gen.println();
}
}
void GenErrorMsg (int errTyp, Symbol sym) {
errorNr++;
err.write(ls + "\t\t\tcase " + errorNr + ": s = \"");
switch (errTyp) {
case tErr:
if (sym.name.charAt(0) == '"') err.write(tab.Escape(sym.name) + " expected");
else err.write(sym.name + " expected");
break;
case altErr: err.write("invalid " + sym.name); break;
case syncErr: err.write("this symbol not expected in " + sym.name); break;
}
err.write("\"; break;");
}
int NewCondSet (BitSet s) {
for (int i = 1; i < symSet.size(); i++) // skip symSet[0] (reserved for union of SYNC sets)
if (Sets.Equals(s, (BitSet)symSet.get(i))) return i;
symSet.add(s.clone());
return symSet.size() - 1;
}
void GenCond (BitSet s, Node p) {
if (p.typ == Node.rslv) CopySourcePart(p.pos, 0);
else {
int n = Sets.Elements(s);
if (n == 0) gen.print("false"); // happens if an ANY set matches no symbol
else if (n <= maxTerm) {
for (int i = 0; i < tab.terminals.size(); i++) {
Symbol sym = (Symbol)tab.terminals.get(i);
if (s.get(sym.n)) {
gen.print("la.kind == " + sym.n);
--n;
if (n > 0) gen.print(" || ");
}
}
} else
gen.print("StartOf(" + NewCondSet(s) + ")");
}
}
void PutCaseLabels (BitSet s) {
for (int i = 0; i < tab.terminals.size(); i++) {
Symbol sym = (Symbol)tab.terminals.get(i);
if (s.get(sym.n)) gen.print("case " + sym.n + ": ");
}
}
void GenCode (Node p, int indent, BitSet isChecked) {
Node p2;
BitSet s1, s2;
while (p != null) {
switch (p.typ) {
case Node.nt: {
Indent(indent);
if (p.retVar != null) gen.print(p.retVar + " = ");
gen.print(p.sym.name + "(");
CopySourcePart(p.pos, 0);
gen.println(");");
break;
}
case Node.t: {
Indent(indent);
// assert: if isChecked[p.sym.n] is true, then isChecked contains only p.sym.n
if (isChecked.get(p.sym.n)) gen.println("Get();");
else gen.println("Expect(" + p.sym.n + ");");
break;
}
case Node.wt: {
Indent(indent);
s1 = tab.Expected(p.next, curSy);
s1.or(tab.allSyncSets);
gen.println("ExpectWeak(" + p.sym.n + ", " + NewCondSet(s1) + ");");
break;
}
case Node.any: {
Indent(indent);
int acc = Sets.Elements(p.set);
if (tab.terminals.size() == (acc + 1) || (acc > 0 && Sets.Equals(p.set, isChecked))) {
// either this ANY accepts any terminal (the + 1 = end of file), or exactly what's allowed here
gen.println("Get();");
} else {
GenErrorMsg(altErr, curSy);
if (acc > 0) {
gen.print("if ("); GenCond(p.set, p); gen.println(") Get(); else SynErr(" + errorNr + ");");
} else gen.println("SynErr(" + errorNr + "); // ANY node that matches no symbol");
}
break;
}
case Node.eps: break; // nothing
case Node.rslv: break; // nothing
case Node.sem: {
CopySourcePart(p.pos, indent);
break;
}
case Node.sync: {
Indent(indent);
GenErrorMsg(syncErr, curSy);
s1 = (BitSet)p.set.clone();
gen.print("while (!("); GenCond(s1,p); gen.print(")) {");
gen.print("SynErr(" + errorNr + "); Get();"); gen.println("}");
break;
}
case Node.alt: {
s1 = tab.First(p);
boolean equal = Sets.Equals(s1, isChecked);
boolean useSwitch = UseSwitch(p);
if (useSwitch) { Indent(indent); gen.println("switch (la.kind) {"); }
p2 = p;
while (p2 != null) {
s1 = tab.Expected(p2.sub, curSy);
Indent(indent);
if (useSwitch) {
PutCaseLabels(s1); gen.println("{");
} else if (p2 == p) {
gen.print("if ("); GenCond(s1, p2.sub); gen.println(") {");
} else if (p2.down == null && equal) { gen.println("} else {");
} else {
gen.print("} else if ("); GenCond(s1, p2.sub); gen.println(") {");
}
GenCode(p2.sub, indent + 1, s1);
if (useSwitch) {
Indent(indent); gen.println("\tbreak;");
Indent(indent); gen.println("}");
}
p2 = p2.down;
}
Indent(indent);
if (equal) {
gen.println("}");
} else {
GenErrorMsg(altErr, curSy);
if (useSwitch) {
gen.println("default: SynErr(" + errorNr + "); break;");
Indent(indent); gen.println("}");
} else {
gen.print("} "); gen.println("else SynErr(" + errorNr + ");");
}
}
break;
}
case Node.iter: {
Indent(indent);
p2 = p.sub;
gen.print("while (");
if (p2.typ == Node.wt) {
s1 = tab.Expected(p2.next, curSy);
s2 = tab.Expected(p.next, curSy);
gen.print("WeakSeparator(" + p2.sym.n + "," + NewCondSet(s1) + ","
+ NewCondSet(s2) + ") ");
s1 = new BitSet(tab.terminals.size()); // for inner structure
if (p2.up || p2.next == null) p2 = null; else p2 = p2.next;
} else {
s1 = tab.First(p2);
GenCond(s1, p2);
}
gen.println(") {");
GenCode(p2, indent + 1, s1);
Indent(indent); gen.println("}");
break;
}
case Node.opt:
s1 = tab.First(p.sub);
Indent(indent);
gen.print("if ("); GenCond(s1, p.sub); gen.println(") {");
GenCode(p.sub, indent + 1, s1);
Indent(indent); gen.println("}");
break;
}
if (p.typ != Node.eps && p.typ != Node.sem && p.typ != Node.sync)
isChecked.set(0, isChecked.size(), false); // = new BitArray(Symbol.terminals.Count);
if (p.up) break;
p = p.next;
}
}
void GenTokens() {
//foreach (Symbol sym in Symbol.terminals) {
for (int i = 0; i < tab.terminals.size(); i++) {
Symbol sym = (Symbol)tab.terminals.get(i);
if (Character.isLetter(sym.name.charAt(0)))
gen.println("\tpublic static final int _" + sym.name + " = " + sym.n + ";");
}
}
void GenPragmas() {
for (int i = 0; i < tab.pragmas.size(); i++) {
Symbol sym = (Symbol)tab.pragmas.get(i);
gen.println("\tpublic static final int _" + sym.name + " = " + sym.n + ";");
}
}
void GenCodePragmas() {
//foreach (Symbol sym in Symbol.pragmas) {
for (int i = 0; i < tab.pragmas.size(); i++) {
Symbol sym = (Symbol)tab.pragmas.get(i);
gen.println();
gen.println("\t\t\tif (la.kind == " + sym.n + ") {");
CopySourcePart(sym.semPos, 4);
gen.print ("\t\t\t}");
}
}
void GenProductions() {
for (int i = 0; i < tab.nonterminals.size(); i++) {
Symbol sym = (Symbol)tab.nonterminals.get(i);
curSy = sym;
gen.print("\t");
if (sym.retType == null) gen.print("void "); else gen.print(sym.retType + " ");
gen.print(sym.name + "(");
CopySourcePart(sym.attrPos, 0);
gen.println(") {");
if (sym.retVar != null) gen.println("\t\t" + sym.retType + " " + sym.retVar + ";");
CopySourcePart(sym.semPos, 2);
GenCode(sym.graph, 2, new BitSet(tab.terminals.size()));
if (sym.retVar != null) gen.println("\t\treturn " + sym.retVar + ";");
gen.println("\t}"); gen.println();
}
}
void InitSets() {
for (int i = 0; i < symSet.size(); i++) {
BitSet s = (BitSet)symSet.get(i);
gen.print("\t\t{");
int j = 0;
//foreach (Symbol sym in Symbol.terminals) {
for (int k = 0; k < tab.terminals.size(); k++) {
Symbol sym = (Symbol)tab.terminals.get(k);
if (s.get(sym.n)) gen.print("T,"); else gen.print("x,");
++j;
if (j%4 == 0) gen.print(" ");
}
if (i == symSet.size()-1) gen.println("x}"); else gen.println("x},");
}
}
public void WriteParser () {
Generator g = new Generator(tab);
int oldPos = buffer.getPos(); // Buffer.pos is modified by CopySourcePart
symSet.add(tab.allSyncSets);
fram = g.OpenFrame("Parser.frame");
gen = g.OpenGen("Parser.java");
err = new StringWriter();
//foreach (Symbol sym in Symbol.terminals)
for (int i = 0; i < tab.terminals.size(); i++) {
Symbol sym = (Symbol)tab.terminals.get(i);
GenErrorMsg(tErr, sym);
}
OnWriteParserInitializationDone();
g.GenCopyright();
g.SkipFramePart("-->begin");
if (tab.nsName != null && tab.nsName.length() > 0) {
gen.print("package ");
gen.print(tab.nsName);
gen.print(";");
}
if (usingPos != null) {
gen.println(); gen.println();
CopySourcePart(usingPos, 0);
}
g.CopyFramePart("-->constants");
GenTokens();
gen.println("\tpublic static final int maxT = " + (tab.terminals.size()-1) + ";");
GenPragmas();
g.CopyFramePart("-->declarations"); CopySourcePart(tab.semDeclPos, 0);
g.CopyFramePart("-->pragmas"); GenCodePragmas();
g.CopyFramePart("-->productions"); GenProductions();
g.CopyFramePart("-->parseRoot"); gen.println("\t\t" + tab.gramSy.name + "();"); if (tab.checkEOF) gen.println("\t\tExpect(0);");
g.CopyFramePart("-->initialization"); InitSets();
g.CopyFramePart("-->errors"); gen.print(err.toString());
g.CopyFramePart(null);
gen.close();
buffer.setPos(oldPos);
}
// Override this method if you need to replace anything before the parser is written.
// This can be used by plugins to catch the generated parser, e.g., this is used by the
// Eclipse Plugin of the Institue for System Software.
protected void OnWriteParserInitializationDone() {
// nothing to do
}
public void WriteStatistics () {
trace.WriteLine();
trace.WriteLine(tab.terminals.size() + " terminals");
trace.WriteLine(tab.terminals.size() + tab.pragmas.size() +
tab.nonterminals.size() + " symbols");
trace.WriteLine(tab.nodes.size() + " nodes");
trace.WriteLine(symSet.size() + " sets");
}
public ParserGen (Parser parser) {
tab = parser.tab;
errors = parser.errors;
trace = parser.trace;
buffer = parser.scanner.buffer;
errorNr = -1;
usingPos = null;
}
}
|