mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-17 05:45:05 +00:00
8256051: nmethod_entry_barrier stub miscalculates xmm spill size on x86_32
Reviewed-by: shade
This commit is contained in:
parent
96e0261041
commit
bfa060f098
@ -3669,7 +3669,7 @@ class StubGenerator: public StubCodeGenerator {
|
||||
__ pusha();
|
||||
|
||||
// xmm0 and xmm1 may be used for passing float/double arguments
|
||||
const int xmm_size = wordSize * 2;
|
||||
const int xmm_size = wordSize * 4;
|
||||
const int xmm_spill_size = xmm_size * 2;
|
||||
__ subptr(rsp, xmm_spill_size);
|
||||
__ movdqu(Address(rsp, xmm_size * 1), xmm1);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user