X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FWalk.java;h=e2ac662a0e18da8aefd37b46087809e60c7cf875;hp=cd991e889028d64f1f12c28b72635837f7824bbf;hb=a2008a0c57702f49ed7f8be682e4e29484fded38;hpb=225993309e6183afa9a88fc13d39df56be54b992 diff --git a/src/edu/berkeley/sbp/Walk.java b/src/edu/berkeley/sbp/Walk.java index cd991e8..e2ac662 100644 --- a/src/edu/berkeley/sbp/Walk.java +++ b/src/edu/berkeley/sbp/Walk.java @@ -1,3 +1,5 @@ +// Copyright 2006 all rights reserved; see LICENSE file for BSD-style license + package edu.berkeley.sbp; import edu.berkeley.sbp.*; import edu.berkeley.sbp.util.*; @@ -7,16 +9,16 @@ import java.util.*; import java.lang.reflect.*; import java.lang.ref.*; -/** a traversal of the grammar performed by mapping from Elements to a lattice and computing the resulting LUB */ +/** a traversal of the grammar performed by mapping from SequenceOrElements to a lattice and computing the resulting LUB */ abstract class Walk { - protected HashSet acc = new HashSet(); - protected abstract T bottom(Element e); + protected HashSet acc = new HashSet(); + protected abstract T bottom(SequenceOrElement e); protected final Cache c; public Walk() { this(null); } public Walk(Cache c) { this.c = c; } - public T sequence(Sequence s) { + public T walkSequence(Sequence s) { T ret = bottom(s); for(Position p = s.firstp(); p!=null && !p.isLast(); p = p.next()) ret = sequence(s, ret, walk(p.element())); @@ -26,34 +28,84 @@ abstract class Walk { public T walkAtom(Atom r) { return walk(r); } public T union(Union u, T a, T b) { return bottom(u); } public T sequence(Sequence s, T a, T b) { return bottom(s); } - protected T walk(Element e) { + protected T walk(SequenceOrElement e) { if (acc.contains(e)) return bottom(e); acc.add(e); return walk2(e); } - protected T walk2(Element e) { + protected T walk2(SequenceOrElement e) { if (e instanceof Atom) return walkAtom((Atom)e); - else if (e instanceof Sequence) return sequence((Sequence)e); + else if (e instanceof Sequence) return walkSequence((Sequence)e); else if (e instanceof Union) { T ret = bottom(e); - for(Sequence s : (Union)e) ret = union((Union)e, ret, walk(s)); + for(Sequence s : (Union)e) + ret = union((Union)e, ret, walk(s)); return ret; } else { throw new Error("unknown element of class " + e.getClass().getName() + ": " + e); } } - static class YieldSet extends Walk> { - private final Element e; - public final HashSet walk() { return walk(e); } - public YieldSet(Element e, Cache c) { super(c); this.e = e; } - public HashSet bottom(Element e) { return acc; } - public HashSet sequence(Sequence seq) { return bottom(seq); } - public HashSet walkAtom(Atom r) { + static class YieldSet extends Walk> { + private final SequenceOrElement e; + public final HashSet walk() { return walk(e); } + public YieldSet(SequenceOrElement e, Cache c) { super(c); this.e = e; } + public HashSet bottom(SequenceOrElement e) { return acc; } + public HashSet walkSequence(Sequence seq) { return bottom(seq); } + public HashSet walkAtom(Atom r) { c.atoms.put(e, c.atoms.get(e)==null ? r : c.atoms.get(e).union(r)); return super.walkAtom(r); } + protected HashSet walk2(SequenceOrElement e) { + HashSet ret = super.walk2(e); + if (e instanceof Union) + for(Sequence s : (Union)e) { + for(Sequence ss : s.needs()) ret = union((Union)e, ret, walk(ss)); + for(Sequence ss : s.hates()) ret = union((Union)e, ret, walk(ss)); + } + return ret; + } + } + + static class YieldSet2 extends Walk> { + private final SequenceOrElement e; + public final HashSet walk() { return walk(e); } + public YieldSet2(SequenceOrElement e, Cache c) { super(c); this.e = e; } + public HashSet bottom(SequenceOrElement e) { return acc; } + public HashSet walkSequence(Sequence seq) { return bottom(seq); } + public HashSet walkAtom(Atom r) { + c.atoms.put(e, c.atoms.get(e)==null ? r : c.atoms.get(e).union(r)); + return super.walkAtom(r); + } + } + + static class EquivalentTo extends Walk> { + private final Sequence s; + private final HashSet eq = new HashSet(); + public final HashSet walk() { return walk(s); } + public EquivalentTo(Sequence e, Cache c) { + super(c); this.s = e; + } + public HashSet bottom(SequenceOrElement e) { return eq; } + public HashSet walkSequence(Sequence seq) { + eq.add(seq); + Position p = seq.firstp(); + for(; !p.isLast(); p = p.next()) { + if (!p.isLast() && isRightNullable(p.next())) + walk(p.element()); + if (!c.possiblyEpsilon(p.element())) break; + } + return eq; + } + public HashSet walkAtom(Atom r) { + return eq; + } + private boolean isRightNullable(Position p) { + if (p.isLast()) return true; + if (!c.possiblyEpsilon(p.element())) return false; + return isRightNullable(p.next()); + } } @@ -63,9 +115,9 @@ abstract class Walk { public Boolean walkAtom(Atom r) { return false; } public Boolean sequence(Sequence s, Boolean a, Boolean b) { return new Boolean(a && b); } public Boolean union(Union u, Boolean a, Boolean b) { return new Boolean(a || b); } - public Boolean bottom(Element e) { return (e instanceof Union) ? false : true; } - private HashMap hm = new HashMap(); - protected Boolean walk(Element e) { + public Boolean bottom(SequenceOrElement e) { return (e instanceof Union) ? false : true; } + private HashMap hm = new HashMap(); + protected Boolean walk(SequenceOrElement e) { if (hm.get(e) != null) return hm.get(e); hm.put(e, false); Boolean ret = walk2(e); @@ -74,6 +126,34 @@ abstract class Walk { } } + static class EpsilonFollowSet extends Walk { + Atom all; + Atom empty; + public EpsilonFollowSet(Atom a, Atom empty, Cache c) { + super(c); + this.all = all; + this.empty = empty; + } + public Atom walkAtom(Atom r) { return all; } + public Atom walkSequence(Sequence s) { + if (s.follow==null) return all; + return s.follow; + } + public Atom sequence(Sequence s, Atom a, Atom b) { + throw new RuntimeException(); + } + public Atom union(Union u, Atom a, Atom b) { + /* + if (a==null) return b; + if (b==null) return a; + */ + if (a==null || b==null) return all; + return (Atom)a.union(b); + } + public Atom bottom(SequenceOrElement e) { + return (e instanceof Union) ? empty : all; + } + } // Input-Set ////////////////////////////////////////////////////////////////////////////// @@ -81,13 +161,14 @@ abstract class Walk { public Topology cs; public WalkTokenSet(Topology cs) { this.cs = cs; } public WalkTokenSet(Topology cs, Cache c) { super(c); this.cs = cs; } - public Topology bottom(Element e) { return cs; } - public Topology walkAtom(Atom r) { cs = cs.union(r); return cs; } + public Topology bottom(SequenceOrElement e) { return cs; } + public Topology walkAtom(Atom r) { cs = cs.union(r.getTokenTopology()); return cs; } } + // feature: intersect with "first" set of all positive conjuncts static class First extends WalkTokenSet { public First(Topology cs, Walk.Cache cache) { super(cs, cache); } - public Topology sequence(Sequence seq) { + public Topology walkSequence(Sequence seq) { for(Position p = seq.firstp(); p!=null && !p.isLast(); p = p.next()) { walk(p.element()); if (!c.possiblyEpsilon(p.element())) break; @@ -97,15 +178,16 @@ abstract class Walk { } static class Follow extends WalkTokenSet { - private final Element me; - private final HashSet all; + private final SequenceOrElement me; + private final HashSet all; private boolean eof = false; public boolean includesEof() { return eof; } - public Follow(Topology cs, Element me, HashSet all, Cache c) { super(cs, c); this.me = me; this.all = all; } - public Topology bottom(Element e) { return cs; } - public Topology sequence(Sequence seq) { return cs; } - public Topology walkAtom(Atom r) { return walk((Element)r); } - public Topology walk(Element e) { + public Follow(Topology cs, SequenceOrElement me, HashSet all, Cache c) { + super(cs, c); this.me = me; this.all = all; } + public Topology bottom(SequenceOrElement e) { return cs; } + public Topology walkSequence(Sequence seq) { return cs; } + public Topology walkAtom(Atom r) { return walk((SequenceOrElement)r); } + public Topology walk(SequenceOrElement e) { if (acc.contains(e)) return bottom(e); acc.add(e); @@ -123,7 +205,7 @@ abstract class Walk { eof = c.eof.get(e) != null && c.eof.get(e).booleanValue(); cs = cso.empty(); - for(Element x : all) { + for(SequenceOrElement x : all) { boolean matched = false; if (!(x instanceof Sequence)) continue; Sequence a = (Sequence)x; @@ -149,7 +231,7 @@ abstract class Walk { if (e instanceof Sequence) { Sequence s = (Sequence)e; - if (s.follow() != null) cs = cs.intersect(s.follow()); + if (s.follow != null) cs = cs.intersect(s.follow.getTokenTopology()); } if (c != null && e==me) { @@ -167,15 +249,16 @@ abstract class Walk { } static class Cache { - public final HashMap possiblyEpsilon = new HashMap(); - public HashMap eof = new HashMap(); - public HashMap follow = new HashMap(); - public HashMapBag ys = new HashMapBag(); - public HashMap atoms = new HashMap(); - public Topology first(Element e, Topology empty) { + public final HashMap possiblyEpsilon = new HashMap(); + public HashMap eof = new HashMap(); + public HashMap follow = new HashMap(); + public HashMapBag ys = new HashMapBag(); + public HashMapBag ys2 = new HashMapBag(); + public HashMap atoms = new HashMap(); + public Topology first(SequenceOrElement e, Topology empty) { return new Walk.First(empty, this).walk(e); } - final boolean possiblyEpsilon(Element e) { + final boolean possiblyEpsilon(SequenceOrElement e) { Walk.Cache cache = this; Boolean ret = possiblyEpsilon.get(e); if (ret != null) return ret.booleanValue();