bytecode.hpp 17.0 KB
Newer Older
D
duke 已提交
1
/*
J
Merge  
jrose 已提交
2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#ifndef SHARE_VM_INTERPRETER_BYTECODE_HPP
#define SHARE_VM_INTERPRETER_BYTECODE_HPP

#include "interpreter/bytecodes.hpp"
#include "memory/allocation.hpp"
#include "oops/methodOop.hpp"
#ifdef TARGET_ARCH_x86
# include "bytes_x86.hpp"
#endif
#ifdef TARGET_ARCH_sparc
# include "bytes_sparc.hpp"
#endif
#ifdef TARGET_ARCH_zero
# include "bytes_zero.hpp"
#endif

D
duke 已提交
41 42 43 44 45 46 47
// Base class for different kinds of abstractions working
// relative to an objects 'this' pointer.

class ThisRelativeObj VALUE_OBJ_CLASS_SPEC {
 public:
  // Address computation
  address addr_at            (int offset)        const     { return (address)this + offset; }
48
  int     byte_at            (int offset)        const     { return *(addr_at(offset)); }
D
duke 已提交
49 50 51
  address aligned_addr_at    (int offset)        const     { return (address)round_to((intptr_t)addr_at(offset), jintSize); }
  int     aligned_offset     (int offset)        const     { return aligned_addr_at(offset) - addr_at(0); }

52 53 54 55 56
  // Word access:
  int     get_Java_u2_at     (int offset)        const     { return Bytes::get_Java_u2(addr_at(offset)); }
  int     get_Java_u4_at     (int offset)        const     { return Bytes::get_Java_u4(addr_at(offset)); }
  int     get_native_u2_at   (int offset)        const     { return Bytes::get_native_u2(addr_at(offset)); }
  int     get_native_u4_at   (int offset)        const     { return Bytes::get_native_u4(addr_at(offset)); }
D
duke 已提交
57 58 59 60 61 62
};


// The base class for different kinds of bytecode abstractions.
// Provides the primitive operations to manipulate code relative
// to an objects 'this' pointer.
63
// FIXME: Make this a ResourceObj, include the enclosing methodOop, and cache the opcode.
D
duke 已提交
64 65 66 67

class Bytecode: public ThisRelativeObj {
 protected:
  u_char byte_at(int offset) const               { return *addr_at(offset); }
68
  bool check_must_rewrite(Bytecodes::Code bc) const;
D
duke 已提交
69 70 71 72

 public:
  // Attributes
  address bcp() const                            { return addr_at(0); }
73
  int instruction_size() const                   { return Bytecodes::length_at(bcp()); }
D
duke 已提交
74

75
  // Warning: Use code() with caution on live bytecode streams.  4926272
D
duke 已提交
76 77
  Bytecodes::Code code() const                   { return Bytecodes::code_at(addr_at(0)); }
  Bytecodes::Code java_code() const              { return Bytecodes::java_code(code()); }
78
  bool must_rewrite(Bytecodes::Code code) const  { return Bytecodes::can_rewrite(code) && check_must_rewrite(code); }
D
duke 已提交
79

80 81
  // Creation
  inline friend Bytecode* Bytecode_at(address bcp);
82

83 84 85 86 87 88 89 90 91 92 93 94
  // Static functions for parsing bytecodes in place.
  int get_index_u1(Bytecodes::Code bc) const {
    assert_same_format_as(bc); assert_index_size(1, bc);
    return *(jubyte*)addr_at(1);
  }
  int get_index_u2(Bytecodes::Code bc, bool is_wide = false) const {
    assert_same_format_as(bc, is_wide); assert_index_size(2, bc, is_wide);
    address p = addr_at(is_wide ? 2 : 1);
    if (can_use_native_byte_order(bc, is_wide))
          return Bytes::get_native_u2(p);
    else  return Bytes::get_Java_u2(p);
  }
95 96 97 98
  int get_index_u1_cpcache(Bytecodes::Code bc) const {
    assert_same_format_as(bc); assert_index_size(1, bc);
    return *(jubyte*)addr_at(1) + constantPoolOopDesc::CPCACHE_INDEX_TAG;
  }
99 100
  int get_index_u2_cpcache(Bytecodes::Code bc) const {
    assert_same_format_as(bc); assert_index_size(2, bc); assert_native_index(bc);
101
    return Bytes::get_native_u2(addr_at(1)) + constantPoolOopDesc::CPCACHE_INDEX_TAG;
102 103 104 105 106 107 108 109 110
  }
  int get_index_u4(Bytecodes::Code bc) const {
    assert_same_format_as(bc); assert_index_size(4, bc);
    assert(can_use_native_byte_order(bc), "");
    return Bytes::get_native_u4(addr_at(1));
  }
  bool has_index_u4(Bytecodes::Code bc) const {
    return bc == Bytecodes::_invokedynamic;
  }
D
duke 已提交
111

112 113 114 115 116 117 118 119
  int get_offset_s2(Bytecodes::Code bc) const {
    assert_same_format_as(bc); assert_offset_size(2, bc);
    return (jshort) Bytes::get_Java_u2(addr_at(1));
  }
  int get_offset_s4(Bytecodes::Code bc) const {
    assert_same_format_as(bc); assert_offset_size(4, bc);
    return (jint) Bytes::get_Java_u4(addr_at(1));
  }
D
duke 已提交
120

121 122 123 124 125 126 127 128
  int get_constant_u1(int offset, Bytecodes::Code bc) const {
    assert_same_format_as(bc); assert_constant_size(1, offset, bc);
    return *(jbyte*)addr_at(offset);
  }
  int get_constant_u2(int offset, Bytecodes::Code bc, bool is_wide = false) const {
    assert_same_format_as(bc, is_wide); assert_constant_size(2, offset, bc, is_wide);
    return (jshort) Bytes::get_Java_u2(addr_at(offset));
  }
129

130 131 132 133 134 135 136 137
  // These are used locally and also from bytecode streams.
  void assert_same_format_as(Bytecodes::Code testbc, bool is_wide = false) const NOT_DEBUG_RETURN;
  static void assert_index_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
  static void assert_offset_size(int required_size, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
  static void assert_constant_size(int required_size, int where, Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
  static void assert_native_index(Bytecodes::Code bc, bool is_wide = false) NOT_DEBUG_RETURN;
  static bool can_use_native_byte_order(Bytecodes::Code bc, bool is_wide = false) {
    return (!Bytes::is_Java_byte_ordering_different() || Bytecodes::native_byte_order(bc /*, is_wide*/));
