author | erikj |
Fri, 05 Oct 2018 09:59:30 -0700 | |
branch | ihse-runtestprebuilt-branch |
changeset 56931 | aff106ae3507 |
parent 47216 | 71c04702a3d5 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
33160 | 1 |
/* |
39423
0f8dc3693499
8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents:
35123
diff
changeset
|
2 |
* Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved. |
33160 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#ifndef SHARE_VM_JVMCI_VMSTRUCTS_JVMCI_HPP |
|
26 |
#define SHARE_VM_JVMCI_VMSTRUCTS_JVMCI_HPP |
|
27 |
||
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
28 |
#include "runtime/vmStructs.hpp" |
33160 | 29 |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
30 |
class JVMCIVMStructs { |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
31 |
public: |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
32 |
/** |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
33 |
* The last entry has a NULL fieldName. |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
34 |
*/ |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
35 |
static VMStructEntry localHotSpotVMStructs[]; |
33160 | 36 |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
37 |
/** |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
38 |
* The last entry has a NULL typeName. |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
39 |
*/ |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
40 |
static VMTypeEntry localHotSpotVMTypes[]; |
33160 | 41 |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
42 |
/** |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
43 |
* Table of integer constants. |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
44 |
* The last entry has a NULL typeName. |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
45 |
*/ |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
46 |
static VMIntConstantEntry localHotSpotVMIntConstants[]; |
33160 | 47 |
|
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
48 |
/** |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
49 |
* Table of long constants. |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
50 |
* The last entry has a NULL typeName. |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
51 |
*/ |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
52 |
static VMLongConstantEntry localHotSpotVMLongConstants[]; |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
53 |
|
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
54 |
/** |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
55 |
* Table of addresses. |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
56 |
*/ |
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
57 |
static VMAddressEntry localHotSpotVMAddresses[]; |
39423
0f8dc3693499
8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents:
35123
diff
changeset
|
58 |
|
0f8dc3693499
8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents:
35123
diff
changeset
|
59 |
static int localHotSpotVMStructs_count(); |
0f8dc3693499
8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents:
35123
diff
changeset
|
60 |
static int localHotSpotVMTypes_count(); |
0f8dc3693499
8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents:
35123
diff
changeset
|
61 |
static int localHotSpotVMIntConstants_count(); |
0f8dc3693499
8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents:
35123
diff
changeset
|
62 |
static int localHotSpotVMLongConstants_count(); |
0f8dc3693499
8159167: [JVMCI] fix HotSpotVMConfig startup performance
rschatz
parents:
35123
diff
changeset
|
63 |
static int localHotSpotVMAddresses_count(); |
35123
b0b89d83bcf5
8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents:
33632
diff
changeset
|
64 |
}; |
33160 | 65 |
|
66 |
#endif // SHARE_VM_JVMCI_VMSTRUCTS_JVMCI_HPP |