8211332: Space for stub routines (code_size2) is too small on new Skylake CPUs

Increase code_size2 for new Skylake CPUs.

Reviewed-by: kvn, stuefe, thartmann
This commit is contained in:
Ralf Schmelter 2018-10-10 08:36:31 +02:00 committed by Tobias Hartmann
parent f2d02897e1
commit a9f9385ced

View File

@ -33,7 +33,7 @@ static bool returns_to_call_stub(address return_pc) { return return_pc == _call_
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 {