RFR(M): 8037821: Account for trampoline stubs when estimating code buffer sizes
Vladimir Kozlov
vladimir.kozlov at oracle.com
Fri Mar 21 16:34:54 UTC 2014
Hi Lutz,
I agree with these changes but I have few small comments.
Add comment into output.cpp that CallStubImpl and HandlerImpl are defined in .ad files so we know where to look.
Since you are touching the x86 code, could you move HandlerImpl to x86.ad and use #ifdef _LP64 (and other LP64 macros)
for not matching code. I am not sure why we use call to push pc in x86_64.ad and not InternalAddress as in x86_32.ad but
leave it as it is.
About trampoline comments in sparc.ad and x86.ad.
Remove "// call trampolines" lines and use the same comments as in ppc.ad because you have the explanation comment on
return statements:
+ // Size of call trampoline stub.
+ static uint size_call_trampoline() {
+ return 0; // no call trampolines on this platform
+ }
+
+ // Number of relocations needed by a call trampoline stub.
+ static uint reloc_call_trampoline() {
+ return 0; // no call trampolines on this platform
+ }
Note, I would need to change our closed sources accordingly after we agree on final version of changes.
Thanks,
Vladimir
On 3/20/14 3:51 AM, Schmidt, Lutz wrote:
> Hi all,
>
> I would welcome reviews for my change. I would need a sponsor as well.
>
> The initial reason for the change was fixing size calculations for stubs section and relocations (relevant for PPC port only). On PowerPC, far calls require "trampoline code" in the stubs section. The space needed for these trampoline stubs was not accounted for in shorten_branches processing. The additional relocation entries were "forgotten" as well. Correct a-priori calculation of the section sizes is desirable because it avoids the need for later resizing.
>
> To avoid platform-specific code in shorten_branches, I introduced a small class CallStubImpl in the architecture description (.ad) files. The class declaration makes its way to the ad_<arch>.hpp file which is included in share/vm/opto/output.cpp anyway. Because the size functions are contained in the class declaration, they are inlined at call sites (and optimized away in most cases).
>
> I took the opportunity to get rid of the extern declarations for
> size_exception_handler()
> size_deopt_handler()
> in share/vm/opto/output.cpp altogether. Using the trampoline stubs approach as a template, I introduced another small class HandlerImpl in the architecture description (.ad) files. It declares and defines the size and emitter functions for the exception and depot handlers. Program logic is not changed.
>
> Webrev:
> http://cr.openjdk.java.net/~goetz/webrevs/8037802/webrev.00/
>
> Testing:
> Automated tests, including SPEC benchmarks and the JCK suite, did not reveal any issues.
>
> Thanks a lot!
> Lutz
>
> Lutz Schmidt | SAP AG | Walldorf, Germany
>
More information about the ppc-aix-port-dev
mailing list