annotate graal/com.oracle.jvmci.meta/src/com/oracle/jvmci/meta/Kind.java @ 21556:48c1ebd24120

renamed com.oracle.graal.api[meta|code] modules to com.oracle.jvmci.[meta|code] (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 00:36:16 +0200
parents graal/com.oracle.graal.api.meta/src/com/oracle/graal/api/meta/Kind.java@51680f58e681
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
1 /*
18187
9619ba4daf4c Rename Constant to JavaConstant.
Roland Schatz <roland.schatz@oracle.com>
parents: 16479
diff changeset
2 * Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
4 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
7 * published by the Free Software Foundation.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
8 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
13 * accompanied this code).
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
14 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
18 *
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
21 * questions.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
22 */
21556
48c1ebd24120 renamed com.oracle.graal.api[meta|code] modules to com.oracle.jvmci.[meta|code] (JBS:GRAAL-53)
Doug Simon <doug.simon@oracle.com>
parents: 18913
diff changeset
23 package com.oracle.jvmci.meta;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
24
5363
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
25 import java.lang.reflect.*;
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
26
18679
b7d28233da5d Add missing //JaCoCo Exclude.
Roland Schatz <roland.schatz@oracle.com>
parents: 18490
diff changeset
27 //JaCoCo Exclude
b7d28233da5d Add missing //JaCoCo Exclude.
Roland Schatz <roland.schatz@oracle.com>
parents: 18490
diff changeset
28
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
29 /**
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
30 * Denotes the basic kinds of types in CRI, including the all the Java primitive types, for example,
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
31 * {@link Kind#Int} for {@code int} and {@link Kind#Object} for all object types. A kind has a
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
32 * single character short name, a Java name, and a set of flags further describing its behavior.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
33 */
9422
149fe42411df Use platform specific kind in backend.
Roland Schatz <roland.schatz@oracle.com>
parents: 7816
diff changeset
34 public enum Kind implements PlatformKind {
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
35 /** The primitive boolean kind, represented as an int on the stack. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
36 Boolean('z', "boolean", 1, true, java.lang.Boolean.TYPE, java.lang.Boolean.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
37
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
38 /** The primitive byte kind, represented as an int on the stack. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
39 Byte('b', "byte", 1, true, java.lang.Byte.TYPE, java.lang.Byte.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
40
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
41 /** The primitive short kind, represented as an int on the stack. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
42 Short('s', "short", 1, true, java.lang.Short.TYPE, java.lang.Short.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
43
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
44 /** The primitive char kind, represented as an int on the stack. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
45 Char('c', "char", 1, true, java.lang.Character.TYPE, java.lang.Character.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
46
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
47 /** The primitive int kind, represented as an int on the stack. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
48 Int('i', "int", 1, true, java.lang.Integer.TYPE, java.lang.Integer.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
49
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
50 /** The primitive float kind. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
51 Float('f', "float", 1, false, java.lang.Float.TYPE, java.lang.Float.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
52
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
53 /** The primitive long kind. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
54 Long('j', "long", 2, false, java.lang.Long.TYPE, java.lang.Long.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
55
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
56 /** The primitive double kind. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
57 Double('d', "double", 2, false, java.lang.Double.TYPE, java.lang.Double.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
58
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
59 /** The Object kind, also used for arrays. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
60 Object('a', "Object", 1, false, null, null),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
61
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
62 /** The void float kind. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
63 Void('v', "void", 0, false, java.lang.Void.TYPE, java.lang.Void.class),
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
64
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
65 /** The non-type. */
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
66 Illegal('-', "illegal", 0, false, null, null);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
67
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
68 private final char typeChar;
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
69 private final String javaName;
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
70 private final boolean isStackInt;
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
71 private final Class<?> primitiveJavaClass;
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
72 private final Class<?> boxedJavaClass;
18877
d0f34a3055cf made AMD64HotSpotRegisterConfig.categorized stable across VM executions to support replay compilation
Doug Simon <doug.simon@oracle.com>
parents: 18679
diff changeset
73 private final EnumKey key = new EnumKey(this);
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
74 private final int slotCount;
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
75
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
76 private Kind(char typeChar, String javaName, int slotCount, boolean isStackInt, Class<?> primitiveJavaClass, Class<?> boxedJavaClass) {
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
77 this.typeChar = typeChar;
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
78 this.javaName = javaName;
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
79 this.slotCount = slotCount;
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
80 this.isStackInt = isStackInt;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
81 this.primitiveJavaClass = primitiveJavaClass;
13893
1398243a0efa fixed spelling
Doug Simon <doug.simon@oracle.com>
parents: 13726
diff changeset
82 this.boxedJavaClass = boxedJavaClass;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
83 assert primitiveJavaClass == null || javaName.equals(primitiveJavaClass.getName());
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
84 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
85
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
86 /**
18913
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
87 * Returns the number of stack slots occupied by this kind according to the Java bytecodes
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
88 * specification.
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
89 */
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
90 public int getSlotCount() {
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
91 return this.slotCount;
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
92 }
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
93
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
94 /**
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
95 * Returns whether this kind occupied two stack slots.
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
96 */
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
97 public boolean needsTwoSlots() {
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
98 return this.slotCount == 2;
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
99 }
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
100
51680f58e681 Clean up in Kind class. Introduce Kind#getSlotCount and Kind#needsTwoSlots methods.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 18877
diff changeset
101 /**
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
102 * Returns the name of the kind as a single character.
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
103 */
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
104 public char getTypeChar() {
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
105 return typeChar;
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
106 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
107
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
108 /**
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
109 * Returns the name of this kind which will also be it Java programming language name if it is
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
110 * {@linkplain #isPrimitive() primitive} or {@code void}.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
111 */
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
112 public String getJavaName() {
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
113 return javaName;
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
114 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
115
18877
d0f34a3055cf made AMD64HotSpotRegisterConfig.categorized stable across VM executions to support replay compilation
Doug Simon <doug.simon@oracle.com>
parents: 18679
diff changeset
116 public Key getKey() {
d0f34a3055cf made AMD64HotSpotRegisterConfig.categorized stable across VM executions to support replay compilation
Doug Simon <doug.simon@oracle.com>
parents: 18679
diff changeset
117 return key;
d0f34a3055cf made AMD64HotSpotRegisterConfig.categorized stable across VM executions to support replay compilation
Doug Simon <doug.simon@oracle.com>
parents: 18679
diff changeset
118 }
d0f34a3055cf made AMD64HotSpotRegisterConfig.categorized stable across VM executions to support replay compilation
Doug Simon <doug.simon@oracle.com>
parents: 18679
diff changeset
119
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
120 /**
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
121 * Checks whether this type is a Java primitive type.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
122 *
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
123 * @return {@code true} if this is {@link #Boolean}, {@link #Byte}, {@link #Char},
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
124 * {@link #Short}, {@link #Int}, {@link #Long}, {@link #Float}, {@link #Double}, or
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
125 * {@link #Void}.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
126 */
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
127 public boolean isPrimitive() {
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
128 return primitiveJavaClass != null;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
129 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
130
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
131 /**
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
132 * Returns the kind that represents this kind when on the Java operand stack.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
133 *
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
134 * @return the kind used on the operand stack
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
135 */
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
136 public Kind getStackKind() {
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
137 if (isStackInt) {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
138 return Int;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
139 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
140 return this;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
141 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
142
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
143 /**
12695
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
144 * Checks whether this type is a Java primitive type representing an integer number.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
145 *
12695
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
146 * @return {@code true} if the stack kind is {@link #Int} or {@link #Long}.
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
147 */
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
148 public boolean isNumericInteger() {
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
149 return isStackInt || this == Kind.Long;
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
150 }
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
151
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
152 /**
13999
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
153 * Checks whether this type is a Java primitive type representing an unsigned number.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
154 *
13999
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
155 * @return {@code true} if the kind is {@link #Boolean} or {@link #Char}.
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
156 */
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
157 public boolean isUnsigned() {
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
158 return this == Kind.Boolean || this == Kind.Char;
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
159 }
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
160
f2b300c6e621 Refactor Stamp hierarchy.
Roland Schatz <roland.schatz@oracle.com>
parents: 13966
diff changeset
161 /**
12695
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
162 * Checks whether this type is a Java primitive type representing a floating point number.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
163 *
12695
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
164 * @return {@code true} if this is {@link #Float} or {@link #Double}.
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
165 */
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
166 public boolean isNumericFloat() {
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
167 return this == Kind.Float || this == Kind.Double;
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
168 }
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
169
4aec62c32a82 Helper functions for identifying numeric kinds.
Roland Schatz <roland.schatz@oracle.com>
parents: 9785
diff changeset
170 /**
14019
9d864856336a support canonicalization of arraylength in ReadNode
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13999
diff changeset
171 * Checks whether this represent an Object of some sort.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
172 *
14563
82e4fe6fa525 Remove all references to NarrowOop from VM independent code.
Roland Schatz <roland.schatz@oracle.com>
parents: 14019
diff changeset
173 * @return {@code true} if this is {@link #Object}.
14019
9d864856336a support canonicalization of arraylength in ReadNode
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13999
diff changeset
174 */
9d864856336a support canonicalization of arraylength in ReadNode
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13999
diff changeset
175 public boolean isObject() {
14563
82e4fe6fa525 Remove all references to NarrowOop from VM independent code.
Roland Schatz <roland.schatz@oracle.com>
parents: 14019
diff changeset
176 return this == Kind.Object;
14019
9d864856336a support canonicalization of arraylength in ReadNode
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13999
diff changeset
177 }
9d864856336a support canonicalization of arraylength in ReadNode
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13999
diff changeset
178
9d864856336a support canonicalization of arraylength in ReadNode
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13999
diff changeset
179 /**
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
180 * Returns the kind corresponding to the Java type string.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
181 *
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
182 * @param typeString the Java type string
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
183 * @return the kind
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
184 */
5540
a891c53a295b Renaming RiKind => Kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5538
diff changeset
185 public static Kind fromTypeString(String typeString) {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
186 assert typeString.length() > 0;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
187 final char first = typeString.charAt(0);
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
188 if (first == '[' || first == 'L') {
5540
a891c53a295b Renaming RiKind => Kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5538
diff changeset
189 return Kind.Object;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
190 }
5540
a891c53a295b Renaming RiKind => Kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5538
diff changeset
191 return Kind.fromPrimitiveOrVoidTypeChar(first);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
192 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
193
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
194 /**
7645
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
195 * Returns the kind of a word given the size of a word in bytes.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
196 *
7645
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
197 * @param wordSizeInBytes the size of a word in bytes
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
198 * @return the kind representing a word value
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
199 */
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
200 public static Kind fromWordSize(int wordSizeInBytes) {
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
201 if (wordSizeInBytes == 8) {
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
202 return Kind.Long;
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
203 } else {
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
204 assert wordSizeInBytes == 4 : "Unsupported word size!";
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
205 return Kind.Int;
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
206 }
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
207 }
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
208
f3fcc94f7120 Clean up and remove TODO.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 7530
diff changeset
209 /**
6539
2463eb24b644 Cleanup of Graal API: Rename methods so that it follows the getXxx naming convention and so that they are similar to the names of the java.lang.reflect classes. Remove unused methods.
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6437
diff changeset
210 * Returns the kind from the character describing a primitive or void.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
211 *
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
212 * @param ch the character
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
213 * @return the kind
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
214 */
5540
a891c53a295b Renaming RiKind => Kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5538
diff changeset
215 public static Kind fromPrimitiveOrVoidTypeChar(char ch) {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
216 switch (ch) {
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
217 case 'Z':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
218 return Boolean;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
219 case 'C':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
220 return Char;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
221 case 'F':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
222 return Float;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
223 case 'D':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
224 return Double;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
225 case 'B':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
226 return Byte;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
227 case 'S':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
228 return Short;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
229 case 'I':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
230 return Int;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
231 case 'J':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
232 return Long;
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
233 case 'V':
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
234 return Void;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
235 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
236 throw new IllegalArgumentException("unknown primitive or void type character: " + ch);
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
237 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
238
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
239 /**
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
240 * Returns the Kind representing the given Java class.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
241 *
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
242 * @param klass the class
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
243 * @return the kind
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
244 */
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
245 public static Kind fromJavaClass(Class<?> klass) {
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
246 if (klass == Boolean.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
247 return Boolean;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
248 } else if (klass == Byte.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
249 return Byte;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
250 } else if (klass == Short.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
251 return Short;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
252 } else if (klass == Char.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
253 return Char;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
254 } else if (klass == Int.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
255 return Int;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
256 } else if (klass == Long.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
257 return Long;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
258 } else if (klass == Float.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
259 return Float;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
260 } else if (klass == Double.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
261 return Double;
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
262 } else if (klass == Void.primitiveJavaClass) {
6437
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
263 return Void;
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
264 } else {
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
265 return Object;
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
266 }
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
267 }
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
268
8f820c815cc2 Add conversion from java.lang.Class to Kind
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6328
diff changeset
269 /**
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
270 * Returns the Java class representing this kind.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
271 *
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
272 * @return the Java class
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
273 */
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
274 public Class<?> toJavaClass() {
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
275 return primitiveJavaClass;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
276 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
277
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
278 /**
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
279 * Returns the Java class for instances of boxed values of this kind.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
280 *
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
281 * @return the Java class
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
282 */
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
283 public Class<?> toBoxedJavaClass() {
7098
e23980f4a890 Cleanup of Kind class: remove isXxx methods
Christian Wimmer <christian.wimmer@oracle.com>
parents: 6950
diff changeset
284 return boxedJavaClass;
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
285 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
286
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
287 /**
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
288 * Converts this value type to a string.
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
289 */
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
290 @Override
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
291 public String toString() {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
292 return javaName;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
293 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
294
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
295 /**
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
296 * Marker interface for types that should be {@linkplain Kind#format(Object) formatted} with
13901
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
297 * their {@link Object#toString()} value. Calling {@link Object#toString()} on other objects
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
298 * poses a security risk because it can potentially call user code.
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
299 */
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
300 public interface FormatWithToString {
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
301 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
302
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
303 /**
13901
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
304 * Classes for which invoking {@link Object#toString()} does not run user code.
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
305 */
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
306 private static boolean isToStringSafe(Class<?> c) {
13901
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
307 return c == Boolean.class || c == Byte.class || c == Character.class || c == Short.class || c == Integer.class || c == Float.class || c == Long.class || c == Double.class;
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
308 }
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
309
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
310 /**
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
311 * Gets a formatted string for a given value of this kind.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
312 *
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
313 * @param value a value of this kind
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
314 * @return a formatted string for {@code value} based on this kind
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
315 */
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
316 public String format(Object value) {
13901
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
317 if (isPrimitive()) {
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
318 assert isToStringSafe(value.getClass());
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
319 return value.toString();
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
320 } else {
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
321 if (value == null) {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
322 return "null";
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
323 } else {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
324 if (value instanceof String) {
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
325 String s = (String) value;
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
326 if (s.length() > 50) {
5793
6c80d73cf81a added prefix to formatted object Constants to denote the type of the constant
Doug Simon <doug.simon@oracle.com>
parents: 5545
diff changeset
327 return "String:\"" + s.substring(0, 30) + "...\"";
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
328 } else {
5793
6c80d73cf81a added prefix to formatted object Constants to denote the type of the constant
Doug Simon <doug.simon@oracle.com>
parents: 5545
diff changeset
329 return "String:\"" + s + '"';
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
330 }
5541
b4c406861c33 More renamings to drop Ri* prefix completely. Deleted graph.BitMap class and replaced with java.util.BitSet.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
331 } else if (value instanceof JavaType) {
16479
558cf39c646b moved toJavaName(JavaType type) from MetaUtil to be a default method in JavaType
Doug Simon <doug.simon@oracle.com>
parents: 16012
diff changeset
332 return "JavaType:" + ((JavaType) value).toJavaName();
13901
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
333 } else if (value instanceof Enum) {
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
334 return MetaUtil.getSimpleName(value.getClass(), true) + ":" + ((Enum<?>) value).name();
13901
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
335 } else if (value instanceof FormatWithToString) {
5793
6c80d73cf81a added prefix to formatted object Constants to denote the type of the constant
Doug Simon <doug.simon@oracle.com>
parents: 5545
diff changeset
336 return MetaUtil.getSimpleName(value.getClass(), true) + ":" + String.valueOf(value);
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
337 } else if (value instanceof Class<?>) {
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
338 return "Class:" + ((Class<?>) value).getName();
13901
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
339 } else if (isToStringSafe(value.getClass())) {
45f9dbb93988 modified Kind.format() to avoid calling any user code (JBS:GRAAL-14)
Doug Simon <doug.simon@oracle.com>
parents: 13893
diff changeset
340 return value.toString();
5363
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
341 } else if (value.getClass().isArray()) {
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
342 return formatArray(value);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
343 } else {
5541
b4c406861c33 More renamings to drop Ri* prefix completely. Deleted graph.BitMap class and replaced with java.util.BitSet.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5540
diff changeset
344 return MetaUtil.getSimpleName(value.getClass(), true) + "@" + System.identityHashCode(value);
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
345 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
346 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
347 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
348 }
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
349
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
350 private static final int MAX_FORMAT_ARRAY_LENGTH = 5;
5363
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
351
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
352 private static String formatArray(Object array) {
7530
5e3d1a68664e applied mx eclipseformat to all Java files
Doug Simon <doug.simon@oracle.com>
parents: 7099
diff changeset
353 Class<?> componentType = array.getClass().getComponentType();
5363
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
354 assert componentType != null;
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
355 int arrayLength = Array.getLength(array);
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
356 StringBuilder buf = new StringBuilder(MetaUtil.getSimpleName(componentType, true)).append('[').append(arrayLength).append("]{");
5363
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
357 int length = Math.min(MAX_FORMAT_ARRAY_LENGTH, arrayLength);
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
358 boolean primitive = componentType.isPrimitive();
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
359 for (int i = 0; i < length; i++) {
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
360 if (primitive) {
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
361 buf.append(Array.get(array, i));
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
362 } else {
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
363 Object o = ((Object[]) array)[i];
5540
a891c53a295b Renaming RiKind => Kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 5538
diff changeset
364 buf.append(Kind.Object.format(o));
5363
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
365 }
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
366 if (i != length - 1) {
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
367 buf.append(", ");
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
368 }
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
369 }
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
370 if (arrayLength != length) {
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
371 buf.append(", ...");
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
372 }
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
373 return buf.append('}').toString();
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
374 }
1d760684d958 expanded formatting of array CiConstants to show contents of the array
Doug Simon <doug.simon@oracle.com>
parents: 5349
diff changeset
375
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
376 /**
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
377 * The minimum value that can be represented as a value of this kind.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
378 *
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
379 * @return the minimum value
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
380 */
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
381 public long getMinValue() {
5441
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
382 switch (this) {
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
383 case Boolean:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
384 return 0;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
385 case Byte:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
386 return java.lang.Byte.MIN_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
387 case Char:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
388 return java.lang.Character.MIN_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
389 case Short:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
390 return java.lang.Short.MIN_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
391 case Int:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
392 return java.lang.Integer.MIN_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
393 case Long:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
394 return java.lang.Long.MIN_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
395 default:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
396 throw new IllegalArgumentException("illegal call to minValue on " + this);
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
397 }
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
398 }
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
399
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
400 /**
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
401 * The maximum value that can be represented as a value of this kind.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
402 *
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
403 * @return the maximum value
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
404 */
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
405 public long getMaxValue() {
5441
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
406 switch (this) {
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
407 case Boolean:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
408 return 1;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
409 case Byte:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
410 return java.lang.Byte.MAX_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
411 case Char:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
412 return java.lang.Character.MAX_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
413 case Short:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
414 return java.lang.Short.MAX_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
415 case Int:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
416 return java.lang.Integer.MAX_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
417 case Long:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
418 return java.lang.Long.MAX_VALUE;
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
419 default:
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
420 throw new IllegalArgumentException("illegal call to maxValue on " + this);
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
421 }
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
422 }
ab31310d4af9 CiKind.minValue and CiKind.maxValue for integer types
Lukas Stadler <lukas.stadler@jku.at>
parents: 5363
diff changeset
423
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
424 /**
13966
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
425 * Number of bytes that are necessary to represent a value of this kind.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
426 *
13966
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
427 * @return the number of bytes
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
428 */
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
429 public int getByteCount() {
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
430 if (this == Boolean) {
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
431 return 1;
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
432 } else {
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
433 return getBitCount() >> 3;
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
434 }
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
435 }
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
436
be0d961e3a88 New methods for querying memory usage of individual objects and object graphs in Graal API (MetaAccessProvider#getMemorySize, MetaUtil#getMemorySizeRecursive).
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 13901
diff changeset
437 /**
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
438 * Number of bits that are necessary to represent a value of this kind.
15040
288c23143d47 Fix most raw type references.
Josef Eisl <josef.eisl@jku.at>
parents: 14563
diff changeset
439 *
6328
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
440 * @return the number of bits
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
441 */
6e66d97a16ae Clean up Kind class.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 6313
diff changeset
442 public int getBitCount() {
5874
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
443 switch (this) {
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
444 case Boolean:
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
445 return 1;
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
446 case Byte:
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
447 return 8;
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
448 case Char:
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
449 case Short:
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
450 return 16;
9785
ecd5cd2806e8 Relax assertion for virtual array component kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 9422
diff changeset
451 case Float:
ecd5cd2806e8 Relax assertion for virtual array component kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 9422
diff changeset
452 return 32;
5874
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
453 case Int:
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
454 return 32;
9785
ecd5cd2806e8 Relax assertion for virtual array component kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 9422
diff changeset
455 case Double:
ecd5cd2806e8 Relax assertion for virtual array component kind.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 9422
diff changeset
456 return 64;
5874
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
457 case Long:
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
458 return 64;
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
459 default:
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
460 throw new IllegalArgumentException("illegal call to bits on " + this);
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
461 }
f0d4304243ff Add intrinsics for (Long|Integer).(reverseBytes|numberOf(Trail|Lead)ingZeros)
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 5793
diff changeset
462 }
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
463
18187
9619ba4daf4c Rename Constant to JavaConstant.
Roland Schatz <roland.schatz@oracle.com>
parents: 16479
diff changeset
464 public JavaConstant getDefaultValue() {
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
465 switch (this) {
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
466 case Boolean:
18187
9619ba4daf4c Rename Constant to JavaConstant.
Roland Schatz <roland.schatz@oracle.com>
parents: 16479
diff changeset
467 return JavaConstant.FALSE;
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
468 case Int:
18187
9619ba4daf4c Rename Constant to JavaConstant.
Roland Schatz <roland.schatz@oracle.com>
parents: 16479
diff changeset
469 return JavaConstant.INT_0;
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
470 case Long:
18187
9619ba4daf4c Rename Constant to JavaConstant.
Roland Schatz <roland.schatz@oracle.com>
parents: 16479
diff changeset
471 return JavaConstant.LONG_0;
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
472 case Float:
18187
9619ba4daf4c Rename Constant to JavaConstant.
Roland Schatz <roland.schatz@oracle.com>
parents: 16479
diff changeset
473 return JavaConstant.FLOAT_0;
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
474 case Double:
18187
9619ba4daf4c Rename Constant to JavaConstant.
Roland Schatz <roland.schatz@oracle.com>
parents: 16479
diff changeset
475 return JavaConstant.DOUBLE_0;
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
476 case Object:
18490
ca81508f2a19 Generalize NULL handling to work on arbitrary pointers.
Roland Schatz <roland.schatz@oracle.com>
parents: 18187
diff changeset
477 return JavaConstant.NULL_POINTER;
16012
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
478 case Byte:
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
479 case Char:
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
480 case Short:
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
481 return new PrimitiveConstant(this, 0);
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
482 default:
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
483 throw new IllegalArgumentException("illegal call to getDefaultValue on " + this);
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
484 }
0497ead7ec50 Support null check directly on compressed oops.
Roland Schatz <roland.schatz@oracle.com>
parents: 15040
diff changeset
485 }
3733
e233f5660da4 Added Java files from Maxine project.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
486 }