author | shade |
Thu, 04 Feb 2016 21:44:23 +0300 | |
changeset 35708 | 290a3952e434 |
parent 35148 | 5cfafc99d791 |
child 37269 | 5c2c4e5bb067 |
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 { |
|
35148 | 33 |
friend class JVMCIVMStructs; |
34 |
||
29183 | 35 |
protected: |
36 |
static int _cpu; |
|
37 |
static int _model; |
|
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
38 |
static int _model2; |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
39 |
static int _variant; |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
40 |
static int _revision; |
29183 | 41 |
static int _stepping; |
42 |
||
43 |
static void get_processor_features(); |
|
44 |
||
45 |
public: |
|
46 |
// Initialization |
|
47 |
static void initialize(); |
|
48 |
||
49 |
// Asserts |
|
50 |
static void assert_is_initialized() { |
|
51 |
} |
|
52 |
||
35148 | 53 |
enum Family { |
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
54 |
CPU_ARM = 'A', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
55 |
CPU_BROADCOM = 'B', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
56 |
CPU_CAVIUM = 'C', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
57 |
CPU_DEC = 'D', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
58 |
CPU_INFINEON = 'I', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
59 |
CPU_MOTOROLA = 'M', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
60 |
CPU_NVIDIA = 'N', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
61 |
CPU_AMCC = 'P', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
62 |
CPU_QUALCOM = 'Q', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
63 |
CPU_MARVELL = 'V', |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
64 |
CPU_INTEL = 'i', |
35148 | 65 |
}; |
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
66 |
|
35148 | 67 |
enum Feature_Flag { |
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
68 |
CPU_FP = (1<<0), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
69 |
CPU_ASIMD = (1<<1), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
70 |
CPU_EVTSTRM = (1<<2), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
71 |
CPU_AES = (1<<3), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
72 |
CPU_PMULL = (1<<4), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
73 |
CPU_SHA1 = (1<<5), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
74 |
CPU_SHA2 = (1<<6), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
75 |
CPU_CRC32 = (1<<7), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
76 |
CPU_A53MAC = (1 << 30), |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
77 |
CPU_DMB_ATOMICS = (1 << 31), |
35148 | 78 |
}; |
30429
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
79 |
|
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
80 |
static int cpu_family() { return _cpu; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
81 |
static int cpu_model() { return _model; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
82 |
static int cpu_model2() { return _model2; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
83 |
static int cpu_variant() { return _variant; } |
c980154ed1a3
8079203: AARCH64: Need to cater for different partner implementations
enevill
parents:
29183
diff
changeset
|
84 |
static int cpu_revision() { return _revision; } |
29183 | 85 |
}; |
86 |
||
87 |
#endif // CPU_AARCH64_VM_VM_VERSION_AARCH64_HPP |