mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
8079156: [TESTBUG] 32 bit Java 9-fastdebug hit assertion in client mode with StackShadowPages flag value from 32 to 50
We increase CodeBufer instr size to account for stack banging code generation. Reviewed-by: coleenp, dholmes, kvn
This commit is contained in:
parent
055105c707
commit
f1d95bc678
1 changed files with 2 additions and 1 deletions
|
@ -2456,7 +2456,8 @@ void SharedRuntime::generate_deopt_blob() {
|
|||
// allocate space for the code
|
||||
ResourceMark rm;
|
||||
// setup code generation tools
|
||||
CodeBuffer buffer("deopt_blob", 1024, 1024);
|
||||
// note: the buffer code size must account for StackShadowPages=50
|
||||
CodeBuffer buffer("deopt_blob", 1536, 1024);
|
||||
MacroAssembler* masm = new MacroAssembler(&buffer);
|
||||
int frame_size_in_words;
|
||||
OopMap* map = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue