hotspot/src/cpu/aarch64/vm/abstractInterpreter_aarch64.cpp
changeset 46620 750c6edff33b
parent 46608 b0da00b77053
child 46625 edefffab74e2
equal deleted inserted replaced
46619:a3919f5e8d2b 46620:750c6edff33b
    98          // frame do we need to allow max_stack words.
    98          // frame do we need to allow max_stack words.
    99          (is_top_frame ? max_stack : temps + extra_args);
    99          (is_top_frame ? max_stack : temps + extra_args);
   100 
   100 
   101   // On AArch64 we always keep the stack pointer 16-aligned, so we
   101   // On AArch64 we always keep the stack pointer 16-aligned, so we
   102   // must round up here.
   102   // must round up here.
   103   size = round_to(size, 2);
   103   size = align_up(size, 2);
   104 
   104 
   105   return size;
   105   return size;
   106 }
   106 }
   107 
   107 
   108 void AbstractInterpreter::layout_activation(Method* method,
   108 void AbstractInterpreter::layout_activation(Method* method,