RFR (S): 8112746 Followup to JEP 245: Validate JVM Command-Line Flag Arguments (original) (raw)
Gerard Ziemski gerard.ziemski at oracle.com
Thu Jun 25 21:52:27 UTC 2015
- Previous message: RFR (S): 8112746 Followup to JEP 245: Validate JVM Command-Line Flag Arguments
- Next message: Rev1 RFR (S): 8112746 Followup to JEP 245: Validate JVM Command-Line Flag Arguments
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Nope, that was just me - I got the fix exactly the opposite of what it should be.
I will rev up.
On 6/25/2015 4:35 PM, Gerard Ziemski wrote:
Hmm, I fixed those white spaces at least three times now. I wonder if XCode does something funky...
Thank you Dmitry. I will look into this.
cheers On 6/25/2015 4:30 PM, Dmitry Dmitriev wrote: Hi Gerard,
It seems that recently added space(https://bugs.openjdk.java.net/browse/JDK-8081202) between macro and double quotes is disappear in several files. I.e. must be: " INTXFORMAT " instead of "INTXFORMAT" Files where space is disappear: 1) src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp All changes in file. 2) src/share/vm/runtime/commandLineFlagConstraintsGC.cpp All changes in file. 3) src/share/vm/runtime/commandLineFlagRangeList.cpp On lines 81(3 times), 131(3 times), 156(3 times) and 181(3 times). Thanks, Dmitry On 25.06.2015 20:54, Gerard Ziemski wrote: hi all,
Please review this followup to my recent JEP 245 checkin. It addresses the issues raised by Coleen, Dmitry and Kim during webrev. You can seehttps://bugs.openjdk.java.net/browse/JDK-8112746 for details, but the most important change here is that we only check constraint if the range check passes first. To quickly recap: I changed that part of the code when David pointed out that I had to modify 2 tests in a way that looked like a regression - I removed some test cases. However, Kim, later pointed out that the original code had the advantage of having constraints guaranteed that the flag values were within ranges. I checked in the code with ranges and constraints being checked both regardless of each other, but this followup restores the original behavior (and simplifies the code), where we first check ranges and only check constraints if range passes. The 2 tests (ObjectAlignment.java and Options.java) seem to loose some test cases, but those paths are still tested (though with different values), so we in fact do not loose anything from test coverage point of view. The change passes JPRT (hotspot) and RBT (vm.quick.testlist)
References: webrev:http://cr.openjdk.java.net/~gziemski/8112746rev0/ this issue:https://bugs.openjdk.java.net/browse/JDK-8112746 JEP 245:https://bugs.openjdk.java.net/browse/JDK-8059557 hg stat: src/share/vm/gc/g1/g1globals.hpp | 4 +- src/share/vm/runtime/commandLineFlagConstraintsCompiler.cpp | 2 +- src/share/vm/runtime/commandLineFlagConstraintsGC.cpp | 55 ++-- src/share/vm/runtime/commandLineFlagRangeList.cpp | 58 ++--- src/share/vm/runtime/globals.cpp | 129 ++++++----- src/share/vm/runtime/globals.hpp | 17 +- test/runtime/CompressedOops/ObjectAlignment.java | 3 +- test/runtime/contended/Options.java | 2 - 8 files changed, 129 insertions(+), 141 deletions(-)
- Previous message: RFR (S): 8112746 Followup to JEP 245: Validate JVM Command-Line Flag Arguments
- Next message: Rev1 RFR (S): 8112746 Followup to JEP 245: Validate JVM Command-Line Flag Arguments
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]