-
Notifications
You must be signed in to change notification settings - Fork 121
Some Con-related cleanups. #181
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
4 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| (* lower uses of async type appropriately *) | ||
|
|
||
| val transform : Ir.prog -> Ir.prog | ||
| val transform : Typing.scope -> Ir.prog -> Ir.prog |
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 |
|---|---|---|
| @@ -1,27 +1,44 @@ | ||
| type 'a con = {name : string; stamp : int; kind : 'a} | ||
| (* | ||
| The kind field is a reference to break the recursion in open_binds, | ||
| and to allow the multiple passes in typing. These go through Type.set_kind | ||
| with additional safeguards. | ||
|
|
||
| Besides these two use-cases, the kind should not be mutated, and treated like | ||
| immutable data. | ||
|
|
||
| This module interface guarantees that constructors with the same stamp have the | ||
| same ref. | ||
| *) | ||
|
|
||
| type 'a con = {name : string; stamp : int; kind : 'a ref} | ||
| type 'a t = 'a con | ||
|
|
||
| module Stamps = Env.Make(String) | ||
|
|
||
| let stamps : int Stamps.t ref = ref Stamps.empty | ||
|
|
||
| let fresh name kind = | ||
| let fresh_stamp name = | ||
| let n = | ||
| match Stamps.find_opt name !stamps with | ||
| | Some n -> n | ||
| | None -> 0 | ||
| in | ||
| stamps := Stamps.add name (n + 1) !stamps; | ||
| {name; stamp = n; kind} | ||
| n | ||
|
|
||
| let fresh name k = | ||
| {name; stamp = fresh_stamp name; kind = ref k} | ||
| let clone c k = | ||
| { c with stamp = fresh_stamp c.name; kind = ref k } (* Does not change the stamp! *) | ||
|
|
||
| let name c = c.name | ||
|
|
||
| let kind c = c.kind | ||
| let kind c = !(c.kind) | ||
| let unsafe_set_kind c k = c.kind := k | ||
|
|
||
| let to_string c = | ||
| if c.stamp = 0 then c.name else Printf.sprintf "%s/%i" c.name c.stamp | ||
|
|
||
| let compare c1 c2 = compare (c1.name, c1.stamp) (c2.name, c2.stamp) | ||
| let eq c1 c2 = (c1.name, c1.stamp) = (c2.name, c2.stamp) | ||
|
|
||
| let clone c k = { c with kind = k } | ||
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 |
|---|---|---|
|
|
@@ -63,5 +63,5 @@ non-closed actor: (ActorE | |
| Const | ||
| Public | ||
| ) | ||
| Counter | ||
| Counter/1 | ||
| ) | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While merging this with my change, I noticed this comment. Doesn't it contradict the actual code? What is the intention?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This does look broken to me. The original intention of clone was to preserve the stamp but change the interpretation so that you can still link fragments that have gone through the same translation.
So you can do async on the prelude and async on the program and the stamps will be the same, the refs will be different, but have the same contents.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, it's ok since Joachim has changed the invariant (and documented it) and requires you to pass down the con_renaming for passes that need it. Probably the better solution in the long run but will require more code changes once the Prelude mentions types that need tranforming.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I'll remove the comment in my change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, and sorry for the confusion.