-
Notifications
You must be signed in to change notification settings - Fork 78
perform more aggressive optimization #1419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
f0e908c
remove monomorphize from loop definitions
stylewarning f0c293b
make UFix arithmetic processor-native
stylewarning 3e68311
move inliner to its own file
stylewarning a9a0bb5
move specializer to its own file
stylewarning c5da6ff
add some docs and more precise types
stylewarning 24a6445
move canonicalizer to its own file
stylewarning c4c67d6
add options to print when specialization/inlining occur
stylewarning 4b9cd0b
expose DICTIONARY-NODE-P
stylewarning 1a3b97b
unify the term with its replacement in inlining
stylewarning e176753
add :PRINT-REWRITES compiler option
stylewarning a90f911
repeat optimization passes until no more rewriting occurs
stylewarning 7333c9b
propagate dictionaries downward for optimization
stylewarning 78f9aa0
remove let subexpression hack
stylewarning ed307d3
add and make default a gentle inline heuristic
stylewarning da4deab
limit number of optimization passes
stylewarning 34c49f3
eliminate nested COALTON use in num macros
stylewarning File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
(defpackage #:coalton-impl/codegen/canonicalizer | ||
(:use | ||
#:cl | ||
#:coalton-impl/codegen/ast) | ||
(:import-from | ||
#:coalton-impl/codegen/traverse | ||
#:action | ||
#:traverse) | ||
(:export | ||
#:canonicalize)) | ||
|
||
(in-package #:coalton-impl/codegen/canonicalizer) | ||
|
||
(defun canonicalize (node) | ||
"Canonicalize the applications of NODE. \"Canonicalize\" means to | ||
supply as many arguments as possible to nested, partially applied | ||
functions. For example, the canonicalization of | ||
|
||
((FOO BAR) BAZ) | ||
|
||
would be: | ||
|
||
(FOO BAR BAZ)" | ||
(declare (type node node) | ||
(values node &optional)) | ||
(labels ((rewrite-application (node) | ||
(let ((rator (node-application-rator node)) | ||
(rands (node-application-rands node))) | ||
(when (node-application-p rator) | ||
(make-node-application | ||
:type (node-type node) | ||
:rator (node-application-rator rator) | ||
:rands (append | ||
(node-application-rands rator) | ||
rands)))))) | ||
(traverse | ||
node | ||
(list | ||
(action (:after node-application) #'rewrite-application))))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.