blob: c083848c0bd9e4292984cac5e283065c84a46d29 [file] [log] [blame]
J. Duke81537792007-12-01 00:00:00 +00001/*
Coleen Phillimore7e2463e2014-05-05 19:53:00 -04002 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
J. Duke81537792007-12-01 00:00:00 +00003 * 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 *
Erik Trimbleba7c1732010-05-27 19:08:38 -070019 * 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.
J. Duke81537792007-12-01 00:00:00 +000022 *
23 */
24
Stefan Karlsson8006fe82010-11-23 13:22:55 -080025#ifndef SHARE_VM_UTILITIES_CONSTANTTAG_HPP
26#define SHARE_VM_UTILITIES_CONSTANTTAG_HPP
27
Stefan Karlssonf78228b2016-04-12 09:53:43 +020028#include "memory/allocation.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080029#include "prims/jvm.h"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080030
J. Duke81537792007-12-01 00:00:00 +000031// constant tags in Java .class files
32
33
34enum {
35 // See jvm.h for shared JVM_CONSTANT_XXX tags
36 // NOTE: replicated in SA in vm/agent/sun/jvm/hotspot/utilities/ConstantTag.java
37 // Hotspot specific tags
38 JVM_CONSTANT_Invalid = 0, // For bad value initialization
39 JVM_CONSTANT_InternalMin = 100, // First implementation tag (aside from bad value of course)
40 JVM_CONSTANT_UnresolvedClass = 100, // Temporary tag until actual use
41 JVM_CONSTANT_ClassIndex = 101, // Temporary tag while constructing constant pool
Jon Masamitsu5c58d272012-09-01 13:25:18 -040042 JVM_CONSTANT_StringIndex = 102, // Temporary tag while constructing constant pool
43 JVM_CONSTANT_UnresolvedClassInError = 103, // Error tag due to resolution error
44 JVM_CONSTANT_MethodHandleInError = 104, // Error tag due to resolution error
45 JVM_CONSTANT_MethodTypeInError = 105, // Error tag due to resolution error
Coleen Phillimoreb8b94342013-02-22 08:36:42 -050046 JVM_CONSTANT_InternalMax = 105 // Last implementation tag
J. Duke81537792007-12-01 00:00:00 +000047};
48
49
50class constantTag VALUE_OBJ_CLASS_SPEC {
51 private:
52 jbyte _tag;
53 public:
54 bool is_klass() const { return _tag == JVM_CONSTANT_Class; }
55 bool is_field () const { return _tag == JVM_CONSTANT_Fieldref; }
56 bool is_method() const { return _tag == JVM_CONSTANT_Methodref; }
57 bool is_interface_method() const { return _tag == JVM_CONSTANT_InterfaceMethodref; }
58 bool is_string() const { return _tag == JVM_CONSTANT_String; }
59 bool is_int() const { return _tag == JVM_CONSTANT_Integer; }
60 bool is_float() const { return _tag == JVM_CONSTANT_Float; }
61 bool is_long() const { return _tag == JVM_CONSTANT_Long; }
62 bool is_double() const { return _tag == JVM_CONSTANT_Double; }
63 bool is_name_and_type() const { return _tag == JVM_CONSTANT_NameAndType; }
64 bool is_utf8() const { return _tag == JVM_CONSTANT_Utf8; }
65
66 bool is_invalid() const { return _tag == JVM_CONSTANT_Invalid; }
67
68 bool is_unresolved_klass() const {
69 return _tag == JVM_CONSTANT_UnresolvedClass || _tag == JVM_CONSTANT_UnresolvedClassInError;
70 }
71
72 bool is_unresolved_klass_in_error() const {
73 return _tag == JVM_CONSTANT_UnresolvedClassInError;
74 }
75
Jon Masamitsu5c58d272012-09-01 13:25:18 -040076 bool is_method_handle_in_error() const {
77 return _tag == JVM_CONSTANT_MethodHandleInError;
78 }
79 bool is_method_type_in_error() const {
80 return _tag == JVM_CONSTANT_MethodTypeInError;
81 }
82
J. Duke81537792007-12-01 00:00:00 +000083 bool is_klass_index() const { return _tag == JVM_CONSTANT_ClassIndex; }
J. Duke81537792007-12-01 00:00:00 +000084 bool is_string_index() const { return _tag == JVM_CONSTANT_StringIndex; }
85
86 bool is_klass_reference() const { return is_klass_index() || is_unresolved_klass(); }
John R Rose849e0ff2008-11-12 22:33:26 -080087 bool is_klass_or_reference() const{ return is_klass() || is_klass_reference(); }
J. Duke81537792007-12-01 00:00:00 +000088 bool is_field_or_method() const { return is_field() || is_method() || is_interface_method(); }
89 bool is_symbol() const { return is_utf8(); }
90
John R Rose1f4cfb02010-06-09 18:50:45 -070091 bool is_method_type() const { return _tag == JVM_CONSTANT_MethodType; }
92 bool is_method_handle() const { return _tag == JVM_CONSTANT_MethodHandle; }
John R Rose16784a72011-04-07 17:02:30 -070093 bool is_invoke_dynamic() const { return _tag == JVM_CONSTANT_InvokeDynamic; }
John R Rose1f4cfb02010-06-09 18:50:45 -070094
John R Rosece0125e2010-10-30 13:08:23 -070095 bool is_loadable_constant() const {
96 return ((_tag >= JVM_CONSTANT_Integer && _tag <= JVM_CONSTANT_String) ||
97 is_method_type() || is_method_handle() ||
Coleen Phillimoreb8b94342013-02-22 08:36:42 -050098 is_unresolved_klass());
John R Rosece0125e2010-10-30 13:08:23 -070099 }
100
John R Rose1f4cfb02010-06-09 18:50:45 -0700101 constantTag() {
102 _tag = JVM_CONSTANT_Invalid;
103 }
J. Duke81537792007-12-01 00:00:00 +0000104 constantTag(jbyte tag) {
105 assert((tag >= 0 && tag <= JVM_CONSTANT_NameAndType) ||
John R Rosea4e41492010-07-15 18:40:45 -0700106 (tag >= JVM_CONSTANT_MethodHandle && tag <= JVM_CONSTANT_InvokeDynamic) ||
J. Duke81537792007-12-01 00:00:00 +0000107 (tag >= JVM_CONSTANT_InternalMin && tag <= JVM_CONSTANT_InternalMax), "Invalid constant tag");
108 _tag = tag;
109 }
110
Coleen Phillimorefa72ad22013-10-11 11:23:49 -0400111 jbyte value() const { return _tag; }
Coleen Phillimore7e2463e2014-05-05 19:53:00 -0400112 jbyte error_value() const;
Coleen Phillimorefa72ad22013-10-11 11:23:49 -0400113 jbyte non_error_value() const;
J. Duke81537792007-12-01 00:00:00 +0000114
John R Rose1f4cfb02010-06-09 18:50:45 -0700115 BasicType basic_type() const; // if used with ldc, what kind of value gets pushed?
116
117 const char* internal_name() const; // for error reporting
118
J. Duke81537792007-12-01 00:00:00 +0000119 void print_on(outputStream* st) const PRODUCT_RETURN;
120};
Stefan Karlsson8006fe82010-11-23 13:22:55 -0800121
122#endif // SHARE_VM_UTILITIES_CONSTANTTAG_HPP