138
  }
D
duke 已提交
139 140 141
};

inline Bytecode* Bytecode_at(address bcp) {
142
  // Warning: Use with caution on live bytecode streams.  4926272
D
duke 已提交
143 144 145 146 147 148 149 150 151 152 153 154
  return (Bytecode*)bcp;
}


// Abstractions for lookupswitch bytecode

class LookupswitchPair: ThisRelativeObj {
 private:
  int  _match;
  int  _offset;

 public:
155 156
  int  match() const                             { return get_Java_u4_at(0 * jintSize); }
  int  offset() const                            { return get_Java_u4_at(1 * jintSize); }
D
duke 已提交
157 158 159 160 161 162 163 164
};


class Bytecode_lookupswitch: public Bytecode {
 public:
  void verify() const PRODUCT_RETURN;

  // Attributes
165 166
  int  default_offset() const                    { return get_Java_u4_at(aligned_offset(1 + 0*jintSize)); }
  int  number_of_pairs() const                   { return get_Java_u4_at(aligned_offset(1 + 1*jintSize)); }
D
duke 已提交
167 168 169 170 171 172 173 174
  LookupswitchPair* pair_at(int i) const         { assert(0 <= i && i < number_of_pairs(), "pair index out of bounds");
                                                   return (LookupswitchPair*)aligned_addr_at(1 + (1 + i)*2*jintSize); }
  // Creation
  inline friend Bytecode_lookupswitch* Bytecode_lookupswitch_at(address bcp);
};

