RFR: 8260025: HotSpot cannot identify Zen (family 17h) processor

Yasumasa Suenaga ysuenaga at openjdk.java.net
Wed Jan 20 07:57:05 UTC 2021


HotSpot cannot identify Zen (family 17h) processor. You can see this problem in flight record as below:

java -XX:StartFlightRecording=filename=test.jfr --version

`(null)` in `cpu` and `<unknown>` in `Family` should be `Zen`.

$ jfr print --events jdk.CPUInformation test.jfr
jdk.CPUInformation {
  startTime = 15:59:37.207
  cpu = "AMD (null) (HT) SSE SSE2 SSE3 SSSE3 SSE4.1 SSE4.2 SSE4A AMD64"
  description = "Brand: AMD Ryzen 3 3300X 4-Core Processor , Vendor: AuthenticAMD
Family: <unknown> (0x17), Model: <unknown> (0x71), Stepping: 0x0
Ext. family: 0x8, Ext. model: 0x7, Type: 0x0, Signature: 0x00870f10
Features: ebx: 0x00020800, ecx: 0xfed83203, edx: 0x178bfbff
Ext. features: eax: 0x00870f10, ebx: 0x20000000, ecx: 0x004003f3, edx: 0x2fd3fbff
Supports: On-Chip FPU, Virtual Mode Extensions, Debugging Extensions, Page Size Extensions, Time Stamp Counter, Model Specific Registers, Physical Address Extension, Machine Check Exceptions, CMPXCHG8B Instruction, On-Chip APIC, Fast System Call, Memory Type Range Registers, Page Global Enable, Machine Check Architecture, Conditional Mov Instruction, Page Attribute Table, 36-bit Page Size Extension, CLFLUSH Instruction, Intel Architecture MMX Technology, Fast Float Point Save and Restore, Streaming SIMD extensions, Streaming SIMD extensions 2, Hyper Threading, Streaming SIMD Extensions 3, PCLMULQDQ, Supplemental Streaming SIMD Extensions 3, Fused Multiply-Add, CMPXCHG16B, Streaming SIMD extensions 4.1, Streaming SIMD extensions 4.2, MOVBE, Popcount instruction, AESNI, XSAVE, OSXSAVE, AVX, F16C, LAHF/SAHF instruction support, Core multi-processor leagacy mode, Advanced Bit Manipulations: LZCNT, SSE4A: MOVNTSS, MOVNTSD, EXTRQ, INSERTQ, Misaligned SSE mode, SYSCALL/SYSRET, Execute Disab
 le Bit, RDTSCP, Intel 64 Architecture"
  sockets = 1
  cores = 2
  hwThreads = 2
}

It is caused by missing comma after `Opteron QC/Phenom`. So I think the fix is trivial.

-------------

Commit messages:
 - 8260025: HotSpot cannot identify Zen (family 17h) processor

Changes: https://git.openjdk.java.net/jdk/pull/2158/files
 Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=2158&range=00
  Issue: https://bugs.openjdk.java.net/browse/JDK-8260025
  Stats: 2 lines in 1 file changed: 0 ins; 0 del; 2 mod
  Patch: https://git.openjdk.java.net/jdk/pull/2158.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/2158/head:pull/2158

PR: https://git.openjdk.java.net/jdk/pull/2158


More information about the hotspot-dev mailing list