This commit is contained in:
Coleen Phillimore 2015-07-14 20:51:50 +00:00
commit 354fb11881

View File

@ -2456,7 +2456,8 @@ void SharedRuntime::generate_deopt_blob() {
// allocate space for the code // allocate space for the code
ResourceMark rm; ResourceMark rm;
// setup code generation tools // 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); MacroAssembler* masm = new MacroAssembler(&buffer);
int frame_size_in_words; int frame_size_in_words;
OopMap* map = NULL; OopMap* map = NULL;