inline Bytecode_lookupswitch* Bytecode_lookupswitch_at(address bcp) {
  Bytecode_lookupswitch* b = (Bytecode_lookupswitch*)bcp;
175
  DEBUG_ONLY(b->verify());
D
duke 已提交
176 177 178 179 180 181 182 183 184
  return b;
}


class Bytecode_tableswitch: public Bytecode {
 public:
  void verify() const PRODUCT_RETURN;

  // Attributes
185 186 187
  int  default_offset() const                    { return get_Java_u4_at(aligned_offset(1 + 0*jintSize)); }
  int  low_key() const                           { return get_Java_u4_at(aligned_offset(1 + 1*jintSize)); }
  int  high_key() const                          { return get_Java_u4_at(aligned_offset(1 + 2*jintSize)); }
D
duke 已提交
188 189 190 191 192 193 194 195 196
  int  dest_offset_at(int i) const;
  int  length()                                  { return high_key()-low_key()+1; }

  // Creation
  inline friend Bytecode_tableswitch* Bytecode_tableswitch_at(address bcp);
};

inline Bytecode_tableswitch* Bytecode_tableswitch_at(address bcp) {
  Bytecode_tableswitch* b = (Bytecode_tableswitch*)bcp;
197
  DEBUG_ONLY(b->verify());
D
duke 已提交
198 199 200 201
  return b;
}


202
// Common code for decoding invokes and field references.
D
duke 已提交
203

204
class Bytecode_member_ref: public ResourceObj {
D
duke 已提交
205 206 207 208
 protected:
  methodHandle _method;                          // method containing the bytecode
  int          _bci;                             // position of the bytecode

209
  Bytecode_member_ref(methodHandle method, int bci)  : _method(method), _bci(bci) {}
D
duke 已提交
210 211 212 213 214 215

 public:
  // Attributes
  methodHandle method() const                    { return _method; }
  int          bci() const                       { return _bci; }
  address      bcp() const                       { return _method->bcp_from(bci()); }
216
  Bytecode*    bytecode() const                  { return Bytecode_at(bcp()); }
D
duke 已提交
217

218 219 220 221 222 223
  int          index() const;                    // cache index (loaded from instruction)
  int          pool_index() const;               // constant pool index
  symbolOop    name() const;                     // returns the name of the method or field
  symbolOop    signature() const;                // returns the signature of the method or field

  BasicType    result_type(Thread* thread) const; // returns the result type of the getfield or invoke
D
duke 已提交
224 225

  Bytecodes::Code code() const                   { return Bytecodes::code_at(bcp(), _method()); }
226 227 228 229 230 231 232 233
  Bytecodes::Code java_code() const              { return Bytecodes::java_code(code()); }
};

// Abstraction for invoke_{virtual, static, interface, special}

class Bytecode_invoke: public Bytecode_member_ref {
 protected:
  Bytecode_invoke(methodHandle method, int bci)  : Bytecode_member_ref(method, bci) {}
D
duke 已提交
234

235 236 237 238
 public:
  void verify() const;

  // Attributes
D
duke 已提交
239 240 241
  methodHandle static_target(TRAPS);             // "specified" method   (from constant pool)

  // Testers
242 243 244 245 246
  bool is_invokeinterface() const                { return java_code() == Bytecodes::_invokeinterface; }
  bool is_invokevirtual() const                  { return java_code() == Bytecodes::_invokevirtual; }
  bool is_invokestatic() const                   { return java_code() == Bytecodes::_invokestatic; }
  bool is_invokespecial() const                  { return java_code() == Bytecodes::_invokespecial; }
  bool is_invokedynamic() const                  { return java_code() == Bytecodes::_invokedynamic; }
247

248
  bool has_receiver() const                      { return !is_invokestatic() && !is_invokedynamic(); }
D
duke 已提交
249 250 251 252

  bool is_valid() const                          { return is_invokeinterface() ||
                                                          is_invokevirtual()   ||
                                                          is_invokestatic()    ||
253 254
                                                          is_invokespecial()   ||
                                                          is_invokedynamic(); }
D
duke 已提交
255 256 257 258 259 260 261 262 263 264

  // Creation
  inline friend Bytecode_invoke* Bytecode_invoke_at(methodHandle method, int bci);

  // Like Bytecode_invoke_at. Instead it returns NULL if the bci is not at an invoke.
  inline friend Bytecode_invoke* Bytecode_invoke_at_check(methodHandle method, int bci);
};

inline Bytecode_invoke* Bytecode_invoke_at(methodHandle method, int bci) {
  Bytecode_invoke* b = new Bytecode_invoke(method, bci);
265
  DEBUG_ONLY(b->verify());
D
duke 已提交
266 267 268 269 270 271 272 273 274
  return b;
}

inline Bytecode_invoke* Bytecode_invoke_at_check(methodHandle method, int bci) {
  Bytecode_invoke* b = new Bytecode_invoke(method, bci);
  return b->is_valid() ? b : NULL;
}


275 276 277 278
// Abstraction for all field accesses (put/get field/static)
class Bytecode_field: public Bytecode_member_ref {
 protected:
  Bytecode_field(methodHandle method, int bci)  : Bytecode_member_ref(method, bci) {}
D
duke 已提交
279

280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
 public:
  // Testers
  bool is_getfield() const                       { return java_code() == Bytecodes::_getfield; }
  bool is_putfield() const                       { return java_code() == Bytecodes::_putfield; }
  bool is_getstatic() const                      { return java_code() == Bytecodes::_getstatic; }
  bool is_putstatic() const                      { return java_code() == Bytecodes::_putstatic; }

  bool is_getter() const                         { return is_getfield()  || is_getstatic(); }
  bool is_static() const                         { return is_getstatic() || is_putstatic(); }

  bool is_valid() const                          { return is_getfield()   ||
                                                          is_putfield()   ||
                                                          is_getstatic()  ||
                                                          is_putstatic(); }
  void verify() const;
D
duke 已提交
295 296

  // Creation
297
  inline friend Bytecode_field* Bytecode_field_at(methodHandle method, int bci);
D
duke 已提交
298 299
};

300 301 302
inline Bytecode_field* Bytecode_field_at(methodHandle method, int bci) {
  Bytecode_field* b = new Bytecode_field(method, bci);
  DEBUG_ONLY(b->verify());
D
duke 已提交
303 304 305 306 307 308 309 310 311 312 313
  return b;
}


// Abstraction for checkcast

class Bytecode_checkcast: public Bytecode {
 public:
  void verify() const { assert(Bytecodes::java_code(code()) == Bytecodes::_checkcast, "check checkcast"); }

  // Returns index
314
  long index() const   { return get_index_u2(Bytecodes::_checkcast); };
D
duke 已提交
315 316 317 318 319 320 321

  // Creation
  inline friend Bytecode_checkcast* Bytecode_checkcast_at(address bcp);
};

inline Bytecode_checkcast* Bytecode_checkcast_at(address bcp) {
  Bytecode_checkcast* b = (Bytecode_checkcast*)bcp;
322
  DEBUG_ONLY(b->verify());
D
duke 已提交
323 324 325 326 327 328 329 330 331 332 333
  return b;
}


// Abstraction for instanceof

class Bytecode_instanceof: public Bytecode {
 public:
  void verify() const { assert(code() == Bytecodes::_instanceof, "check instanceof"); }

  // Returns index
334
  long index() const   { return get_index_u2(Bytecodes::_instanceof); };
D
duke 已提交
335 336 337 338 339 340 341

  // Creation
  inline friend Bytecode_instanceof* Bytecode_instanceof_at(address bcp);
};

inline Bytecode_instanceof* Bytecode_instanceof_at(address bcp) {
  Bytecode_instanceof* b = (Bytecode_instanceof*)bcp;
342
  DEBUG_ONLY(b->verify());
D
duke 已提交
343 344 345 346 347 348 349 350 351
  return b;
}


class Bytecode_new: public Bytecode {
 public:
  void verify() const { assert(java_code() == Bytecodes::_new, "check new"); }

  // Returns index
352
  long index() const   { return get_index_u2(Bytecodes::_new); };
D
duke 已提交
353 354 355 356 357 358 359

