X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FGSS.java;h=16725f1911d4d3e79d043929a6f96f2fbe658036;hp=3c1174eb697df0ddd3aa5160b8435021112b6700;hb=f33c05adc5aa3dd324c5352cdbd6f4b55359acad;hpb=e6144fba714756c987f2e7c99b9cca4cd54f7583 diff --git a/src/edu/berkeley/sbp/GSS.java b/src/edu/berkeley/sbp/GSS.java index 3c1174e..16725f1 100644 --- a/src/edu/berkeley/sbp/GSS.java +++ b/src/edu/berkeley/sbp/GSS.java @@ -1,7 +1,5 @@ package edu.berkeley.sbp; import edu.berkeley.sbp.*; -import edu.berkeley.sbp.*; -import edu.berkeley.sbp.*; import edu.berkeley.sbp.util.*; import java.io.*; import java.util.*; @@ -30,7 +28,7 @@ class GSS { private Phase.Node[] reducing_list = null; /** corresponds to a positions between tokens the input stream; same as Tomita's U_i's */ - public class Phase { + public class Phase implements Invokable { /** the token immediately after this phase */ public final Token token; @@ -75,32 +73,30 @@ class GSS { * @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) */ - public void newNode(Node parent, Forest pending, Parser.Table.State state, boolean fromEmptyReduction, Phase start) { - Node p = hash.get(code(state, start)); - if (p != null) newNode2(p, parent, pending, state, fromEmptyReduction, start); - else newNode3(parent, pending, state, fromEmptyReduction, start); + public void newNode(Node parent, Forest pending, Parser.Table.State state, boolean fromEmptyReduction) { + Node p = hash.get(code(state, parent==null?null:parent.phase())); + if (p != null) newNode2(p, parent, pending, state, fromEmptyReduction); + else newNode3(parent, pending, state, fromEmptyReduction); } - private void newNode2(Node p, Node parent, Forest pending, Parser.Table.State state, boolean fromEmptyReduction, Phase start) { + private void newNode2(Node p, Node parent, Forest pending, Parser.Table.State state, boolean fromEmptyReduction) { p.holder.merge(pending); if (p.parents().contains(parent)) return; - p.addParent(parent, fromEmptyReduction); + p.parents().add(parent); + if (p!=parent && !fromEmptyReduction) p.queueReductions(parent); } - private void newNode3(Node parent, Forest pending, Parser.Table.State state, boolean fromEmptyReduction, Phase start) { + private void newNode3(Node parent, Forest pending, Parser.Table.State state, boolean fromEmptyReduction) { do { if (token != null && state.canShift(token)) break; if (state.isAccepting()) break; if (token==null) break; - int count = 0; - Parser.Table.Reduction r = null; - for(Parser.Table.Reduction red : token==null ? state.getEofReductions() : state.getReductions(token)) { r = red; count++; } - if (count==0) return; // BEWARE! this optimization is suspected to cause really nasty heisenbugs + if (!state.canReduce(token)) return; //if (count > 1) break; //if (r.numPop == 0) break; //r.reduce(pending, parent, null, Phase.this, null); //return; } while(false); - Node n = new Node(parent, pending, state, start); // ALLOC + Node n = new Node(parent, pending, state); // ALLOC n.queueEmptyReductions(); if (!fromEmptyReduction) n.queueReductions(parent); } @@ -122,13 +118,18 @@ class GSS { for(int i=0; inext */ public void shift(Phase next, Forest result) { + this.next = next; closed = true; Forest res = null; boolean ok = false; @@ -142,11 +143,14 @@ class GSS { } if (!n.holder.valid()) continue; if (token == null) continue; + n.state.invokeShifts(token, this, result, n); + /* for(Parser.Table.State st : n.state.getShifts(token)) { if (res == null) res = result; next.newNode(n, res, st, true, this); ok = true; } + */ } if (!ok && token != null) { @@ -177,89 +181,52 @@ class GSS { // GSS Nodes ////////////////////////////////////////////////////////////////////////////// /** a node in the GSS */ - public final class Node extends FastSet { - - public void addParent(Node parent, boolean fromEmptyReduction) { - parents().add(parent, true); - if (this!=parent && !fromEmptyReduction) queueReductions(parent); - } + public final class Node extends FastSet implements Invokable { private Forest.Ref holder = null; private boolean allqueued = false; - private HashMap cache = null; - - /** the set of nodes to which there is an edge starting at this node */ - //public final FastSet parents = new FastSet(); /* ALLOC */ - /** what state this node is in */ public final Parser.Table.State state; /** which Phase this Node belongs to (node that Node is also a non-static inner class of Phase) */ public Phase phase() { return Phase.this; } - public HashMap cache() { - return cache==null ? (cache = new HashMap()) : cache; - } public Forest.Ref holder() { return holder==null ? (holder = new Forest.Ref()) : holder; } public Forest pending() { return Phase.this.closed ? holder().resolve() : holder; } public FastSet parents() { return this; } - /** FIXME */ public void queueReductions() { if (allqueued) return; allqueued = true; int where = parents().size(); - for(Parser.Table.Reduction r : token==null ? state.getEofReductions() : state.getReductions(token)) - if (r.numPop >= 1) - r.reduce(this, null, null); - for(int i=0; i