RFR: 8328998: Encoding support for Intel APX extended general-purpose registers [v9]
Sandhya Viswanathan
sviswanathan at openjdk.org
Wed May 1 21:30:56 UTC 2024
On Mon, 29 Apr 2024 23:54:19 GMT, Steve Dohrmann <duke at openjdk.org> wrote:
>> Add instruction encoding support for Intel APX extended general-purpose registers:
>>
>> Intel Advanced Performance Extensions (APX) doubles the number of general-purpose registers, from 16 to 32. For more information about APX, see https://www.intel.com/content/www/us/en/developer/articles/technical/advanced-performance-extensions-apx.html.
>>
>> By specification, instruction encoding remains unchanged for instructions using only the lower 16 GPRs. For cases where one or more instruction operands reference extended GPRs (Egprs), encoding targets either REX2, an extension of REX encoding, or an extended version of EVEX encoding. These new encoding schemes extend or modify existing instruction prefixes only when Egprs are used.
>
> Steve Dohrmann has updated the pull request incrementally with one additional commit since the last revision:
>
> fixes: pp bits in crc32, REX2 branch in ldmxcsr
src/hotspot/cpu/x86/assembler_x86.cpp line 2621:
> 2619:
> 2620: void Assembler::ldmxcsr( Address src) {
> 2621: if (UseAVX > 0 && !needs_rex2(src.base(), src.index()) ) {
When UseAPX is true, it is good to always use the SSE flavor of ldmxcsr/stmxcsr.
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/18476#discussion_r1585485391
More information about the hotspot-compiler-dev
mailing list