src/share/vm/interpreter/bytecodeStream.hpp

Thu, 24 May 2018 17:06:56 +0800

author
aoqi
date
Thu, 24 May 2018 17:06:56 +0800
changeset 8604
04d83ba48607
parent 8498
9edc175ff3e6
parent 6876
710a3c8b516e
permissions
-rw-r--r--

Merge

aoqi@0 1 /*
vkempik@8498 2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@1 25 /*
aoqi@1 26 * This file has been modified by Loongson Technology in 2015. These
aoqi@1 27 * modifications are Copyright (c) 2015 Loongson Technology, and are made
aoqi@1 28 * available on the same license terms set forth above.
aoqi@1 29 */
aoqi@1 30
aoqi@0 31 #ifndef SHARE_VM_INTERPRETER_BYTECODESTREAM_HPP
aoqi@0 32 #define SHARE_VM_INTERPRETER_BYTECODESTREAM_HPP
aoqi@0 33
aoqi@0 34 #include "interpreter/bytecode.hpp"
aoqi@0 35 #include "memory/allocation.hpp"
aoqi@0 36 #include "oops/method.hpp"
aoqi@0 37 #include "runtime/handles.inline.hpp"
aoqi@0 38 #ifdef TARGET_ARCH_x86
aoqi@0 39 # include "bytes_x86.hpp"
aoqi@0 40 #endif
aoqi@1 41 #ifdef TARGET_ARCH_mips
aoqi@1 42 # include "bytes_mips.hpp"
aoqi@1 43 #endif
aoqi@0 44 #ifdef TARGET_ARCH_sparc
aoqi@0 45 # include "bytes_sparc.hpp"
aoqi@0 46 #endif
aoqi@0 47 #ifdef TARGET_ARCH_zero
aoqi@0 48 # include "bytes_zero.hpp"
aoqi@0 49 #endif
aoqi@0 50 #ifdef TARGET_ARCH_arm
aoqi@0 51 # include "bytes_arm.hpp"
aoqi@0 52 #endif
aoqi@0 53 #ifdef TARGET_ARCH_ppc
aoqi@0 54 # include "bytes_ppc.hpp"
aoqi@0 55 #endif
aoqi@0 56
aoqi@0 57 // A BytecodeStream is used for fast iteration over the bytecodes
aoqi@0 58 // of a Method*.
aoqi@0 59 //
aoqi@0 60 // Usage:
aoqi@0 61 //
aoqi@0 62 // BytecodeStream s(method);
aoqi@0 63 // Bytecodes::Code c;
aoqi@0 64 // while ((c = s.next()) >= 0) {
aoqi@0 65 // ...
aoqi@0 66 // }
aoqi@0 67
aoqi@0 68 // A RawBytecodeStream is a simple version of BytecodeStream.
aoqi@0 69 // It is used ONLY when we know the bytecodes haven't been rewritten
aoqi@0 70 // yet, such as in the rewriter or the verifier.
aoqi@0 71
aoqi@0 72 // Here is the common base class for both RawBytecodeStream and BytecodeStream:
aoqi@0 73 class BaseBytecodeStream: StackObj {
aoqi@0 74 protected:
aoqi@0 75 // stream buffer
aoqi@0 76 methodHandle _method; // read from method directly
aoqi@0 77
aoqi@0 78 // reading position
aoqi@0 79 int _bci; // bci if current bytecode
aoqi@0 80 int _next_bci; // bci of next bytecode
aoqi@0 81 int _end_bci; // bci after the current iteration interval
aoqi@0 82
aoqi@0 83 // last bytecode read
aoqi@0 84 Bytecodes::Code _raw_code;
aoqi@0 85 bool _is_wide;
aoqi@0 86 bool _is_raw; // false in 'cooked' BytecodeStream
aoqi@0 87
aoqi@0 88 // Construction
aoqi@0 89 BaseBytecodeStream(methodHandle method) : _method(method) {
aoqi@0 90 set_interval(0, _method->code_size());
aoqi@0 91 _is_raw = false;
aoqi@0 92 }
aoqi@0 93
aoqi@0 94 public:
aoqi@0 95 // Iteration control
aoqi@0 96 void set_interval(int beg_bci, int end_bci) {
aoqi@0 97 // iterate over the interval [beg_bci, end_bci)
aoqi@0 98 assert(0 <= beg_bci && beg_bci <= method()->code_size(), "illegal beg_bci");
aoqi@0 99 assert(0 <= end_bci && end_bci <= method()->code_size(), "illegal end_bci");
aoqi@0 100 // setup of iteration pointers
aoqi@0 101 _bci = beg_bci;
aoqi@0 102 _next_bci = beg_bci;
aoqi@0 103 _end_bci = end_bci;
aoqi@0 104 }
aoqi@0 105 void set_start (int beg_bci) {
aoqi@0 106 set_interval(beg_bci, _method->code_size());
aoqi@0 107 }
aoqi@0 108
aoqi@0 109 bool is_raw() const { return _is_raw; }
aoqi@0 110
aoqi@0 111 // Stream attributes
aoqi@0 112 methodHandle method() const { return _method; }
aoqi@0 113
aoqi@0 114 int bci() const { return _bci; }
aoqi@0 115 int next_bci() const { return _next_bci; }
aoqi@0 116 int end_bci() const { return _end_bci; }
aoqi@0 117
aoqi@0 118 Bytecodes::Code raw_code() const { return _raw_code; }
aoqi@0 119 bool is_wide() const { return _is_wide; }
aoqi@0 120 int instruction_size() const { return (_next_bci - _bci); }
aoqi@0 121 bool is_last_bytecode() const { return _next_bci >= _end_bci; }
aoqi@0 122
aoqi@0 123 address bcp() const { return method()->code_base() + _bci; }
aoqi@0 124 Bytecode bytecode() const { return Bytecode(_method(), bcp()); }
aoqi@0 125
aoqi@0 126 // State changes
aoqi@0 127 void set_next_bci(int bci) { assert(0 <= bci && bci <= method()->code_size(), "illegal bci"); _next_bci = bci; }
aoqi@0 128
aoqi@0 129 // Bytecode-specific attributes
aoqi@0 130 int dest() const { return bci() + bytecode().get_offset_s2(raw_code()); }
aoqi@0 131 int dest_w() const { return bci() + bytecode().get_offset_s4(raw_code()); }
aoqi@0 132
aoqi@0 133 // One-byte indices.
aoqi@0 134 int get_index_u1() const { assert_raw_index_size(1); return *(jubyte*)(bcp()+1); }
aoqi@0 135
aoqi@0 136 protected:
aoqi@0 137 void assert_raw_index_size(int size) const NOT_DEBUG_RETURN;
aoqi@0 138 void assert_raw_stream(bool want_raw) const NOT_DEBUG_RETURN;
aoqi@0 139 };
aoqi@0 140
aoqi@0 141 class RawBytecodeStream: public BaseBytecodeStream {
aoqi@0 142 public:
aoqi@0 143 // Construction
aoqi@0 144 RawBytecodeStream(methodHandle method) : BaseBytecodeStream(method) {
aoqi@0 145 _is_raw = true;
aoqi@0 146 }
aoqi@0 147
aoqi@0 148 public:
aoqi@0 149 // Iteration
aoqi@0 150 // Use raw_next() rather than next() for faster method reference
aoqi@0 151 Bytecodes::Code raw_next() {
aoqi@0 152 Bytecodes::Code code;
aoqi@0 153 // set reading position
aoqi@0 154 _bci = _next_bci;
aoqi@0 155 assert(!is_last_bytecode(), "caller should check is_last_bytecode()");
aoqi@0 156
aoqi@0 157 address bcp = this->bcp();
aoqi@0 158 code = Bytecodes::code_or_bp_at(bcp);
aoqi@0 159
aoqi@0 160 // set next bytecode position
vkempik@8498 161 int len = Bytecodes::length_for(code);
vkempik@8498 162 if (len > 0 && (_bci <= _end_bci - len)) {
aoqi@0 163 assert(code != Bytecodes::_wide && code != Bytecodes::_tableswitch
aoqi@0 164 && code != Bytecodes::_lookupswitch, "can't be special bytecode");
aoqi@0 165 _is_wide = false;
vkempik@8498 166 _next_bci += len;
vkempik@8498 167 if (_next_bci <= _bci) { // Check for integer overflow
vkempik@8498 168 code = Bytecodes::_illegal;
vkempik@8498 169 }
aoqi@0 170 _raw_code = code;
aoqi@0 171 return code;
aoqi@0 172 } else {
aoqi@0 173 return raw_next_special(code);
aoqi@0 174 }
aoqi@0 175 }
aoqi@0 176 Bytecodes::Code raw_next_special(Bytecodes::Code code);
aoqi@0 177
aoqi@0 178 // Unsigned indices, widening, with no swapping of bytes
aoqi@0 179 int get_index() const { return (is_wide()) ? get_index_u2_raw(bcp() + 2) : get_index_u1(); }
aoqi@0 180 // Get an unsigned 2-byte index, with no swapping of bytes.
aoqi@0 181 int get_index_u2() const { assert(!is_wide(), ""); return get_index_u2_raw(bcp() + 1); }
aoqi@0 182
aoqi@0 183 private:
aoqi@0 184 int get_index_u2_raw(address p) const {
aoqi@0 185 assert_raw_index_size(2); assert_raw_stream(true);
aoqi@0 186 return Bytes::get_Java_u2(p);
aoqi@0 187 }
aoqi@0 188 };
aoqi@0 189
aoqi@0 190 // In BytecodeStream, non-java bytecodes will be translated into the
aoqi@0 191 // corresponding java bytecodes.
aoqi@0 192
aoqi@0 193 class BytecodeStream: public BaseBytecodeStream {
aoqi@0 194 Bytecodes::Code _code;
aoqi@0 195
aoqi@0 196 public:
aoqi@0 197 // Construction
aoqi@0 198 BytecodeStream(methodHandle method) : BaseBytecodeStream(method) { }
aoqi@0 199
aoqi@0 200 // Iteration
aoqi@0 201 Bytecodes::Code next() {
aoqi@0 202 Bytecodes::Code raw_code, code;
aoqi@0 203 // set reading position
aoqi@0 204 _bci = _next_bci;
aoqi@0 205 if (is_last_bytecode()) {
aoqi@0 206 // indicate end of bytecode stream
aoqi@0 207 raw_code = code = Bytecodes::_illegal;
aoqi@0 208 } else {
aoqi@0 209 // get bytecode
aoqi@0 210 address bcp = this->bcp();
aoqi@0 211 raw_code = Bytecodes::code_at(_method(), bcp);
aoqi@0 212 code = Bytecodes::java_code(raw_code);
aoqi@0 213 // set next bytecode position
aoqi@0 214 //
aoqi@0 215 // note that we cannot advance before having the
aoqi@0 216 // tty bytecode otherwise the stepping is wrong!
aoqi@0 217 // (carefull: length_for(...) must be used first!)
vkempik@8498 218 int len = Bytecodes::length_for(code);
vkempik@8498 219 if (len == 0) len = Bytecodes::length_at(_method(), bcp);
vkempik@8498 220 if (len <= 0 || (_bci > _end_bci - len) || (_bci - len >= _next_bci)) {
vkempik@8498 221 raw_code = code = Bytecodes::_illegal;
vkempik@8498 222 } else {
vkempik@8498 223 _next_bci += len;
vkempik@8498 224 assert(_bci < _next_bci, "length must be > 0");
vkempik@8498 225 // set attributes
vkempik@8498 226 _is_wide = false;
vkempik@8498 227 // check for special (uncommon) cases
vkempik@8498 228 if (code == Bytecodes::_wide) {
vkempik@8498 229 raw_code = (Bytecodes::Code)bcp[1];
vkempik@8498 230 code = raw_code; // wide BCs are always Java-normal
vkempik@8498 231 _is_wide = true;
vkempik@8498 232 }
vkempik@8498 233 assert(Bytecodes::is_java_code(code), "sanity check");
aoqi@0 234 }
aoqi@0 235 }
aoqi@0 236 _raw_code = raw_code;
aoqi@0 237 _code = code;
aoqi@0 238 return _code;
aoqi@0 239 }
aoqi@0 240
aoqi@0 241 bool is_active_breakpoint() const { return Bytecodes::is_active_breakpoint_at(bcp()); }
aoqi@0 242 Bytecodes::Code code() const { return _code; }
aoqi@0 243
aoqi@0 244 // Unsigned indices, widening
aoqi@0 245 int get_index() const { return is_wide() ? bytecode().get_index_u2(raw_code(), true) : get_index_u1(); }
aoqi@0 246 // Get an unsigned 2-byte index, swapping the bytes if necessary.
aoqi@0 247 int get_index_u2() const { assert_raw_stream(false);
aoqi@0 248 return bytecode().get_index_u2(raw_code(), false); }
aoqi@0 249 // Get an unsigned 2-byte index in native order.
aoqi@0 250 int get_index_u2_cpcache() const { assert_raw_stream(false);
aoqi@0 251 return bytecode().get_index_u2_cpcache(raw_code()); }
aoqi@0 252 int get_index_u4() const { assert_raw_stream(false);
aoqi@0 253 return bytecode().get_index_u4(raw_code()); }
aoqi@0 254 bool has_index_u4() const { return bytecode().has_index_u4(raw_code()); }
aoqi@0 255 };
aoqi@0 256
aoqi@0 257 #endif // SHARE_VM_INTERPRETER_BYTECODESTREAM_HPP

mercurial