X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FGSS.java;h=86c93b2170b0f37544741e8d91a051c31441da05;hb=8af721961520fe30057c3e0a0c7b68ded356e5c2;hp=4f8b4a9802b9b5fcdbde5fbd4bc3869fddf3cdd8;hpb=728fe06ea2e91634cfeae617b03dc42d35dc2f23;p=sbp.git diff --git a/src/edu/berkeley/sbp/GSS.java b/src/edu/berkeley/sbp/GSS.java index 4f8b4a9..86c93b2 100644 --- a/src/edu/berkeley/sbp/GSS.java +++ b/src/edu/berkeley/sbp/GSS.java @@ -125,7 +125,7 @@ class GSS { p.holder.merge(pending); if (p.parents().contains(parent)) return true; p.parents().add(parent, true); - if (p!=parent && !fromEmptyReduction && reducing) p.queueReductions(parent); + if (p!=parent && !fromEmptyReduction && reducing) p.performReductions(parent); return true; } private boolean newNode3(Node parent, Forest pending, State state, boolean fromEmptyReduction) { @@ -142,8 +142,8 @@ class GSS { Node n = new Node(parent, pending, state); // ALLOC if (reducing) { - n.queueEmptyReductions(); - if (!fromEmptyReduction) n.queueReductions(parent); + n.performEmptyReductions(); + if (!fromEmptyReduction) n.performReductions(parent); } return true; } @@ -183,13 +183,13 @@ class GSS { int num = hash.size(); for(int i=0; i parents() { return this; } - public void queueReductions() { + public void performReductions() { if (allqueued) return; allqueued = true; state.invokeReductions(token, this, this, null); } - public void queueReductions(Node n2) { - if (!allqueued) { queueReductions(); return; } - state.invokeReductions(token, this, this, n2); + public void performReductions(Node n2) { + if (!allqueued) performReductions(); + else state.invokeReductions(token, this, this, n2); } public final void invoke(Reduction r, Node n, Node n2) { - if (n==null) { - if (r.position.pos==0) r.reduce(this); - } else if (r.position.pos==0) return; - else if (n2==null) r.reduce(n); - else r.reduce(n, n2); + if (n==null || n2==null || r.position.pos==0) { + if (r.position.pos==0) { + if (n==null) n = this; + else return; + } + if (n==null) return; + Forest[] holder = new Forest[r.position.pos]; + if (r.position.pos==0) r.finish(n, r.zero(), n.phase(), holder); + else r.reduce(n, r.position.pos-1, n.phase(), holder); + } else { + Forest[] holder = new Forest[r.position.pos]; + if (r.position.pos<=0) throw new Error("called wrong form of reduce()"); + int pos = r.position.pos-1; + Forest old = holder[pos]; + holder[pos] = n.pending(); + if (pos==0) { + System.arraycopy(holder, 0, r.position.holder, 0, holder.length); + Forest rex = r.position.rewrite(n.phase().getLocation()); + r.finish(n2, rex, n.phase(), holder); + } else { + r.reduce(n2, pos-1, n.phase(), holder); + } + holder[pos] = old; + } } - public void queueEmptyReductions() { state.invokeReductions(token, this, null, null); } + public void performEmptyReductions() { state.invokeReductions(token, this, null, null); } - public boolean dead = false; - public boolean redo = false; private Node(Node parent, Forest pending, State state) { this.state = state; this.holder().merge(pending);