src/share/vm/interpreter/rewriter.cpp

Wed, 02 Jun 2010 22:45:42 -0700

author
jrose
date
Wed, 02 Jun 2010 22:45:42 -0700
changeset 1934
e9ff18c4ace7
parent 1907
c18cbe5936b8
parent 1929
1eb493f33423
child 1957
136b78722a08
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1998, 2010, 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 # include "incls/_precompiled.incl"
    26 # include "incls/_rewriter.cpp.incl"
    28 // Computes a CPC map (new_index -> original_index) for constant pool entries
    29 // that are referred to by the interpreter at runtime via the constant pool cache.
    30 // Also computes a CP map (original_index -> new_index).
    31 // Marks entries in CP which require additional processing.
    32 void Rewriter::compute_index_maps() {
    33   const int length  = _pool->length();
    34   init_cp_map(length);
    35   for (int i = 0; i < length; i++) {
    36     int tag = _pool->tag_at(i).value();
    37     switch (tag) {
    38       case JVM_CONSTANT_InterfaceMethodref:
    39       case JVM_CONSTANT_Fieldref          : // fall through
    40       case JVM_CONSTANT_Methodref         : // fall through
    41         add_cp_cache_entry(i);
    42         break;
    43     }
    44   }
    46   guarantee((int)_cp_cache_map.length()-1 <= (int)((u2)-1),
    47             "all cp cache indexes fit in a u2");
    48 }
    51 // Creates a constant pool cache given a CPC map
    52 // This creates the constant pool cache initially in a state
    53 // that is unsafe for concurrent GC processing but sets it to
    54 // a safe mode before the constant pool cache is returned.
    55 void Rewriter::make_constant_pool_cache(TRAPS) {
    56   const int length = _cp_cache_map.length();
    57   constantPoolCacheOop cache =
    58       oopFactory::new_constantPoolCache(length, methodOopDesc::IsUnsafeConc, CHECK);
    59   cache->initialize(_cp_cache_map);
    60   _pool->set_cache(cache);
    61   cache->set_constant_pool(_pool());
    62 }
    66 // The new finalization semantics says that registration of
    67 // finalizable objects must be performed on successful return from the
    68 // Object.<init> constructor.  We could implement this trivially if
    69 // <init> were never rewritten but since JVMTI allows this to occur, a
    70 // more complicated solution is required.  A special return bytecode
    71 // is used only by Object.<init> to signal the finalization
    72 // registration point.  Additionally local 0 must be preserved so it's
    73 // available to pass to the registration function.  For simplicty we
    74 // require that local 0 is never overwritten so it's available as an
    75 // argument for registration.
    77 void Rewriter::rewrite_Object_init(methodHandle method, TRAPS) {
    78   RawBytecodeStream bcs(method);
    79   while (!bcs.is_last_bytecode()) {
    80     Bytecodes::Code opcode = bcs.raw_next();
    81     switch (opcode) {
    82       case Bytecodes::_return: *bcs.bcp() = Bytecodes::_return_register_finalizer; break;
    84       case Bytecodes::_istore:
    85       case Bytecodes::_lstore:
    86       case Bytecodes::_fstore:
    87       case Bytecodes::_dstore:
    88       case Bytecodes::_astore:
    89         if (bcs.get_index() != 0) continue;
    91         // fall through
    92       case Bytecodes::_istore_0:
    93       case Bytecodes::_lstore_0:
    94       case Bytecodes::_fstore_0:
    95       case Bytecodes::_dstore_0:
    96       case Bytecodes::_astore_0:
    97         THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(),
    98                   "can't overwrite local 0 in Object.<init>");
    99         break;
   100     }
   101   }
   102 }
   105 // Rewrite a classfile-order CP index into a native-order CPC index.
   106 void Rewriter::rewrite_member_reference(address bcp, int offset) {
   107   address p = bcp + offset;
   108   int  cp_index    = Bytes::get_Java_u2(p);
   109   int  cache_index = cp_entry_to_cp_cache(cp_index);
   110   Bytes::put_native_u2(p, cache_index);
   111 }
   114 void Rewriter::rewrite_invokedynamic(address bcp, int offset) {
   115   address p = bcp + offset;
   116   assert(p[-1] == Bytecodes::_invokedynamic, "");
   117   int cp_index = Bytes::get_Java_u2(p);
   118   int cpc  = maybe_add_cp_cache_entry(cp_index);  // add lazily
   119   int cpc2 = add_secondary_cp_cache_entry(cpc);
   121   // Replace the trailing four bytes with a CPC index for the dynamic
   122   // call site.  Unlike other CPC entries, there is one per bytecode,
   123   // not just one per distinct CP entry.  In other words, the
   124   // CPC-to-CP relation is many-to-one for invokedynamic entries.
   125   // This means we must use a larger index size than u2 to address
   126   // all these entries.  That is the main reason invokedynamic
   127   // must have a five-byte instruction format.  (Of course, other JVM
   128   // implementations can use the bytes for other purposes.)
   129   Bytes::put_native_u4(p, constantPoolCacheOopDesc::encode_secondary_index(cpc2));
   130   // Note: We use native_u4 format exclusively for 4-byte indexes.
   131 }
   134 // Rewrites a method given the index_map information
   135 void Rewriter::scan_method(methodOop method) {
   137   int nof_jsrs = 0;
   138   bool has_monitor_bytecodes = false;
   140   {
   141     // We cannot tolerate a GC in this block, because we've
   142     // cached the bytecodes in 'code_base'. If the methodOop
   143     // moves, the bytecodes will also move.
   144     No_Safepoint_Verifier nsv;
   145     Bytecodes::Code c;
   147     // Bytecodes and their length
   148     const address code_base = method->code_base();
   149     const int code_length = method->code_size();
   151     int bc_length;
   152     for (int bci = 0; bci < code_length; bci += bc_length) {
   153       address bcp = code_base + bci;
   154       int prefix_length = 0;
   155       c = (Bytecodes::Code)(*bcp);
   157       // Since we have the code, see if we can get the length
   158       // directly. Some more complicated bytecodes will report
   159       // a length of zero, meaning we need to make another method
   160       // call to calculate the length.
   161       bc_length = Bytecodes::length_for(c);
   162       if (bc_length == 0) {
   163         bc_length = Bytecodes::length_at(bcp);
   165         // length_at will put us at the bytecode after the one modified
   166         // by 'wide'. We don't currently examine any of the bytecodes
   167         // modified by wide, but in case we do in the future...
   168         if (c == Bytecodes::_wide) {
   169           prefix_length = 1;
   170           c = (Bytecodes::Code)bcp[1];
   171         }
   172       }
   174       assert(bc_length != 0, "impossible bytecode length");
   176       switch (c) {
   177         case Bytecodes::_lookupswitch   : {
   178 #ifndef CC_INTERP
   179           Bytecode_lookupswitch* bc = Bytecode_lookupswitch_at(bcp);
   180           (*bcp) = (
   181             bc->number_of_pairs() < BinarySwitchThreshold
   182             ? Bytecodes::_fast_linearswitch
   183             : Bytecodes::_fast_binaryswitch
   184           );
   185 #endif
   186           break;
   187         }
   188         case Bytecodes::_getstatic      : // fall through
   189         case Bytecodes::_putstatic      : // fall through
   190         case Bytecodes::_getfield       : // fall through
   191         case Bytecodes::_putfield       : // fall through
   192         case Bytecodes::_invokevirtual  : // fall through
   193         case Bytecodes::_invokespecial  : // fall through
   194         case Bytecodes::_invokestatic   :
   195         case Bytecodes::_invokeinterface:
   196           rewrite_member_reference(bcp, prefix_length+1);
   197           break;
   198         case Bytecodes::_invokedynamic:
   199           rewrite_invokedynamic(bcp, prefix_length+1);
   200           break;
   201         case Bytecodes::_jsr            : // fall through
   202         case Bytecodes::_jsr_w          : nof_jsrs++;                   break;
   203         case Bytecodes::_monitorenter   : // fall through
   204         case Bytecodes::_monitorexit    : has_monitor_bytecodes = true; break;
   205       }
   206     }
   207   }
   209   // Update access flags
   210   if (has_monitor_bytecodes) {
   211     method->set_has_monitor_bytecodes();
   212   }
   214   // The present of a jsr bytecode implies that the method might potentially
   215   // have to be rewritten, so we run the oopMapGenerator on the method
   216   if (nof_jsrs > 0) {
   217     method->set_has_jsrs();
   218     // Second pass will revisit this method.
   219     assert(method->has_jsrs(), "");
   220   }
   221 }
   223 // After constant pool is created, revisit methods containing jsrs.
   224 methodHandle Rewriter::rewrite_jsrs(methodHandle method, TRAPS) {
   225   ResolveOopMapConflicts romc(method);
   226   methodHandle original_method = method;
   227   method = romc.do_potential_rewrite(CHECK_(methodHandle()));
   228   if (method() != original_method()) {
   229     // Insert invalid bytecode into original methodOop and set
   230     // interpreter entrypoint, so that a executing this method
   231     // will manifest itself in an easy recognizable form.
   232     address bcp = original_method->bcp_from(0);
   233     *bcp = (u1)Bytecodes::_shouldnotreachhere;
   234     int kind = Interpreter::method_kind(original_method);
   235     original_method->set_interpreter_kind(kind);
   236   }
   238   // Update monitor matching info.
   239   if (romc.monitor_safe()) {
   240     method->set_guaranteed_monitor_matching();
   241   }
   243   return method;
   244 }
   247 void Rewriter::rewrite(instanceKlassHandle klass, TRAPS) {
   248   ResourceMark rm(THREAD);
   249   Rewriter     rw(klass, klass->constants(), klass->methods(), CHECK);
   250   // (That's all, folks.)
   251 }
   254 void Rewriter::rewrite(instanceKlassHandle klass, constantPoolHandle cpool, objArrayHandle methods, TRAPS) {
   255   ResourceMark rm(THREAD);
   256   Rewriter     rw(klass, cpool, methods, CHECK);
   257   // (That's all, folks.)
   258 }
   261 Rewriter::Rewriter(instanceKlassHandle klass, constantPoolHandle cpool, objArrayHandle methods, TRAPS)
   262   : _klass(klass),
   263     _pool(cpool),
   264     _methods(methods)
   265 {
   266   assert(_pool->cache() == NULL, "constant pool cache must not be set yet");
   268   // determine index maps for methodOop rewriting
   269   compute_index_maps();
   271   if (RegisterFinalizersAtInit && _klass->name() == vmSymbols::java_lang_Object()) {
   272     bool did_rewrite = false;
   273     int i = _methods->length();
   274     while (i-- > 0) {
   275       methodOop method = (methodOop)_methods->obj_at(i);
   276       if (method->intrinsic_id() == vmIntrinsics::_Object_init) {
   277         // rewrite the return bytecodes of Object.<init> to register the
   278         // object for finalization if needed.
   279         methodHandle m(THREAD, method);
   280         rewrite_Object_init(m, CHECK);
   281         did_rewrite = true;
   282         break;
   283       }
   284     }
   285     assert(did_rewrite, "must find Object::<init> to rewrite it");
   286   }
   288   // rewrite methods, in two passes
   289   int i, len = _methods->length();
   291   for (i = len; --i >= 0; ) {
   292     methodOop method = (methodOop)_methods->obj_at(i);
   293     scan_method(method);
   294   }
   296   // allocate constant pool cache, now that we've seen all the bytecodes
   297   make_constant_pool_cache(CHECK);
   299   for (i = len; --i >= 0; ) {
   300     methodHandle m(THREAD, (methodOop)_methods->obj_at(i));
   302     if (m->has_jsrs()) {
   303       m = rewrite_jsrs(m, CHECK);
   304       // Method might have gotten rewritten.
   305       _methods->obj_at_put(i, m());
   306     }
   308     // Set up method entry points for compiler and interpreter.
   309     m->link_method(m, CHECK);
   311 #ifdef ASSERT
   312     if (StressMethodComparator) {
   313       static int nmc = 0;
   314       for (int j = i; j >= 0 && j >= i-4; j--) {
   315         if ((++nmc % 1000) == 0)  tty->print_cr("Have run MethodComparator %d times...", nmc);
   316         bool z = MethodComparator::methods_EMCP(m(), (methodOop)_methods->obj_at(j));
   317         if (j == i && !z) {
   318           tty->print("MethodComparator FAIL: "); m->print(); m->print_codes();
   319           assert(z, "method must compare equal to itself");
   320         }
   321       }
   322     }
   323 #endif //ASSERT
   324   }
   325 }

mercurial