RFR 8144534: Refactor templateInterpreter and templateInterpreterGenerator functions
Coleen Phillimore
coleen.phillimore at oracle.com
Fri Dec 4 14:11:14 UTC 2015
Thank you John!!
On 12/3/15 8:13 PM, John Rose wrote:
> On Dec 3, 2015, at 3:51 PM, Coleen Phillimore
> <coleen.phillimore at oracle.com <mailto:coleen.phillimore at oracle.com>>
> wrote:
>>
>> The most interesting part of this change is in the x86 code:
>>
>> http://cr.openjdk.java.net/~coleenp/8144534.02/src/cpu/x86/vm/templateInterpreterGenerator_x86.cpp.udiff.html
>> <http://cr.openjdk.java.net/%7Ecoleenp/8144534.02/src/cpu/x86/vm/templateInterpreterGenerator_x86.cpp.udiff.html>
>>
>> This is where the 32 and 64 bit template interpreter code is merged.
>
> This is a magnificent case of CDE (Code Deletion Engineering).
:)
>
> About 1/3 of the textual lines in each merged file are unique:
>
> $ diff -U9999 templateInterpreter_x86_{32,64}.cpp >
> templateInterpreter_x86_MERGED.cpp
> $ wc templateInterpreter_x86_{32,64,MERGED}.cpp
> 1916 7955 71138 templateInterpreter_x86_32.cpp
> 1866 7348 67194 templateInterpreter_x86_64.cpp
> 2610 12638 104592 templateInterpreter_x86_MERGED.cpp
>
> Any many of the unique lines differ from their counterparts only
> trivially.
>
> I read over the changes and found what I hoped to find.
> A few of the multi-line #ifdefs could be compressed even more,
> but that can be done later if we want, as we touch the code.
>
> Cleanups like this make our system more maintainable.
> They also reduce the cost of future changes, like value types.
>
Yes, I believe this.
> Thanks for doing this. You can count me as a reviewer.
>
> — John
>
> P.S. One request: Please prefer putting the semicolons outside of the
> macro calls,
> even when they are logically inside. It makes it easier for
> auto-indenting tools
> like Emacs to DTRT. (They treat semicolon at the end of a line as a
> signal to
> indent normally on the next line, but a paren at the end of the line
> is a signal
> to indent extra on the next line, on the assumption that it is a
> continuation line.)
>
> The majority convention appears to be putting the semicolon outside
> the paren:
> --------
> grep '_ONLY(.*);' $(hg loc -I src) | wc
> 667 3514 65119
> --------
> grep '_ONLY(.*;)' $(hg loc -I src) | wc
> 216 868 19884
> --------
> grep 'NOT_[A-Z0-9]*(.*);' $(hg loc -I src) | wc
> 855 4098 82619
> --------
> grep 'NOT_[A-Z0-9]*(.*;)' $(hg loc -I src) | wc
> 296 1320 27929
> --------
>
Done. I didn't know which was the convention because I've seen both.
We should declare this to be the convention:
LP64_ONLY(statement); // semi after the ) for the macro.
Thanks!!
Coleen
More information about the hotspot-dev
mailing list