Skip to content

Commit d5b4666

Browse files
committedFeb 16, 2022
8281829: runtime/CommandLine/OptionsValidation/TestOptionsWithRanges.java fails after JDK-8281467
Reviewed-by: kvn, thartmann
1 parent fef5d74 commit d5b4666

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎src/hotspot/share/runtime/flags/jvmFlagConstraintsCompiler.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -228,6 +228,15 @@ JVMFlag::Error CodeEntryAlignmentConstraintFunc(intx value, bool verbose) {
228228
return JVMFlag::VIOLATES_CONSTRAINT;
229229
}
230230

231+
if ((uintx)CodeEntryAlignment > CodeCacheSegmentSize) {
232+
JVMFlag::printError(verbose,
233+
"CodeEntryAlignment (" INTX_FORMAT ") must be "
234+
"less than or equal to CodeCacheSegmentSize (" UINTX_FORMAT ") "
235+
"to align entry points\n",
236+
CodeEntryAlignment, CodeCacheSegmentSize);
237+
return JVMFlag::VIOLATES_CONSTRAINT;
238+
}
239+
231240
return JVMFlag::SUCCESS;
232241
}
233242

0 commit comments

Comments
 (0)
Please sign in to comment.