Skip to content

[spectec] Track normal forms in IL#2184

Open
rossberg wants to merge 7 commits into
mainfrom
cnf
Open

[spectec] Track normal forms in IL#2184
rossberg wants to merge 7 commits into
mainfrom
cnf

Conversation

@rossberg

Copy link
Copy Markdown
Member

This adds several mark bits to IL nodes that track whether a term is in normal form. This is meant as an optimisation to avoid redundant work when reducing again, or when substituting into closed terms.

Three NFs are distinguished: closed (the term is essentially a value), dynamic (the term is the result of regular reduction and hasn't failed), static (the term is the result of static reduction that stops short of the failure steps). Closed implies dynamic implies static NF.

The result is a 10+% improvement of runtime for the test suite.

Before this optimisation:
make test 340.31s user 11.95s system 100% cpu 5:49.03 total
make test-frontend 45.78s user 6.45s system 117% cpu 44.284 total

After this optimisation:
make test 295.00s user 11.93s system 101% cpu 5:03.42 total
make test-frontend 40.71s user 5.91s system 120% cpu 38.785 total

(Each make was run after make clean; make)

Presumably, most of the win comes from the running times of the IL validator.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant