Skip to content

Commit fdece9a

Browse files
committedMay 24, 2022
8287169: compiler/arguments/TestCompileThresholdScaling.java fails on x86_32 after JDK-8287052
Reviewed-by: kvn, dlong
1 parent 25080e0 commit fdece9a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎src/hotspot/share/compiler/compilerDefinitions.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,13 @@ intx CompilerConfig::scaled_compile_threshold(intx threshold, double scale) {
136136
}
137137
int exp;
138138
(void) frexp(v, &exp);
139-
if (exp > 63) {
139+
int max_exp = sizeof(intx) * BitsPerByte - 1;
140+
if (exp > max_exp) {
140141
return max_intx;
141142
}
142-
return (intx)(v);
143+
intx r = (intx)(v);
144+
assert(r >= 0, "must be");
145+
return r;
143146
}
144147
}
145148

0 commit comments

Comments
 (0)
Please sign in to comment.