forked from rocq-prover/rocq
-
Notifications
You must be signed in to change notification settings - Fork 1
Emit a benign dummy value for MLdummy (#14) #18
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
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
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,14 @@ | ||
| Require Corelib.extraction.Extraction. | ||
|
|
||
| Extraction Language Java. | ||
| Set Extraction Output Directory "misc/java-extraction/_generated/mldummy". | ||
|
|
||
| (* Logical (Prop) constants survive extraction as [MLdummy] when extracted | ||
| directly: they must become a benign value, not a throwing expression. *) | ||
|
|
||
| Definition tt_prop : True := I. | ||
|
|
||
| Definition both : True /\ True := conj I I. | ||
|
|
||
| Extraction "java_mldummy.java" | ||
| tt_prop both. |
21 changes: 21 additions & 0 deletions
21
test-suite/misc/java-extraction/mldummy/DriverMldummy.java
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,21 @@ | ||
| import java.util.function.Function; | ||
|
|
||
| public class DriverMldummy { | ||
| public static void main(String[] args) { | ||
| // Erased logical content becomes the benign dummy value: touching it must | ||
| // not throw (unlike an unrealized axiom), and it must survive being | ||
| // treated as a function, since extracted code may pass it around and | ||
| // apply it. | ||
| if (Main.tt_prop == null) { | ||
| throw new AssertionError("expected tt_prop to be a benign value but was null"); | ||
| } | ||
| if (Main.both == null) { | ||
| throw new AssertionError("expected both to be a benign value but was null"); | ||
| } | ||
| @SuppressWarnings("unchecked") | ||
| Function<Object, Object> f = (Function<Object, Object>) Main.tt_prop; | ||
| if (f.apply(null) != Main.tt_prop) { | ||
| throw new AssertionError("expected the dummy to be self-applicable"); | ||
| } | ||
| } | ||
| } |
20 changes: 20 additions & 0 deletions
20
test-suite/misc/java-extraction/mldummy/java_mldummy.java.expected
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,20 @@ | ||
| import java.util.function.Function; | ||
|
|
||
| class Main { | ||
|
|
||
| static <A, B> B let(A val, Function<A, B> cont) { return cont.apply(val); } | ||
|
|
||
| static <A> A error(String msg) { throw new RuntimeException(msg); } | ||
|
|
||
| static final Function<Object, Object> __dummy = new Function<Object, Object>() { | ||
| public Object apply(Object x) { return this; } | ||
| }; | ||
|
|
||
| @SuppressWarnings("unchecked") | ||
| static <A> A __() { return (A) __dummy; } | ||
|
|
||
| static Object tt_prop = __(); | ||
|
|
||
| static Object both = __(); | ||
|
|
||
| } |
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.
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.
使う場合だけ出すようにするのが良さそうだけど、とりあえずは全部出しても良いか。