author | iveresov |
Thu, 22 Jan 2015 11:25:23 -0800 | |
changeset 28723 | 0a36120cb225 |
parent 13104 | 657b387034fb |
child 30624 | 2e1803c8a26d |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
7397
diff
changeset
|
2 |
* Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
// no precompiled headers |
26 |
||
1 | 27 |
// ---------------------------------------------------------------------------- |
28 |
// Build a table of class names as strings. Used both for debugging printouts |
|
29 |
// and in the ADL machine descriptions. |
|
30 |
#define macro(x) #x, |
|
31 |
const char *NodeClassNames[] = { |
|
32 |
"Node", |
|
33 |
"Set", |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
34 |
"RegN", |
1 | 35 |
"RegI", |
36 |
"RegP", |
|
37 |
"RegF", |
|
38 |
"RegD", |
|
39 |
"RegL", |
|
40 |
"RegFlags", |
|
13104
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
7397
diff
changeset
|
41 |
"VecS", |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
7397
diff
changeset
|
42 |
"VecD", |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
7397
diff
changeset
|
43 |
"VecX", |
657b387034fb
7119644: Increase superword's vector size up to 256 bits
kvn
parents:
7397
diff
changeset
|
44 |
"VecY", |
1 | 45 |
"_last_machine_leaf", |
46 |
#include "classes.hpp" |
|
47 |
"_last_class_name", |
|
48 |
}; |
|
49 |
#undef macro |