-
Notifications
You must be signed in to change notification settings - Fork 29
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
JavacExtension does not work with classpath/bootclasspath #3513
Comments
@flo2702 Maybe you can look into this at some point (not urgent in my opinion) ... You changed the relevant lines during #3431. I remember that before this change, many errors were thrown for the classes in bootclasspath. While this was also not a good solution, it indicates that they were just given directly to javac, not via the bootclasspath parameter. |
It is not see https://stackoverflow.com/questions/18270769/javac-bootclasspath-option But this leads to a different question: Java Redux is not compilable with Javac, and I guess that any other "KeY bootclasspath" is also incompilable. (Hint: Methods in classes do not have a body.) Should we not get rid of the bootclasspath for the Javac extension? |
I had a discussion with @wadoon about this recently. We agreed that it is not clear at all what we want to have here.
|
.jml files don't support model methods? Could that not be added? If so, that might be the best option, imo. |
JML files should support model methods. Do they also help the more critical But my understanding is, that everything that is allowed into the class/type-declaration-level is allowed into the But this also leads to other interesting questions. The Where is this "somewhere", e.g., from which source, do we use "java.lang.Object"? Using the JRE and Reflection could give us unexpected (new) methods. Can KeY handle these larger Java models? In other words, our axiomatic Java base is currently a sub-set but well-defined across any JVM. |
I also favour the idea with the I am not aware of any publication, examples, or documentation about
If we agree on what we want, it could actually make a really good HacKeYthon topic again. |
The last discussion was here.
Someone needs to heavily use it for finding possible loopholes. But at the moment the problems seems to be cleared.
All JML specification on
Included.
The inconsistency is solved in the thread above: The order in the classpath decides. The highest
Undefined. I think, at this point, the KeY world and OpenJML would collide. KeY would be liberal and see
In JML, there are no Java method bodies. Maybe the concept of the model program can be handy here. Bachelor Thesis?!?
Fully ack... wait I have an idea.... |
We postponed this work, since a clean solution (where we could use the original JDK source files) would require support for generics (postponed after #3120). |
Short description for my idea from above: A tool that takes the JDKs |
Description
When a .key/.proof file is loaded which contains a
\bootclasspath
directive, the Javac extensions crashes.The bug was originally found by @unp1.
Reproducible
always
Steps to reproduce
The Javac extension hangs and never gets out of this state again:

The reason seems to be a wrong parameter that is passed to the Java compiler (
-Xbootclasspath
):If the button is pressed in this state, an NPE is triggered:
Additional information
The issue seems easy to fix at first: When changing "-Xbootclasspath" to "-bootclasspath", at works without error. However, I am not sure if this is the desired behavior: Errors in bootclasspath/classpath can not be detected this way, since with these parameters Java only looks for already compiled classes, and just ignores the .java files (as far as I understand).
What I would expect is that also bootclasspath and classpath directories are checked for compilation errors. However, since we allow Java without method bodies in bootclasspath (and also in classpath, I guess), we can not just run javac on it. This would result in lots of errors. So maybe the only option for now is to ignore bootclasspath/classpath in the extension, and maybe give a warning (at least in the log) that these cannot be checked at the moment.
The text was updated successfully, but these errors were encountered: