X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FGSS.java;h=7666ec2fccbec02265934bc2a595c25c2cc50c69;hp=db833b9d824af74ca76f5f4a2647de739b930b9a;hb=52e7a254d32940210e0efce25e622d6266fc7f37;hpb=24219bdf084b45273e869cd19382d1640b396566 diff --git a/src/edu/berkeley/sbp/GSS.java b/src/edu/berkeley/sbp/GSS.java index db833b9..7666ec2 100644 --- a/src/edu/berkeley/sbp/GSS.java +++ b/src/edu/berkeley/sbp/GSS.java @@ -18,9 +18,6 @@ class GSS { public GSS(Input input, Parser parser) { this.input = input; this.parser = parser;} public Input getInput() { return input; } - /* - HashSet finishedReductions = new HashSet(); - */ int numNewNodes = 0; int numOldNodes = 0; int viewPos = 0; @@ -44,7 +41,7 @@ class GSS { public void invoke(State st, StateNode pred, Forest f) { parser.spin(); - good |= next.newNode(f, null, pred, st, false); + good |= next.newNode(f, null, pred, st); } /** the token immediately after this phase */ @@ -61,7 +58,7 @@ class GSS { public Phase(State startState) throws ParseFailed, IOException { this(null, null); - newNode(null, null, null, startState, true); + newNode(null, null, null, startState); } public Phase(Phase prev, Forest forest) throws ParseFailed, IOException { this.location = input.getLocation(); @@ -134,7 +131,7 @@ class GSS { for(StateNode n : hash.values()) { if (token == null && n.state().isAccepting()) { if (finalResult==null) finalResult = new Forest.Many(); - for(Result r : n) + for(ResultNode r : n) finalResult.merge(r.getForest()); } if (token == null) continue; @@ -179,32 +176,32 @@ class GSS { performed.add(pos, reduction.provides()); Parser.Table.State state = (Parser.Table.State)pred.state().gotoSetNonTerminals.get(reduction); if (state!=null) - newNode(f, reduction, pred, state, reduction.numPops()<=0); + newNode(f, reduction, pred, state); } /** add a new node (merging with existing nodes if possible) * @param parent the parent of the new node * @param result the SPPF result corresponding to the new node * @param state the state that the new node is in - * @param fromEmptyReduction true iff this node is being created as a result of a reduction of length zero (see GRMLR paper) * @param start the earliest part of the input contributing to this node (used to make merging decisions) */ - private boolean newNode(Forest f, Pos reduction, StateNode pred, State state, boolean fromEmptyReduction) { + private boolean newNode(Forest f, Pos reduction, StateNode pred, State state) { StateNode p = pred==null ? null : hash.get(state, pred.phase()); if (p != null) { - p.addResult(f, reduction, pred); + p.addPred(f, reduction, pred); return !state.doomed(); } do { + // optimizations if (token != null && state.canShift(token)) break; if (state.isAccepting()) break; if (token==null) break; if (!state.canReduce(token)) return false; } while(false); - StateNode n = new StateNode(Phase.this, f, reduction, pred, state, fromEmptyReduction); // ALLOC + StateNode n = new StateNode(Phase.this, new ResultNode(f, reduction, pred), state); // ALLOC /** FIXME: this null-result can be used to notice bogus/dead states */ for(Object s : state.conjunctStates) - newNode(null, null, n, (State)s, fromEmptyReduction); + newNode(null, null, n, (State)s); return !n.state().doomed(); }