src/share/vm/interpreter/bytecodes.cpp

Wed, 03 Jul 2019 20:42:37 +0800

author
aoqi
date
Wed, 03 Jul 2019 20:42:37 +0800
changeset 9637
eef07cd490d4
parent 8604
04d83ba48607
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * 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  *
    19  * 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.
    22  *
    23  */
    25 /*
    26  * This file has been modified by Loongson Technology in 2015. These
    27  * modifications are Copyright (c) 2015 Loongson Technology, and are made
    28  * available on the same license terms set forth above.
    29  */
    31 #include "precompiled.hpp"
    32 #include "interpreter/bytecodes.hpp"
    33 #include "memory/resourceArea.hpp"
    34 #include "oops/method.hpp"
    35 #ifdef TARGET_ARCH_x86
    36 # include "bytes_x86.hpp"
    37 #endif
    38 #ifdef TARGET_ARCH_mips
    39 # include "bytes_mips.hpp"
    40 #endif
    41 #ifdef TARGET_ARCH_sparc
    42 # include "bytes_sparc.hpp"
    43 #endif
    44 #ifdef TARGET_ARCH_zero
    45 # include "bytes_zero.hpp"
    46 #endif
    47 #ifdef TARGET_ARCH_arm
    48 # include "bytes_arm.hpp"
    49 #endif
    50 #ifdef TARGET_ARCH_ppc
    51 # include "bytes_ppc.hpp"
    52 #endif
    55 #if defined(WIN32) && (defined(_MSC_VER) && (_MSC_VER < 1600))
    56 // Windows AMD64 Compiler Hangs compiling this file
    57 // unless optimization is off
    58 #ifdef _M_AMD64
    59 #pragma optimize ("", off)
    60 #endif
    61 #endif
    64 bool            Bytecodes::_is_initialized = false;
    65 const char*     Bytecodes::_name          [Bytecodes::number_of_codes];
    66 BasicType       Bytecodes::_result_type   [Bytecodes::number_of_codes];
    67 s_char          Bytecodes::_depth         [Bytecodes::number_of_codes];
    68 u_char          Bytecodes::_lengths       [Bytecodes::number_of_codes];
    69 Bytecodes::Code Bytecodes::_java_code     [Bytecodes::number_of_codes];
    70 u_short         Bytecodes::_flags         [(1<<BitsPerByte)*2];
    72 #ifdef ASSERT
    73 bool Bytecodes::check_method(const Method* method, address bcp) {
    74   return method->contains(bcp);
    75 }
    76 #endif
    78 bool Bytecodes::check_must_rewrite(Bytecodes::Code code) {
    79   assert(can_rewrite(code), "post-check only");
    81   // Some codes are conditionally rewriting.  Look closely at them.
    82   switch (code) {
    83   case Bytecodes::_aload_0:
    84     // Even if RewriteFrequentPairs is turned on,
    85     // the _aload_0 code might delay its rewrite until
    86     // a following _getfield rewrites itself.
    87     return false;
    89   case Bytecodes::_lookupswitch:
    90     return false;  // the rewrite is not done by the interpreter
    92   case Bytecodes::_new:
    93     // (Could actually look at the class here, but the profit would be small.)
    94     return false;  // the rewrite is not always done
    95   }
    97   // No other special cases.
    98   return true;
    99 }
   101 Bytecodes::Code Bytecodes::code_at(Method* method, int bci) {
   102   return code_at(method, method->bcp_from(bci));
   103 }
   105 Bytecodes::Code Bytecodes::non_breakpoint_code_at(const Method* method, address bcp) {
   106   assert(method != NULL, "must have the method for breakpoint conversion");
   107   assert(method->contains(bcp), "must be valid bcp in method");
   108   return method->orig_bytecode_at(method->bci_from(bcp));
   109 }
   111 int Bytecodes::special_length_at(Bytecodes::Code code, address bcp, address end) {
   112   switch (code) {
   113   case _wide:
   114     if (end != NULL && bcp + 1 >= end) {
   115       return -1; // don't read past end of code buffer
   116     }
   117     return wide_length_for(cast(*(bcp + 1)));
   118   case _tableswitch:
   119     { address aligned_bcp = (address)round_to((intptr_t)bcp + 1, jintSize);
   120       if (end != NULL && aligned_bcp + 3*jintSize >= end) {
   121         return -1; // don't read past end of code buffer
   122       }
   123       jlong lo = (jint)Bytes::get_Java_u4(aligned_bcp + 1*jintSize);
   124       jlong hi = (jint)Bytes::get_Java_u4(aligned_bcp + 2*jintSize);
   125       jlong len = (aligned_bcp - bcp) + (3 + hi - lo + 1)*jintSize;
   126       // only return len if it can be represented as a positive int;
   127       // return -1 otherwise
   128       return (len > 0 && len == (int)len) ? len : -1;
   129     }
   131   case _lookupswitch:      // fall through
   132   case _fast_binaryswitch: // fall through
   133   case _fast_linearswitch:
   134     { address aligned_bcp = (address)round_to((intptr_t)bcp + 1, jintSize);
   135       if (end != NULL && aligned_bcp + 2*jintSize >= end) {
   136         return -1; // don't read past end of code buffer
   137       }
   138       jlong npairs = (jint)Bytes::get_Java_u4(aligned_bcp + jintSize);
   139       jlong len = (aligned_bcp - bcp) + (2 + 2*npairs)*jintSize;
   140       // only return len if it can be represented as a positive int;
   141       // return -1 otherwise
   142       return (len > 0 && len == (int)len) ? len : -1;
   143     }
   144   }
   145   // Note: Length functions must return <=0 for invalid bytecodes.
   146   return 0;
   147 }
   149 // At a breakpoint instruction, this returns the breakpoint's length,
   150 // otherwise, it's the same as special_length_at().  This is used by
   151 // the RawByteCodeStream, which wants to see the actual bytecode
   152 // values (including breakpoint).  RawByteCodeStream is used by the
   153 // verifier when reading in bytecode to verify.  Other mechanisms that
   154 // run at runtime (such as generateOopMaps) need to iterate over the code
   155 // and don't expect to see breakpoints: they want to see the instruction
   156 // which was replaced so that they can get the correct length and find
   157 // the next bytecode.
   158 //
   159 // 'end' indicates the end of the code buffer, which we should not try to read
   160 // past.
   161 int Bytecodes::raw_special_length_at(address bcp, address end) {
   162   Code code = code_or_bp_at(bcp);
   163   if (code == _breakpoint) {
   164     return 1;
   165   } else {
   166     return special_length_at(code, bcp, end);
   167   }
   168 }
   172 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap) {
   173   def(code, name, format, wide_format, result_type, depth, can_trap, code);
   174 }
   177 void Bytecodes::def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code) {
   178   assert(wide_format == NULL || format != NULL, "short form must exist if there's a wide form");
   179   int len  = (format      != NULL ? (int) strlen(format)      : 0);
   180   int wlen = (wide_format != NULL ? (int) strlen(wide_format) : 0);
   181   _name          [code] = name;
   182   _result_type   [code] = result_type;
   183   _depth         [code] = depth;
   184   _lengths       [code] = (wlen << 4) | (len & 0xF);
   185   _java_code     [code] = java_code;
   186   int bc_flags = 0;
   187   if (can_trap)           bc_flags |= _bc_can_trap;
   188   if (java_code != code)  bc_flags |= _bc_can_rewrite;
   189   _flags[(u1)code+0*(1<<BitsPerByte)] = compute_flags(format,      bc_flags);
   190   _flags[(u1)code+1*(1<<BitsPerByte)] = compute_flags(wide_format, bc_flags);
   191   assert(is_defined(code)      == (format != NULL),      "");
   192   assert(wide_is_defined(code) == (wide_format != NULL), "");
   193   assert(length_for(code)      == len, "");
   194   assert(wide_length_for(code) == wlen, "");
   195 }
   198 // Format strings interpretation:
   199 //
   200 // b: bytecode
   201 // c: signed constant, Java byte-ordering
   202 // i: unsigned local index, Java byte-ordering (I = native byte ordering)
   203 // j: unsigned CP cache index, Java byte-ordering (J = native byte ordering)
   204 // k: unsigned CP index, Java byte-ordering
   205 // o: branch offset, Java byte-ordering
   206 // _: unused/ignored
   207 // w: wide bytecode
   208 //
   209 // Note: The format strings are used for 2 purposes:
   210 //       1. to specify the length of the bytecode
   211 //          (= number of characters in format string)
   212 //       2. to derive bytecode format flags (_fmt_has_k, etc.)
   213 //
   214 // Note: For bytecodes with variable length, the format string is the empty string.
   216 int Bytecodes::compute_flags(const char* format, int more_flags) {
   217   if (format == NULL)  return 0;  // not even more_flags
   218   int flags = more_flags;
   219   const char* fp = format;
   220   switch (*fp) {
   221   case '\0':
   222     flags |= _fmt_not_simple; // but variable
   223     break;
   224   case 'b':
   225     flags |= _fmt_not_variable;  // but simple
   226     ++fp;  // skip 'b'
   227     break;
   228   case 'w':
   229     flags |= _fmt_not_variable | _fmt_not_simple;
   230     ++fp;  // skip 'w'
   231     guarantee(*fp == 'b', "wide format must start with 'wb'");
   232     ++fp;  // skip 'b'
   233     break;
   234   }
   236   int has_nbo = 0, has_jbo = 0, has_size = 0;
   237   for (;;) {
   238     int this_flag = 0;
   239     char fc = *fp++;
   240     switch (fc) {
   241     case '\0':  // end of string
   242       assert(flags == (jchar)flags, "change _format_flags");
   243       return flags;
   245     case '_': continue;         // ignore these
   247     case 'j': this_flag = _fmt_has_j; has_jbo = 1; break;
   248     case 'k': this_flag = _fmt_has_k; has_jbo = 1; break;
   249     case 'i': this_flag = _fmt_has_i; has_jbo = 1; break;
   250     case 'c': this_flag = _fmt_has_c; has_jbo = 1; break;
   251     case 'o': this_flag = _fmt_has_o; has_jbo = 1; break;
   253     // uppercase versions mark native byte order (from Rewriter)
   254     // actually, only the 'J' case happens currently
   255     case 'J': this_flag = _fmt_has_j; has_nbo = 1; break;
   256     case 'K': this_flag = _fmt_has_k; has_nbo = 1; break;
   257     case 'I': this_flag = _fmt_has_i; has_nbo = 1; break;
   258     case 'C': this_flag = _fmt_has_c; has_nbo = 1; break;
   259     case 'O': this_flag = _fmt_has_o; has_nbo = 1; break;
   260     default:  guarantee(false, "bad char in format");
   261     }
   263     flags |= this_flag;
   265     guarantee(!(has_jbo && has_nbo), "mixed byte orders in format");
   266     if (has_nbo)
   267       flags |= _fmt_has_nbo;
   269     int this_size = 1;
   270     if (*fp == fc) {
   271       // advance beyond run of the same characters
   272       this_size = 2;
   273       while (*++fp == fc)  this_size++;
   274       switch (this_size) {
   275       case 2: flags |= _fmt_has_u2; break;
   276       case 4: flags |= _fmt_has_u4; break;
   277       default: guarantee(false, "bad rep count in format");
   278       }
   279     }
   280     guarantee(has_size == 0 ||                     // no field yet
   281               this_size == has_size ||             // same size
   282               this_size < has_size && *fp == '\0', // last field can be short
   283               "mixed field sizes in format");
   284     has_size = this_size;
   285   }
   286 }
   288 void Bytecodes::initialize() {
   289   if (_is_initialized) return;
   290   assert(number_of_codes <= 256, "too many bytecodes");
   292   // initialize bytecode tables - didn't use static array initializers
   293   // (such as {}) so we can do additional consistency checks and init-
   294   // code is independent of actual bytecode numbering.
   295   //
   296   // Note 1: NULL for the format string means the bytecode doesn't exist
   297   //         in that form.
   298   //
   299   // Note 2: The result type is T_ILLEGAL for bytecodes where the top of stack
   300   //         type after execution is not only determined by the bytecode itself.
   302   //  Java bytecodes
   303   //  bytecode               bytecode name           format   wide f.   result tp  stk traps
   304   def(_nop                 , "nop"                 , "b"    , NULL    , T_VOID   ,  0, false);
   305   def(_aconst_null         , "aconst_null"         , "b"    , NULL    , T_OBJECT ,  1, false);
   306   def(_iconst_m1           , "iconst_m1"           , "b"    , NULL    , T_INT    ,  1, false);
   307   def(_iconst_0            , "iconst_0"            , "b"    , NULL    , T_INT    ,  1, false);
   308   def(_iconst_1            , "iconst_1"            , "b"    , NULL    , T_INT    ,  1, false);
   309   def(_iconst_2            , "iconst_2"            , "b"    , NULL    , T_INT    ,  1, false);
   310   def(_iconst_3            , "iconst_3"            , "b"    , NULL    , T_INT    ,  1, false);
   311   def(_iconst_4            , "iconst_4"            , "b"    , NULL    , T_INT    ,  1, false);
   312   def(_iconst_5            , "iconst_5"            , "b"    , NULL    , T_INT    ,  1, false);
   313   def(_lconst_0            , "lconst_0"            , "b"    , NULL    , T_LONG   ,  2, false);
   314   def(_lconst_1            , "lconst_1"            , "b"    , NULL    , T_LONG   ,  2, false);
   315   def(_fconst_0            , "fconst_0"            , "b"    , NULL    , T_FLOAT  ,  1, false);
   316   def(_fconst_1            , "fconst_1"            , "b"    , NULL    , T_FLOAT  ,  1, false);
   317   def(_fconst_2            , "fconst_2"            , "b"    , NULL    , T_FLOAT  ,  1, false);
   318   def(_dconst_0            , "dconst_0"            , "b"    , NULL    , T_DOUBLE ,  2, false);
   319   def(_dconst_1            , "dconst_1"            , "b"    , NULL    , T_DOUBLE ,  2, false);
   320   def(_bipush              , "bipush"              , "bc"   , NULL    , T_INT    ,  1, false);
   321   def(_sipush              , "sipush"              , "bcc"  , NULL    , T_INT    ,  1, false);
   322   def(_ldc                 , "ldc"                 , "bk"   , NULL    , T_ILLEGAL,  1, true );
   323   def(_ldc_w               , "ldc_w"               , "bkk"  , NULL    , T_ILLEGAL,  1, true );
   324   def(_ldc2_w              , "ldc2_w"              , "bkk"  , NULL    , T_ILLEGAL,  2, true );
   325   def(_iload               , "iload"               , "bi"   , "wbii"  , T_INT    ,  1, false);
   326   def(_lload               , "lload"               , "bi"   , "wbii"  , T_LONG   ,  2, false);
   327   def(_fload               , "fload"               , "bi"   , "wbii"  , T_FLOAT  ,  1, false);
   328   def(_dload               , "dload"               , "bi"   , "wbii"  , T_DOUBLE ,  2, false);
   329   def(_aload               , "aload"               , "bi"   , "wbii"  , T_OBJECT ,  1, false);
   330   def(_iload_0             , "iload_0"             , "b"    , NULL    , T_INT    ,  1, false);
   331   def(_iload_1             , "iload_1"             , "b"    , NULL    , T_INT    ,  1, false);
   332   def(_iload_2             , "iload_2"             , "b"    , NULL    , T_INT    ,  1, false);
   333   def(_iload_3             , "iload_3"             , "b"    , NULL    , T_INT    ,  1, false);
   334   def(_lload_0             , "lload_0"             , "b"    , NULL    , T_LONG   ,  2, false);
   335   def(_lload_1             , "lload_1"             , "b"    , NULL    , T_LONG   ,  2, false);
   336   def(_lload_2             , "lload_2"             , "b"    , NULL    , T_LONG   ,  2, false);
   337   def(_lload_3             , "lload_3"             , "b"    , NULL    , T_LONG   ,  2, false);
   338   def(_fload_0             , "fload_0"             , "b"    , NULL    , T_FLOAT  ,  1, false);
   339   def(_fload_1             , "fload_1"             , "b"    , NULL    , T_FLOAT  ,  1, false);
   340   def(_fload_2             , "fload_2"             , "b"    , NULL    , T_FLOAT  ,  1, false);
   341   def(_fload_3             , "fload_3"             , "b"    , NULL    , T_FLOAT  ,  1, false);
   342   def(_dload_0             , "dload_0"             , "b"    , NULL    , T_DOUBLE ,  2, false);
   343   def(_dload_1             , "dload_1"             , "b"    , NULL    , T_DOUBLE ,  2, false);
   344   def(_dload_2             , "dload_2"             , "b"    , NULL    , T_DOUBLE ,  2, false);
   345   def(_dload_3             , "dload_3"             , "b"    , NULL    , T_DOUBLE ,  2, false);
   346   def(_aload_0             , "aload_0"             , "b"    , NULL    , T_OBJECT ,  1, true ); // rewriting in interpreter
   347   def(_aload_1             , "aload_1"             , "b"    , NULL    , T_OBJECT ,  1, false);
   348   def(_aload_2             , "aload_2"             , "b"    , NULL    , T_OBJECT ,  1, false);
   349   def(_aload_3             , "aload_3"             , "b"    , NULL    , T_OBJECT ,  1, false);
   350   def(_iaload              , "iaload"              , "b"    , NULL    , T_INT    , -1, true );
   351   def(_laload              , "laload"              , "b"    , NULL    , T_LONG   ,  0, true );
   352   def(_faload              , "faload"              , "b"    , NULL    , T_FLOAT  , -1, true );
   353   def(_daload              , "daload"              , "b"    , NULL    , T_DOUBLE ,  0, true );
   354   def(_aaload              , "aaload"              , "b"    , NULL    , T_OBJECT , -1, true );
   355   def(_baload              , "baload"              , "b"    , NULL    , T_INT    , -1, true );
   356   def(_caload              , "caload"              , "b"    , NULL    , T_INT    , -1, true );
   357   def(_saload              , "saload"              , "b"    , NULL    , T_INT    , -1, true );
   358   def(_istore              , "istore"              , "bi"   , "wbii"  , T_VOID   , -1, false);
   359   def(_lstore              , "lstore"              , "bi"   , "wbii"  , T_VOID   , -2, false);
   360   def(_fstore              , "fstore"              , "bi"   , "wbii"  , T_VOID   , -1, false);
   361   def(_dstore              , "dstore"              , "bi"   , "wbii"  , T_VOID   , -2, false);
   362   def(_astore              , "astore"              , "bi"   , "wbii"  , T_VOID   , -1, false);
   363   def(_istore_0            , "istore_0"            , "b"    , NULL    , T_VOID   , -1, false);
   364   def(_istore_1            , "istore_1"            , "b"    , NULL    , T_VOID   , -1, false);
   365   def(_istore_2            , "istore_2"            , "b"    , NULL    , T_VOID   , -1, false);
   366   def(_istore_3            , "istore_3"            , "b"    , NULL    , T_VOID   , -1, false);
   367   def(_lstore_0            , "lstore_0"            , "b"    , NULL    , T_VOID   , -2, false);
   368   def(_lstore_1            , "lstore_1"            , "b"    , NULL    , T_VOID   , -2, false);
   369   def(_lstore_2            , "lstore_2"            , "b"    , NULL    , T_VOID   , -2, false);
   370   def(_lstore_3            , "lstore_3"            , "b"    , NULL    , T_VOID   , -2, false);
   371   def(_fstore_0            , "fstore_0"            , "b"    , NULL    , T_VOID   , -1, false);
   372   def(_fstore_1            , "fstore_1"            , "b"    , NULL    , T_VOID   , -1, false);
   373   def(_fstore_2            , "fstore_2"            , "b"    , NULL    , T_VOID   , -1, false);
   374   def(_fstore_3            , "fstore_3"            , "b"    , NULL    , T_VOID   , -1, false);
   375   def(_dstore_0            , "dstore_0"            , "b"    , NULL    , T_VOID   , -2, false);
   376   def(_dstore_1            , "dstore_1"            , "b"    , NULL    , T_VOID   , -2, false);
   377   def(_dstore_2            , "dstore_2"            , "b"    , NULL    , T_VOID   , -2, false);
   378   def(_dstore_3            , "dstore_3"            , "b"    , NULL    , T_VOID   , -2, false);
   379   def(_astore_0            , "astore_0"            , "b"    , NULL    , T_VOID   , -1, false);
   380   def(_astore_1            , "astore_1"            , "b"    , NULL    , T_VOID   , -1, false);
   381   def(_astore_2            , "astore_2"            , "b"    , NULL    , T_VOID   , -1, false);
   382   def(_astore_3            , "astore_3"            , "b"    , NULL    , T_VOID   , -1, false);
   383   def(_iastore             , "iastore"             , "b"    , NULL    , T_VOID   , -3, true );
   384   def(_lastore             , "lastore"             , "b"    , NULL    , T_VOID   , -4, true );
   385   def(_fastore             , "fastore"             , "b"    , NULL    , T_VOID   , -3, true );
   386   def(_dastore             , "dastore"             , "b"    , NULL    , T_VOID   , -4, true );
   387   def(_aastore             , "aastore"             , "b"    , NULL    , T_VOID   , -3, true );
   388   def(_bastore             , "bastore"             , "b"    , NULL    , T_VOID   , -3, true );
   389   def(_castore             , "castore"             , "b"    , NULL    , T_VOID   , -3, true );
   390   def(_sastore             , "sastore"             , "b"    , NULL    , T_VOID   , -3, true );
   391   def(_pop                 , "pop"                 , "b"    , NULL    , T_VOID   , -1, false);
   392   def(_pop2                , "pop2"                , "b"    , NULL    , T_VOID   , -2, false);
   393   def(_dup                 , "dup"                 , "b"    , NULL    , T_VOID   ,  1, false);
   394   def(_dup_x1              , "dup_x1"              , "b"    , NULL    , T_VOID   ,  1, false);
   395   def(_dup_x2              , "dup_x2"              , "b"    , NULL    , T_VOID   ,  1, false);
   396   def(_dup2                , "dup2"                , "b"    , NULL    , T_VOID   ,  2, false);
   397   def(_dup2_x1             , "dup2_x1"             , "b"    , NULL    , T_VOID   ,  2, false);
   398   def(_dup2_x2             , "dup2_x2"             , "b"    , NULL    , T_VOID   ,  2, false);
   399   def(_swap                , "swap"                , "b"    , NULL    , T_VOID   ,  0, false);
   400   def(_iadd                , "iadd"                , "b"    , NULL    , T_INT    , -1, false);
   401   def(_ladd                , "ladd"                , "b"    , NULL    , T_LONG   , -2, false);
   402   def(_fadd                , "fadd"                , "b"    , NULL    , T_FLOAT  , -1, false);
   403   def(_dadd                , "dadd"                , "b"    , NULL    , T_DOUBLE , -2, false);
   404   def(_isub                , "isub"                , "b"    , NULL    , T_INT    , -1, false);
   405   def(_lsub                , "lsub"                , "b"    , NULL    , T_LONG   , -2, false);
   406   def(_fsub                , "fsub"                , "b"    , NULL    , T_FLOAT  , -1, false);
   407   def(_dsub                , "dsub"                , "b"    , NULL    , T_DOUBLE , -2, false);
   408   def(_imul                , "imul"                , "b"    , NULL    , T_INT    , -1, false);
   409   def(_lmul                , "lmul"                , "b"    , NULL    , T_LONG   , -2, false);
   410   def(_fmul                , "fmul"                , "b"    , NULL    , T_FLOAT  , -1, false);
   411   def(_dmul                , "dmul"                , "b"    , NULL    , T_DOUBLE , -2, false);
   412   def(_idiv                , "idiv"                , "b"    , NULL    , T_INT    , -1, true );
   413   def(_ldiv                , "ldiv"                , "b"    , NULL    , T_LONG   , -2, true );
   414   def(_fdiv                , "fdiv"                , "b"    , NULL    , T_FLOAT  , -1, false);
   415   def(_ddiv                , "ddiv"                , "b"    , NULL    , T_DOUBLE , -2, false);
   416   def(_irem                , "irem"                , "b"    , NULL    , T_INT    , -1, true );
   417   def(_lrem                , "lrem"                , "b"    , NULL    , T_LONG   , -2, true );
   418   def(_frem                , "frem"                , "b"    , NULL    , T_FLOAT  , -1, false);
   419   def(_drem                , "drem"                , "b"    , NULL    , T_DOUBLE , -2, false);
   420   def(_ineg                , "ineg"                , "b"    , NULL    , T_INT    ,  0, false);
   421   def(_lneg                , "lneg"                , "b"    , NULL    , T_LONG   ,  0, false);
   422   def(_fneg                , "fneg"                , "b"    , NULL    , T_FLOAT  ,  0, false);
   423   def(_dneg                , "dneg"                , "b"    , NULL    , T_DOUBLE ,  0, false);
   424   def(_ishl                , "ishl"                , "b"    , NULL    , T_INT    , -1, false);
   425   def(_lshl                , "lshl"                , "b"    , NULL    , T_LONG   , -1, false);
   426   def(_ishr                , "ishr"                , "b"    , NULL    , T_INT    , -1, false);
   427   def(_lshr                , "lshr"                , "b"    , NULL    , T_LONG   , -1, false);
   428   def(_iushr               , "iushr"               , "b"    , NULL    , T_INT    , -1, false);
   429   def(_lushr               , "lushr"               , "b"    , NULL    , T_LONG   , -1, false);
   430   def(_iand                , "iand"                , "b"    , NULL    , T_INT    , -1, false);
   431   def(_land                , "land"                , "b"    , NULL    , T_LONG   , -2, false);
   432   def(_ior                 , "ior"                 , "b"    , NULL    , T_INT    , -1, false);
   433   def(_lor                 , "lor"                 , "b"    , NULL    , T_LONG   , -2, false);
   434   def(_ixor                , "ixor"                , "b"    , NULL    , T_INT    , -1, false);
   435   def(_lxor                , "lxor"                , "b"    , NULL    , T_LONG   , -2, false);
   436   def(_iinc                , "iinc"                , "bic"  , "wbiicc", T_VOID   ,  0, false);
   437   def(_i2l                 , "i2l"                 , "b"    , NULL    , T_LONG   ,  1, false);
   438   def(_i2f                 , "i2f"                 , "b"    , NULL    , T_FLOAT  ,  0, false);
   439   def(_i2d                 , "i2d"                 , "b"    , NULL    , T_DOUBLE ,  1, false);
   440   def(_l2i                 , "l2i"                 , "b"    , NULL    , T_INT    , -1, false);
   441   def(_l2f                 , "l2f"                 , "b"    , NULL    , T_FLOAT  , -1, false);
   442   def(_l2d                 , "l2d"                 , "b"    , NULL    , T_DOUBLE ,  0, false);
   443   def(_f2i                 , "f2i"                 , "b"    , NULL    , T_INT    ,  0, false);
   444   def(_f2l                 , "f2l"                 , "b"    , NULL    , T_LONG   ,  1, false);
   445   def(_f2d                 , "f2d"                 , "b"    , NULL    , T_DOUBLE ,  1, false);
   446   def(_d2i                 , "d2i"                 , "b"    , NULL    , T_INT    , -1, false);
   447   def(_d2l                 , "d2l"                 , "b"    , NULL    , T_LONG   ,  0, false);
   448   def(_d2f                 , "d2f"                 , "b"    , NULL    , T_FLOAT  , -1, false);
   449   def(_i2b                 , "i2b"                 , "b"    , NULL    , T_BYTE   ,  0, false);
   450   def(_i2c                 , "i2c"                 , "b"    , NULL    , T_CHAR   ,  0, false);
   451   def(_i2s                 , "i2s"                 , "b"    , NULL    , T_SHORT  ,  0, false);
   452   def(_lcmp                , "lcmp"                , "b"    , NULL    , T_VOID   , -3, false);
   453   def(_fcmpl               , "fcmpl"               , "b"    , NULL    , T_VOID   , -1, false);
   454   def(_fcmpg               , "fcmpg"               , "b"    , NULL    , T_VOID   , -1, false);
   455   def(_dcmpl               , "dcmpl"               , "b"    , NULL    , T_VOID   , -3, false);
   456   def(_dcmpg               , "dcmpg"               , "b"    , NULL    , T_VOID   , -3, false);
   457   def(_ifeq                , "ifeq"                , "boo"  , NULL    , T_VOID   , -1, false);
   458   def(_ifne                , "ifne"                , "boo"  , NULL    , T_VOID   , -1, false);
   459   def(_iflt                , "iflt"                , "boo"  , NULL    , T_VOID   , -1, false);
   460   def(_ifge                , "ifge"                , "boo"  , NULL    , T_VOID   , -1, false);
   461   def(_ifgt                , "ifgt"                , "boo"  , NULL    , T_VOID   , -1, false);
   462   def(_ifle                , "ifle"                , "boo"  , NULL    , T_VOID   , -1, false);
   463   def(_if_icmpeq           , "if_icmpeq"           , "boo"  , NULL    , T_VOID   , -2, false);
   464   def(_if_icmpne           , "if_icmpne"           , "boo"  , NULL    , T_VOID   , -2, false);
   465   def(_if_icmplt           , "if_icmplt"           , "boo"  , NULL    , T_VOID   , -2, false);
   466   def(_if_icmpge           , "if_icmpge"           , "boo"  , NULL    , T_VOID   , -2, false);
   467   def(_if_icmpgt           , "if_icmpgt"           , "boo"  , NULL    , T_VOID   , -2, false);
   468   def(_if_icmple           , "if_icmple"           , "boo"  , NULL    , T_VOID   , -2, false);
   469   def(_if_acmpeq           , "if_acmpeq"           , "boo"  , NULL    , T_VOID   , -2, false);
   470   def(_if_acmpne           , "if_acmpne"           , "boo"  , NULL    , T_VOID   , -2, false);
   471   def(_goto                , "goto"                , "boo"  , NULL    , T_VOID   ,  0, false);
   472   def(_jsr                 , "jsr"                 , "boo"  , NULL    , T_INT    ,  0, false);
   473   def(_ret                 , "ret"                 , "bi"   , "wbii"  , T_VOID   ,  0, false);
   474   def(_tableswitch         , "tableswitch"         , ""     , NULL    , T_VOID   , -1, false); // may have backward branches
   475   def(_lookupswitch        , "lookupswitch"        , ""     , NULL    , T_VOID   , -1, false); // rewriting in interpreter
   476   def(_ireturn             , "ireturn"             , "b"    , NULL    , T_INT    , -1, true);
   477   def(_lreturn             , "lreturn"             , "b"    , NULL    , T_LONG   , -2, true);
   478   def(_freturn             , "freturn"             , "b"    , NULL    , T_FLOAT  , -1, true);
   479   def(_dreturn             , "dreturn"             , "b"    , NULL    , T_DOUBLE , -2, true);
   480   def(_areturn             , "areturn"             , "b"    , NULL    , T_OBJECT , -1, true);
   481   def(_return              , "return"              , "b"    , NULL    , T_VOID   ,  0, true);
   482   def(_getstatic           , "getstatic"           , "bJJ"  , NULL    , T_ILLEGAL,  1, true );
   483   def(_putstatic           , "putstatic"           , "bJJ"  , NULL    , T_ILLEGAL, -1, true );
   484   def(_getfield            , "getfield"            , "bJJ"  , NULL    , T_ILLEGAL,  0, true );
   485   def(_putfield            , "putfield"            , "bJJ"  , NULL    , T_ILLEGAL, -2, true );
   486   def(_invokevirtual       , "invokevirtual"       , "bJJ"  , NULL    , T_ILLEGAL, -1, true);
   487   def(_invokespecial       , "invokespecial"       , "bJJ"  , NULL    , T_ILLEGAL, -1, true);
   488   def(_invokestatic        , "invokestatic"        , "bJJ"  , NULL    , T_ILLEGAL,  0, true);
   489   def(_invokeinterface     , "invokeinterface"     , "bJJ__", NULL    , T_ILLEGAL, -1, true);
   490   def(_invokedynamic       , "invokedynamic"       , "bJJJJ", NULL    , T_ILLEGAL,  0, true );
   491   def(_new                 , "new"                 , "bkk"  , NULL    , T_OBJECT ,  1, true );
   492   def(_newarray            , "newarray"            , "bc"   , NULL    , T_OBJECT ,  0, true );
   493   def(_anewarray           , "anewarray"           , "bkk"  , NULL    , T_OBJECT ,  0, true );
   494   def(_arraylength         , "arraylength"         , "b"    , NULL    , T_VOID   ,  0, true );
   495   def(_athrow              , "athrow"              , "b"    , NULL    , T_VOID   , -1, true );
   496   def(_checkcast           , "checkcast"           , "bkk"  , NULL    , T_OBJECT ,  0, true );
   497   def(_instanceof          , "instanceof"          , "bkk"  , NULL    , T_INT    ,  0, true );
   498   def(_monitorenter        , "monitorenter"        , "b"    , NULL    , T_VOID   , -1, true );
   499   def(_monitorexit         , "monitorexit"         , "b"    , NULL    , T_VOID   , -1, true );
   500   def(_wide                , "wide"                , ""     , NULL    , T_VOID   ,  0, false);
   501   def(_multianewarray      , "multianewarray"      , "bkkc" , NULL    , T_OBJECT ,  1, true );
   502   def(_ifnull              , "ifnull"              , "boo"  , NULL    , T_VOID   , -1, false);
   503   def(_ifnonnull           , "ifnonnull"           , "boo"  , NULL    , T_VOID   , -1, false);
   504   def(_goto_w              , "goto_w"              , "boooo", NULL    , T_VOID   ,  0, false);
   505   def(_jsr_w               , "jsr_w"               , "boooo", NULL    , T_INT    ,  0, false);
   506   def(_breakpoint          , "breakpoint"          , ""     , NULL    , T_VOID   ,  0, true);
   508   //  JVM bytecodes
   509   //  bytecode               bytecode name           format   wide f.   result tp  stk traps  std code
   511   def(_fast_agetfield      , "fast_agetfield"      , "bJJ"  , NULL    , T_OBJECT ,  0, true , _getfield       );
   512   def(_fast_bgetfield      , "fast_bgetfield"      , "bJJ"  , NULL    , T_INT    ,  0, true , _getfield       );
   513   def(_fast_cgetfield      , "fast_cgetfield"      , "bJJ"  , NULL    , T_CHAR   ,  0, true , _getfield       );
   514   def(_fast_dgetfield      , "fast_dgetfield"      , "bJJ"  , NULL    , T_DOUBLE ,  0, true , _getfield       );
   515   def(_fast_fgetfield      , "fast_fgetfield"      , "bJJ"  , NULL    , T_FLOAT  ,  0, true , _getfield       );
   516   def(_fast_igetfield      , "fast_igetfield"      , "bJJ"  , NULL    , T_INT    ,  0, true , _getfield       );
   517   def(_fast_lgetfield      , "fast_lgetfield"      , "bJJ"  , NULL    , T_LONG   ,  0, true , _getfield       );
   518   def(_fast_sgetfield      , "fast_sgetfield"      , "bJJ"  , NULL    , T_SHORT  ,  0, true , _getfield       );
   520   def(_fast_aputfield      , "fast_aputfield"      , "bJJ"  , NULL    , T_OBJECT ,  0, true , _putfield       );
   521   def(_fast_bputfield      , "fast_bputfield"      , "bJJ"  , NULL    , T_INT    ,  0, true , _putfield       );
   522   def(_fast_zputfield      , "fast_zputfield"      , "bJJ"  , NULL    , T_INT    ,  0, true , _putfield       );
   523   def(_fast_cputfield      , "fast_cputfield"      , "bJJ"  , NULL    , T_CHAR   ,  0, true , _putfield       );
   524   def(_fast_dputfield      , "fast_dputfield"      , "bJJ"  , NULL    , T_DOUBLE ,  0, true , _putfield       );
   525   def(_fast_fputfield      , "fast_fputfield"      , "bJJ"  , NULL    , T_FLOAT  ,  0, true , _putfield       );
   526   def(_fast_iputfield      , "fast_iputfield"      , "bJJ"  , NULL    , T_INT    ,  0, true , _putfield       );
   527   def(_fast_lputfield      , "fast_lputfield"      , "bJJ"  , NULL    , T_LONG   ,  0, true , _putfield       );
   528   def(_fast_sputfield      , "fast_sputfield"      , "bJJ"  , NULL    , T_SHORT  ,  0, true , _putfield       );
   530   def(_fast_aload_0        , "fast_aload_0"        , "b"    , NULL    , T_OBJECT ,  1, true , _aload_0        );
   531   def(_fast_iaccess_0      , "fast_iaccess_0"      , "b_JJ" , NULL    , T_INT    ,  1, true , _aload_0        );
   532   def(_fast_aaccess_0      , "fast_aaccess_0"      , "b_JJ" , NULL    , T_OBJECT ,  1, true , _aload_0        );
   533   def(_fast_faccess_0      , "fast_faccess_0"      , "b_JJ" , NULL    , T_OBJECT ,  1, true , _aload_0        );
   535   def(_fast_iload          , "fast_iload"          , "bi"   , NULL    , T_INT    ,  1, false, _iload);
   536   def(_fast_iload2         , "fast_iload2"         , "bi_i" , NULL    , T_INT    ,  2, false, _iload);
   537   def(_fast_icaload        , "fast_icaload"        , "bi_"  , NULL    , T_INT    ,  0, false, _iload);
   539   // Faster method invocation.
   540   def(_fast_invokevfinal   , "fast_invokevfinal"   , "bJJ"  , NULL    , T_ILLEGAL, -1, true, _invokevirtual   );
   542   def(_fast_linearswitch   , "fast_linearswitch"   , ""     , NULL    , T_VOID   , -1, false, _lookupswitch   );
   543   def(_fast_binaryswitch   , "fast_binaryswitch"   , ""     , NULL    , T_VOID   , -1, false, _lookupswitch   );
   545   def(_return_register_finalizer , "return_register_finalizer" , "b"    , NULL    , T_VOID   ,  0, true, _return);
   547   def(_invokehandle        , "invokehandle"        , "bJJ"  , NULL    , T_ILLEGAL, -1, true, _invokevirtual   );
   549   def(_fast_aldc           , "fast_aldc"           , "bj"   , NULL    , T_OBJECT,   1, true,  _ldc   );
   550   def(_fast_aldc_w         , "fast_aldc_w"         , "bJJ"  , NULL    , T_OBJECT,   1, true,  _ldc_w );
   552   def(_shouldnotreachhere  , "_shouldnotreachhere" , "b"    , NULL    , T_VOID   ,  0, false);
   554   // platform specific JVM bytecodes
   555   pd_initialize();
   557   // compare can_trap information for each bytecode with the
   558   // can_trap information for the corresponding base bytecode
   559   // (if a rewritten bytecode can trap, so must the base bytecode)
   560   #ifdef ASSERT
   561     { for (int i = 0; i < number_of_codes; i++) {
   562         if (is_defined(i)) {
   563           Code code = cast(i);
   564           Code java = java_code(code);
   565           if (can_trap(code) && !can_trap(java))
   566             fatal(err_msg("%s can trap => %s can trap, too", name(code),
   567                           name(java)));
   568         }
   569       }
   570     }
   571   #endif
   573   // initialization successful
   574   _is_initialized = true;
   575 }
   578 void bytecodes_init() {
   579   Bytecodes::initialize();
   580 }
   582 // Restore optimization
   583 #ifdef _M_AMD64
   584 #pragma optimize ("", on)
   585 #endif

mercurial