annotate src/share/vm/interpreter/bytecode.hpp @ 4181:319860ae697a

Simplify FrameMap: make offsets of spill slots and outgoing parameters independent so that they can be allocated at the same time, eliminating the separate phases. This makes the separate StackBlock unnecesary. Change CiStackSlot to use byte offsets instead of spill slot index. This makes CiTarget.spillSlotSize unnecessary.
author Christian Wimmer <Christian.Wimmer@Oracle.com>
date Mon, 02 Jan 2012 14:16:08 -0800
parents e342a5110bed
children 1d7922586cf6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1138
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
25 #ifndef SHARE_VM_INTERPRETER_BYTECODE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
26 #define SHARE_VM_INTERPRETER_BYTECODE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
28 #include "interpreter/bytecodes.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
29 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
30 #include "oops/methodOop.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
31 #ifdef TARGET_ARCH_x86
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
32 # include "bytes_x86.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
33 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
34 #ifdef TARGET_ARCH_sparc
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
35 # include "bytes_sparc.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
36 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
37 #ifdef TARGET_ARCH_zero
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
38 # include "bytes_zero.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
39 #endif
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2177
diff changeset
40 #ifdef TARGET_ARCH_arm
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2177
diff changeset
41 # include "bytes_arm.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2177
diff changeset
42 #endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2177
diff changeset
43 #ifdef TARGET_ARCH_ppc
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2177
diff changeset
44 # include "bytes_ppc.hpp"
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 2177
diff changeset
45 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
46
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
47 class ciBytecodeStream;
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
48
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
49 // The base class for different kinds of bytecode abstractions.
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
50 // Provides the primitive operations to manipulate code relative
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
51 // to the bcp.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
53 class Bytecode: public StackObj {
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
54 protected:
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
55 const address _bcp;
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
56 const Bytecodes::Code _code;
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
57
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // Address computation
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
59 address addr_at (int offset) const { return (address)_bcp + offset; }
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
60 u_char byte_at(int offset) const { return *addr_at(offset); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
61 address aligned_addr_at (int offset) const { return (address)round_to((intptr_t)addr_at(offset), jintSize); }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 int aligned_offset (int offset) const { return aligned_addr_at(offset) - addr_at(0); }
a61af66fc99e Initial load
duke
parents:
diff changeset
63
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
64 // Word access:
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
65 int get_Java_u2_at (int offset) const { return Bytes::get_Java_u2(addr_at(offset)); }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
66 int get_Java_u4_at (int offset) const { return Bytes::get_Java_u4(addr_at(offset)); }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
67 int get_native_u2_at (int offset) const { return Bytes::get_native_u2(addr_at(offset)); }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
68 int get_native_u4_at (int offset) const { return Bytes::get_native_u4(addr_at(offset)); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
71 Bytecode(methodOop method, address bcp): _bcp(bcp), _code(Bytecodes::code_at(method, addr_at(0))) {
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
72 assert(method != NULL, "this form requires a valid methodOop");
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
73 }
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
74 // Defined in ciStreams.hpp
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
75 inline Bytecode(const ciBytecodeStream* stream, address bcp = NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
76
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
77 // Attributes
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
78 address bcp() const { return _bcp; }
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
79 int instruction_size() const { return Bytecodes::length_for_code_at(_code, bcp()); }
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
80
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
81 Bytecodes::Code code() const { return _code; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82 Bytecodes::Code java_code() const { return Bytecodes::java_code(code()); }
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
83
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
84 // Static functions for parsing bytecodes in place.
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
85 int get_index_u1(Bytecodes::Code bc) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
86 assert_same_format_as(bc); assert_index_size(1, bc);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
87 return *(jubyte*)addr_at(1);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
88 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
89 int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
90 assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
91 address p = addr_at(is_wide ? 2 : 1);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
92 if (can_use_native_byte_order(bc, is_wide))
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
93 return Bytes::get_native_u2(p);
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
94 else return Bytes::get_Java_u2(p);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
95 }
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
96 int get_index_u1_cpcache(Bytecodes::Code bc) const {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
97 assert_same_format_as(bc); assert_index_size(1, bc);
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
98 return *(jubyte*)addr_at(1) + constantPoolOopDesc::CPCACHE_INDEX_TAG;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
99 }
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
100 int get_index_u2_cpcache(Bytecodes::Code bc) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
101 assert_same_format_as(bc); assert_index_size(2, bc); assert_native_index(bc);
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
102 return Bytes::get_native_u2(addr_at(1)) + constantPoolOopDesc::CPCACHE_INDEX_TAG;
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
103 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
104 int get_index_u4(Bytecodes::Code bc) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
105 assert_same_format_as(bc); assert_index_size(4, bc);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
106 assert(can_use_native_byte_order(bc), "");
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
107 return Bytes::get_native_u4(addr_at(1));
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
108 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
109 bool has_index_u4(Bytecodes::Code bc) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
110 return bc == Bytecodes::_invokedynamic;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
111 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
112
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
113 int get_offset_s2(Bytecodes::Code bc) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
114 assert_same_format_as(bc); assert_offset_size(2, bc);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
115 return (jshort) Bytes::get_Java_u2(addr_at(1));
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
116 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
117 int get_offset_s4(Bytecodes::Code bc) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
118 assert_same_format_as(bc); assert_offset_size(4, bc);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
119 return (jint) Bytes::get_Java_u4(addr_at(1));
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
120 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
121
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
122 int get_constant_u1(int offset, Bytecodes::Code bc) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
123 assert_same_format_as(bc); assert_constant_size(1, offset, bc);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
124 return *(jbyte*)addr_at(offset);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
125 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
126 int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
127 assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide);
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
128 return (jshort) Bytes::get_Java_u2(addr_at(offset));
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
129 }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
130
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
131 // These are used locally and also from bytecode streams.
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
132 void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
133 static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
134 static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
135 static void assert_constant_size(int required_size, int where, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
136 static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
137 static bool can_use_native_byte_order(Bytecodes::Code bc, bool is_wide = false) {
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
138 return (!Bytes::is_Java_byte_ordering_different() || Bytecodes::native_byte_order(bc /*, is_wide*/));
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
139 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 };
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 // Abstractions for lookupswitch bytecode
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
144 class LookupswitchPair VALUE_OBJ_CLASS_SPEC {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
145 private:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
146 const address _bcp;
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
147
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
148 address addr_at (int offset) const { return _bcp + offset; }
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
149 int get_Java_u4_at (int offset) const { return Bytes::get_Java_u4(addr_at(offset)); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
152 LookupswitchPair(address bcp): _bcp(bcp) {}
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
153 int match() const { return get_Java_u4_at(0 * jintSize); }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
154 int offset() const { return get_Java_u4_at(1 * jintSize); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
155 };
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 class Bytecode_lookupswitch: public Bytecode {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
160 Bytecode_lookupswitch(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
161 // Defined in ciStreams.hpp
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
162 inline Bytecode_lookupswitch(const ciBytecodeStream* stream);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
163 void verify() const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // Attributes
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
166 int default_offset() const { return get_Java_u4_at(aligned_offset(1 + 0*jintSize)); }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
167 int number_of_pairs() const { return get_Java_u4_at(aligned_offset(1 + 1*jintSize)); }
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
168 LookupswitchPair pair_at(int i) const {
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
169 assert(0 <= i && i < number_of_pairs(), "pair index out of bounds");
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
170 return LookupswitchPair(aligned_addr_at(1 + (1 + i)*2*jintSize));
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
171 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
172 };
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 class Bytecode_tableswitch: public Bytecode {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
176 Bytecode_tableswitch(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
177 // Defined in ciStreams.hpp
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
178 inline Bytecode_tableswitch(const ciBytecodeStream* stream);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
179 void verify() const PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Attributes
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
182 int default_offset() const { return get_Java_u4_at(aligned_offset(1 + 0*jintSize)); }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
183 int low_key() const { return get_Java_u4_at(aligned_offset(1 + 1*jintSize)); }
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
184 int high_key() const { return get_Java_u4_at(aligned_offset(1 + 2*jintSize)); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
185 int dest_offset_at(int i) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 int length() { return high_key()-low_key()+1; }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 };
a61af66fc99e Initial load
duke
parents:
diff changeset
188
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
189 // Common code for decoding invokes and field references.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
190
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
191 class Bytecode_member_ref: public Bytecode {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
192 protected:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
193 const methodHandle _method; // method containing the bytecode
0
a61af66fc99e Initial load
duke
parents:
diff changeset
194
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
195 Bytecode_member_ref(methodHandle method, int bci) : Bytecode(method(), method()->bcp_from(bci)), _method(method) {}
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
196
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
197 methodHandle method() const { return _method; }
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
198
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
199 public:
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
200 int index() const; // cache index (loaded from instruction)
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
201 int pool_index() const; // constant pool index
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2142
diff changeset
202 Symbol* name() const; // returns the name of the method or field
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2142
diff changeset
203 Symbol* signature() const; // returns the signature of the method or field
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
204
2177
3582bf76420e 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 2142
diff changeset
205 BasicType result_type() const; // returns the result type of the getfield or invoke
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
206 };
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
207
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
208 // Abstraction for invoke_{virtual, static, interface, special}
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
209
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
210 class Bytecode_invoke: public Bytecode_member_ref {
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
211 protected:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
212 // Constructor that skips verification
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
213 Bytecode_invoke(methodHandle method, int bci, bool unused) : Bytecode_member_ref(method, bci) {}
0
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
216 Bytecode_invoke(methodHandle method, int bci) : Bytecode_member_ref(method, bci) { verify(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 void verify() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // Attributes
a61af66fc99e Initial load
duke
parents:
diff changeset
220 methodHandle static_target(TRAPS); // "specified" method (from constant pool)
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // Testers
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
223 bool is_invokeinterface() const { return java_code() == Bytecodes::_invokeinterface; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
224 bool is_invokevirtual() const { return java_code() == Bytecodes::_invokevirtual; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
225 bool is_invokestatic() const { return java_code() == Bytecodes::_invokestatic; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
226 bool is_invokespecial() const { return java_code() == Bytecodes::_invokespecial; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
227 bool is_invokedynamic() const { return java_code() == Bytecodes::_invokedynamic; }
726
be93aad57795 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 0
diff changeset
228
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1135
diff changeset
229 bool has_receiver() const { return !is_invokestatic() && !is_invokedynamic(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 bool is_valid() const { return is_invokeinterface() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
232 is_invokevirtual() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
233 is_invokestatic() ||
1135
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 844
diff changeset
234 is_invokespecial() ||
e66fd840cb6b 6893081: method handle & invokedynamic code needs additional cleanup (post 6815692, 6858164)
twisti
parents: 844
diff changeset
235 is_invokedynamic(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236
4055
e342a5110bed 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 2192
diff changeset
237 bool is_method_handle_invoke() const {
e342a5110bed 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 2192
diff changeset
238 return (is_invokedynamic() ||
e342a5110bed 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 2192
diff changeset
239 (is_invokevirtual() &&
e342a5110bed 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 2192
diff changeset
240 method()->constants()->klass_ref_at_noresolve(index()) == vmSymbols::java_lang_invoke_MethodHandle() &&
e342a5110bed 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 2192
diff changeset
241 methodOopDesc::is_method_handle_invoke_name(name())));
e342a5110bed 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 2192
diff changeset
242 }
e342a5110bed 7106774: JSR 292: nightly test inlineMHTarget fails with wrong result
twisti
parents: 2192
diff changeset
243
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
244 // Helper to skip verification. Used is_valid() to check if the result is really an invoke
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
245 inline friend Bytecode_invoke Bytecode_invoke_check(methodHandle method, int bci);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
246 };
a61af66fc99e Initial load
duke
parents:
diff changeset
247
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
248 inline Bytecode_invoke Bytecode_invoke_check(methodHandle method, int bci) {
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
249 return Bytecode_invoke(method, bci, false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
253 // Abstraction for all field accesses (put/get field/static)
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
254 class Bytecode_field: public Bytecode_member_ref {
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
255 public:
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
256 Bytecode_field(methodHandle method, int bci) : Bytecode_member_ref(method, bci) { verify(); }
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
257
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
258 // Testers
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
259 bool is_getfield() const { return java_code() == Bytecodes::_getfield; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
260 bool is_putfield() const { return java_code() == Bytecodes::_putfield; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
261 bool is_getstatic() const { return java_code() == Bytecodes::_getstatic; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
262 bool is_putstatic() const { return java_code() == Bytecodes::_putstatic; }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
263
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
264 bool is_getter() const { return is_getfield() || is_getstatic(); }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
265 bool is_static() const { return is_getstatic() || is_putstatic(); }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
266
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
267 bool is_valid() const { return is_getfield() ||
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
268 is_putfield() ||
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
269 is_getstatic() ||
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
270 is_putstatic(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
271 void verify() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 };
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // Abstraction for checkcast
a61af66fc99e Initial load
duke
parents:
diff changeset
275 class Bytecode_checkcast: public Bytecode {
a61af66fc99e Initial load
duke
parents:
diff changeset
276 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
277 Bytecode_checkcast(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
278 void verify() const { assert(Bytecodes::java_code(code()) == Bytecodes::_checkcast, "check checkcast"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 // Returns index
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
281 long index() const { return get_index_u2(Bytecodes::_checkcast); };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
282 };
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // Abstraction for instanceof
a61af66fc99e Initial load
duke
parents:
diff changeset
285 class Bytecode_instanceof: public Bytecode {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
287 Bytecode_instanceof(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
288 void verify() const { assert(code() == Bytecodes::_instanceof, "check instanceof"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // Returns index
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
291 long index() const { return get_index_u2(Bytecodes::_instanceof); };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
292 };
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294 class Bytecode_new: public Bytecode {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
296 Bytecode_new(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
297 void verify() const { assert(java_code() == Bytecodes::_new, "check new"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // Returns index
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
300 long index() const { return get_index_u2(Bytecodes::_new); };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
301 };
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 class Bytecode_multianewarray: public Bytecode {
a61af66fc99e Initial load
duke
parents:
diff changeset
304 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
305 Bytecode_multianewarray(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
306 void verify() const { assert(java_code() == Bytecodes::_multianewarray, "check new"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // Returns index
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
309 long index() const { return get_index_u2(Bytecodes::_multianewarray); };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
310 };
a61af66fc99e Initial load
duke
parents:
diff changeset
311
a61af66fc99e Initial load
duke
parents:
diff changeset
312 class Bytecode_anewarray: public Bytecode {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
314 Bytecode_anewarray(methodOop method, address bcp): Bytecode(method, bcp) { verify(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
315 void verify() const { assert(java_code() == Bytecodes::_anewarray, "check anewarray"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 // Returns index
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1138
diff changeset
318 long index() const { return get_index_u2(Bytecodes::_anewarray); };
0
a61af66fc99e Initial load
duke
parents:
diff changeset
319 };
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 // Abstraction for ldc, ldc_w and ldc2_w
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
322 class Bytecode_loadconstant: public Bytecode {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
323 private:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
324 const methodHandle _method;
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
325
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
326 int raw_index() const;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
327
0
a61af66fc99e Initial load
duke
parents:
diff changeset
328 public:
2142
8012aa3ccede 4926272: methodOopDesc::method_from_bcp is unsafe
never
parents: 1972
diff changeset
329 Bytecode_loadconstant(methodHandle method, int bci): Bytecode(method(), method->bcp_from(bci)), _method(method) { verify(); }
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
330
0
a61af66fc99e Initial load
duke
parents:
diff changeset
331 void verify() const {
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
332 assert(_method.not_null(), "must supply method");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
333 Bytecodes::Code stdc = Bytecodes::java_code(code());
a61af66fc99e Initial load
duke
parents:
diff changeset
334 assert(stdc == Bytecodes::_ldc ||
a61af66fc99e Initial load
duke
parents:
diff changeset
335 stdc == Bytecodes::_ldc_w ||
a61af66fc99e Initial load
duke
parents:
diff changeset
336 stdc == Bytecodes::_ldc2_w, "load constant");
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
339 // Only non-standard bytecodes (fast_aldc) have CP cache indexes.
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
340 bool has_cache_index() const { return code() >= Bytecodes::number_of_java_codes; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
341
1602
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
342 int pool_index() const; // index into constant pool
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
343 int cache_index() const { // index into CP cache (or -1 if none)
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
344 return has_cache_index() ? raw_index() : -1;
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
345 }
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
346
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
347 BasicType result_type() const; // returns the result type of the ldc
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
348
136b78722a08 6939203: JSR 292 needs method handle constants
jrose
parents: 1579
diff changeset
349 oop resolve_constant(TRAPS) const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
350 };
a61af66fc99e Initial load
duke
parents:
diff changeset
351
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1602
diff changeset
352 #endif // SHARE_VM_INTERPRETER_BYTECODE_HPP