mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 02:24:40 +02:00
6953477: Increase portability and flexibility of building Hotspot
A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail. Reviewed-by: phh, never, coleenp, dholmes
This commit is contained in:
parent
c45761e2a8
commit
b95c7e9523
113 changed files with 1669 additions and 559 deletions
|
@ -90,7 +90,7 @@ CallingConvention* FrameMap::java_calling_convention(const BasicTypeArray* signa
|
|||
|
||||
if (outgoing) {
|
||||
// update the space reserved for arguments.
|
||||
update_reserved_argument_area_size(out_preserve);
|
||||
update_reserved_argument_area_size(out_preserve * BytesPerWord);
|
||||
}
|
||||
return new CallingConvention(args, out_preserve);
|
||||
}
|
||||
|
@ -138,7 +138,7 @@ CallingConvention* FrameMap::c_calling_convention(const BasicTypeArray* signatur
|
|||
}
|
||||
assert(args->length() == signature->length(), "size mismatch");
|
||||
out_preserve += SharedRuntime::out_preserve_stack_slots();
|
||||
update_reserved_argument_area_size(out_preserve);
|
||||
update_reserved_argument_area_size(out_preserve * BytesPerWord);
|
||||
return new CallingConvention(args, out_preserve);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue