author | vlivanov |
Fri, 04 Dec 2015 23:46:19 +0300 | |
changeset 35086 | bbf32241d851 |
parent 30429 | c980154ed1a3 |
child 35148 | 5cfafc99d791 |
permissions | -rw-r--r-- |
29183 | 1 |
/* |
2 |
* Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* Copyright (c) 2014, Red Hat Inc. All rights reserved. |
|
4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
21 |
* or visit www.oracle.com if you need additional information or have any |
|
22 |
* questions. |
|
23 |
* |
|
24 |
*/ |
|
25 |
||
26 |
#ifndef CPU_AARCH64_VM_VM_VERSION_AARCH64_HPP |
|
27 |
#define CPU_AARCH64_VM_VM_VERSION_AARCH64_HPP |
|
28 |
||
29 |
#include "runtime/globals_extension.hpp" |
|
30 |
#include "runtime/vm_version.hpp" |
|
31 |
||
32 |
class VM_Version : public Abstract_VM_Version { |
|
33 |
public: |
|
34 |
protected: |
|
35 |
static int _cpu; |
|
36 |
static int _model; |
|
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
37 |
static int _model2; |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
38 |
static int _variant; |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
39 |
static int _revision; |
29183 | 40 |
static int _stepping; |
41 |
static int _cpuFeatures; // features returned by the "cpuid" instruction |
|
42 |
// 0 if this instruction is not available |
|
43 |
static const char* _features_str; |
|
44 |
||
45 |
static void get_processor_features(); |
|
46 |
||
47 |
public: |
|
48 |
// Initialization |
|
49 |
static void initialize(); |
|
50 |
||
51 |
// Asserts |
|
52 |
static void assert_is_initialized() { |
|
53 |
} |
|
54 |
||
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
55 |
enum { |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
56 |
CPU_ARM = 'A', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
57 |
CPU_BROADCOM = 'B', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
58 |
CPU_CAVIUM = 'C', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
59 |
CPU_DEC = 'D', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
60 |
CPU_INFINEON = 'I', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
61 |
CPU_MOTOROLA = 'M', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
62 |
CPU_NVIDIA = 'N', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
63 |
CPU_AMCC = 'P', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
64 |
CPU_QUALCOM = 'Q', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
65 |
CPU_MARVELL = 'V', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
66 |
CPU_INTEL = 'i', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
67 |
} cpuFamily; |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
68 |
|
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
69 |
enum { |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
70 |
CPU_FP = (1<<0), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
71 |
CPU_ASIMD = (1<<1), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
72 |
CPU_EVTSTRM = (1<<2), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
73 |
CPU_AES = (1<<3), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
74 |
CPU_PMULL = (1<<4), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
75 |
CPU_SHA1 = (1<<5), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
76 |
CPU_SHA2 = (1<<6), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
77 |
CPU_CRC32 = (1<<7), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
78 |
CPU_A53MAC = (1 << 30), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
79 |
CPU_DMB_ATOMICS = (1 << 31), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
80 |
} cpuFeatureFlags; |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
81 |
|
29183 | 82 |
static const char* cpu_features() { return _features_str; } |
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
83 |
static int cpu_family() { return _cpu; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
84 |
static int cpu_model() { return _model; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
85 |
static int cpu_model2() { return _model2; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
86 |
static int cpu_variant() { return _variant; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
87 |
static int cpu_revision() { return _revision; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
88 |
static int cpu_cpuFeatures() { return _cpuFeatures; } |
29183 | 89 |
|
90 |
}; |
|
91 |
||
92 |
#endif // CPU_AARCH64_VM_VM_VERSION_AARCH64_HPP |