  // Creation
  inline friend Bytecode_new* Bytecode_new_at(address bcp);
};

inline Bytecode_new* Bytecode_new_at(address bcp) {
  Bytecode_new* b = (Bytecode_new*)bcp;
360
  DEBUG_ONLY(b->verify());
D
duke 已提交
361 362 363 364 365 366 367 368 369
  return b;
}


class Bytecode_multianewarray: public Bytecode {
 public:
  void verify() const { assert(java_code() == Bytecodes::_multianewarray, "check new"); }

  // Returns index
370
  long index() const   { return get_index_u2(Bytecodes::_multianewarray); };
D
duke 已提交
371 372 373 374 375 376 377

  // Creation
  inline friend Bytecode_multianewarray* Bytecode_multianewarray_at(address bcp);
};

inline Bytecode_multianewarray* Bytecode_multianewarray_at(address bcp) {
  Bytecode_multianewarray* b = (Bytecode_multianewarray*)bcp;
378
  DEBUG_ONLY(b->verify());
D
duke 已提交
379 380 381 382 383 384 385 386 387
  return b;
}


class Bytecode_anewarray: public Bytecode {
 public:
  void verify() const { assert(java_code() == Bytecodes::_anewarray, "check anewarray"); }

  // Returns index
388
  long index() const   { return get_index_u2(Bytecodes::_anewarray); };
D
duke 已提交
389 390 391 392 393 394 395

  // Creation
  inline friend Bytecode_anewarray* Bytecode_anewarray_at(address bcp);
};

inline Bytecode_anewarray* Bytecode_anewarray_at(address bcp) {
  Bytecode_anewarray* b = (Bytecode_anewarray*)bcp;
396
  DEBUG_ONLY(b->verify());
D
duke 已提交
397 398 399 400 401 402
  return b;
}


// Abstraction for ldc, ldc_w and ldc2_w

403 404 405 406 407 408 409 410 411 412 413
class Bytecode_loadconstant: public ResourceObj {
 private:
  int          _bci;
  methodHandle _method;

  Bytecodes::Code code() const                   { return bytecode()->code(); }

  int raw_index() const;

  Bytecode_loadconstant(methodHandle method, int bci) : _method(method), _bci(bci) {}

D
duke 已提交
414
 public:
415 416 417 418 419 420
  // Attributes
  methodHandle method() const                    { return _method; }
  int          bci() const                       { return _bci; }
  address      bcp() const                       { return _method->bcp_from(bci()); }
  Bytecode*    bytecode() const                  { return Bytecode_at(bcp()); }

D
duke 已提交
421
  void verify() const {
422
    assert(_method.not_null(), "must supply method");
D
duke 已提交
423 424 425 426 427 428
    Bytecodes::Code stdc = Bytecodes::java_code(code());
    assert(stdc == Bytecodes::_ldc ||
           stdc == Bytecodes::_ldc_w ||
           stdc == Bytecodes::_ldc2_w, "load constant");
  }

429 430
  // Only non-standard bytecodes (fast_aldc) have CP cache indexes.
  bool has_cache_index() const { return code() >= Bytecodes::number_of_java_codes; }
D
duke 已提交
431

432 433 434 435 436 437 438 439 440 441 442
  int pool_index() const;               // index into constant pool
  int cache_index() const {             // index into CP cache (or -1 if none)
    return has_cache_index() ? raw_index() : -1;
  }

  BasicType result_type() const;        // returns the result type of the ldc

  oop resolve_constant(TRAPS) const;

  // Creation
  inline friend Bytecode_loadconstant* Bytecode_loadconstant_at(methodHandle method, int bci);
D
duke 已提交
443 444
};

445 446 447
inline Bytecode_loadconstant* Bytecode_loadconstant_at(methodHandle method, int bci) {
  Bytecode_loadconstant* b = new Bytecode_loadconstant(method, bci);
  DEBUG_ONLY(b->verify());
D
duke 已提交
448 449
  return b;
}
450 451

#endif // SHARE_VM_INTERPRETER_BYTECODE_HPP