mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
6890308: integrate zero assembler hotspot changes
Reviewed-by: never
This commit is contained in:
parent
9b306d03ee
commit
5473f394c6
108 changed files with 7657 additions and 56 deletions
|
@ -93,9 +93,13 @@ void Abstract_VM_Version::initialize() {
|
|||
#else // KERNEL
|
||||
#ifdef TIERED
|
||||
#define VMTYPE "Server"
|
||||
#else
|
||||
#define VMTYPE COMPILER1_PRESENT("Client") \
|
||||
COMPILER2_PRESENT("Server")
|
||||
#else // TIERED
|
||||
#ifdef ZERO
|
||||
#define VMTYPE "Zero"
|
||||
#else // ZERO
|
||||
#define VMTYPE COMPILER1_PRESENT("Client") \
|
||||
COMPILER2_PRESENT("Server")
|
||||
#endif // ZERO
|
||||
#endif // TIERED
|
||||
#endif // KERNEL
|
||||
|
||||
|
@ -142,10 +146,14 @@ const char* Abstract_VM_Version::vm_release() {
|
|||
WINDOWS_ONLY("windows") \
|
||||
SOLARIS_ONLY("solaris")
|
||||
|
||||
#ifdef ZERO
|
||||
#define CPU ZERO_LIBARCH
|
||||
#else
|
||||
#define CPU IA32_ONLY("x86") \
|
||||
IA64_ONLY("ia64") \
|
||||
AMD64_ONLY("amd64") \
|
||||
SPARC_ONLY("sparc")
|
||||
#endif // ZERO
|
||||
|
||||
const char *Abstract_VM_Version::vm_platform_string() {
|
||||
return OS "-" CPU;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue