FIRST and FOLLOW sets, part 2
In my last post we looked at FIRST sets. That's the hard part. Today's topic, FOLLOW sets, are easy.
In the grammar restrictions post I defined FOLLOW as
So now that we have the FIRST set for every grammar element, we can get each element's FOLLOW set by finding the FIRST set for every element that follows it.
Let's define:
S, A, B, and C as sentences in the grammar
The FOLLOW rules are:
From these three simple rules (and the FIRST sets), we can construct the FOLLOW sets for all the elements of the grammar.
The complete set of FOLLOW sets for SPTL is available in gnumeric format or csv format.
In the grammar restrictions post I defined FOLLOW as
the set of possible first tokens for the following sentence
So now that we have the FIRST set for every grammar element, we can get each element's FOLLOW set by finding the FIRST set for every element that follows it.
Let's define:
S, A, B, and C as sentences in the grammar
The FOLLOW rules are:
- For S → AB, S → [A]B, S → {A}B
- If ∀ B, B ≠ ∈
FOLLOW(A) includes FIRST(B) - If ∃ B, B = ∈
FOLLOW(A) includes FOLLOW(S)
- If ∀ B, B ≠ ∈
- For S → AB, S → A[B], S → A{B}
- FOLLOW(B) includes FOLLOW(N)
- FOLLOW(B) includes FOLLOW(N)
- For S → AB | AC
- FOLLOW(A) includes FIRST(B) ∪ FIRST(C)
- FOLLOW(A) includes FIRST(B) ∪ FIRST(C)
From these three simple rules (and the FIRST sets), we can construct the FOLLOW sets for all the elements of the grammar.
The complete set of FOLLOW sets for SPTL is available in gnumeric format or csv format.
Labels: FIRST, FOLLOW, grammar rules, recursive descent
2 Comments:
Thanks for the explanation of first and follow sets, my compiler book did a crappy job of explaining them.
Andrew -
I'm glad you found this useful.
Post a Comment
Links to this post:
Create a Link
<< Home