8211332: Space for stub routines (code_size2) is too small on new Skylake CPUs
authorthartmann
Wed, 10 Oct 2018 08:36:31 +0200
changeset 52069 3ecaae33241a
parent 52068 218b5b64f102
child 52070 e4d72440d60e
8211332: Space for stub routines (code_size2) is too small on new Skylake CPUs Summary: Increase code_size2 for new Skylake CPUs. Reviewed-by: kvn, stuefe, thartmann Contributed-by: ralf.schmelter@sap.com
src/hotspot/cpu/x86/stubRoutines_x86.hpp
--- a/src/hotspot/cpu/x86/stubRoutines_x86.hpp	Tue Oct 09 19:11:09 2018 -0700
+++ b/src/hotspot/cpu/x86/stubRoutines_x86.hpp	Wed Oct 10 08:36:31 2018 +0200
@@ -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 = 33800 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)
 };
 
 class x86 {