8219712: code_size2 (defined in stub_routines_x86.hpp) is too small on new Skylake CPUs
authorrschmelter
Tue, 26 Feb 2019 05:46:02 -0800
changeset 53951 56089cf6152c
parent 53950 cf47efcf7771
child 53952 3ccf7e10ba07
8219712: code_size2 (defined in stub_routines_x86.hpp) is too small on new Skylake CPUs Reviewed-by: mbaesken, dholmes, kvn
src/hotspot/cpu/x86/stubRoutines_x86.hpp
--- a/src/hotspot/cpu/x86/stubRoutines_x86.hpp	Thu Feb 28 16:37:28 2019 +0800
+++ b/src/hotspot/cpu/x86/stubRoutines_x86.hpp	Tue Feb 26 05:46:02 2019 -0800
@@ -33,7 +33,7 @@
 
 enum platform_dependent_constants {
   code_size1 = 20000 LP64_ONLY(+10000),         // simply increase if too small (assembler will crash if too small)
-  code_size2 = 35300 LP64_ONLY(+10000)          // simply increase if too small (assembler will crash if too small)
+  code_size2 = 35300 LP64_ONLY(+11000)          // simply increase if too small (assembler will crash if too small)
 };
 
 class x86 {