src/share/vm/interpreter/rewriter.cpp

Tue, 28 Jul 2009 12:12:40 -0700

author
xdono
date
Tue, 28 Jul 2009 12:12:40 -0700
changeset 1279
bd02caa94611
parent 1161
be93aad57795
child 1291
75596850f863
permissions
-rw-r--r--

6862919: Update copyright year
Summary: Update copyright for files that have been modified in 2009, up to 07/09
Reviewed-by: tbell, ohair

duke@435 1 /*
xdono@1014 2 * Copyright 1998-2009 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
duke@435 19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 * CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 * have any questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_rewriter.cpp.incl"
duke@435 27
jrose@1161 28 // Computes a CPC map (new_index -> original_index) for constant pool entries
duke@435 29 // that are referred to by the interpreter at runtime via the constant pool cache.
jrose@1161 30 // Also computes a CP map (original_index -> new_index).
jrose@1161 31 // Marks entries in CP which require additional processing.
jrose@1161 32 void Rewriter::compute_index_maps() {
jrose@1161 33 const int length = _pool->length();
jrose@1161 34 init_cp_map(length);
duke@435 35 for (int i = 0; i < length; i++) {
jrose@1161 36 int tag = _pool->tag_at(i).value();
jrose@1161 37 switch (tag) {
jrose@1161 38 case JVM_CONSTANT_InterfaceMethodref:
duke@435 39 case JVM_CONSTANT_Fieldref : // fall through
duke@435 40 case JVM_CONSTANT_Methodref : // fall through
jrose@1161 41 add_cp_cache_entry(i);
jrose@1161 42 break;
duke@435 43 }
duke@435 44 }
jrose@1161 45
jrose@1161 46 guarantee((int)_cp_cache_map.length()-1 <= (int)((u2)-1),
jrose@1161 47 "all cp cache indexes fit in a u2");
duke@435 48 }
duke@435 49
duke@435 50
jrose@1161 51 int Rewriter::add_extra_cp_cache_entry(int main_entry) {
jrose@1161 52 // Hack: We put it on the map as an encoded value.
jrose@1161 53 // The only place that consumes this is ConstantPoolCacheEntry::set_initial_state
jrose@1161 54 int encoded = constantPoolCacheOopDesc::encode_secondary_index(main_entry);
jrose@1161 55 int plain_secondary_index = _cp_cache_map.append(encoded);
jrose@1161 56 return constantPoolCacheOopDesc::encode_secondary_index(plain_secondary_index);
jrose@1161 57 }
jrose@1161 58
jrose@1161 59
jrose@1161 60
jrose@1161 61 // Creates a constant pool cache given a CPC map
jmasa@977 62 // This creates the constant pool cache initially in a state
jmasa@977 63 // that is unsafe for concurrent GC processing but sets it to
jmasa@977 64 // a safe mode before the constant pool cache is returned.
jrose@1161 65 void Rewriter::make_constant_pool_cache(TRAPS) {
jrose@1161 66 const int length = _cp_cache_map.length();
jrose@1161 67 constantPoolCacheOop cache =
jrose@1161 68 oopFactory::new_constantPoolCache(length, methodOopDesc::IsUnsafeConc, CHECK);
jrose@1161 69 cache->initialize(_cp_cache_map);
jrose@1161 70 _pool->set_cache(cache);
jrose@1161 71 cache->set_constant_pool(_pool());
duke@435 72 }
duke@435 73
duke@435 74
duke@435 75
duke@435 76 // The new finalization semantics says that registration of
duke@435 77 // finalizable objects must be performed on successful return from the
duke@435 78 // Object.<init> constructor. We could implement this trivially if
duke@435 79 // <init> were never rewritten but since JVMTI allows this to occur, a
duke@435 80 // more complicated solution is required. A special return bytecode
duke@435 81 // is used only by Object.<init> to signal the finalization
duke@435 82 // registration point. Additionally local 0 must be preserved so it's
duke@435 83 // available to pass to the registration function. For simplicty we
duke@435 84 // require that local 0 is never overwritten so it's available as an
duke@435 85 // argument for registration.
duke@435 86
duke@435 87 void Rewriter::rewrite_Object_init(methodHandle method, TRAPS) {
duke@435 88 RawBytecodeStream bcs(method);
duke@435 89 while (!bcs.is_last_bytecode()) {
duke@435 90 Bytecodes::Code opcode = bcs.raw_next();
duke@435 91 switch (opcode) {
duke@435 92 case Bytecodes::_return: *bcs.bcp() = Bytecodes::_return_register_finalizer; break;
duke@435 93
duke@435 94 case Bytecodes::_istore:
duke@435 95 case Bytecodes::_lstore:
duke@435 96 case Bytecodes::_fstore:
duke@435 97 case Bytecodes::_dstore:
duke@435 98 case Bytecodes::_astore:
duke@435 99 if (bcs.get_index() != 0) continue;
duke@435 100
duke@435 101 // fall through
duke@435 102 case Bytecodes::_istore_0:
duke@435 103 case Bytecodes::_lstore_0:
duke@435 104 case Bytecodes::_fstore_0:
duke@435 105 case Bytecodes::_dstore_0:
duke@435 106 case Bytecodes::_astore_0:
duke@435 107 THROW_MSG(vmSymbols::java_lang_IncompatibleClassChangeError(),
duke@435 108 "can't overwrite local 0 in Object.<init>");
duke@435 109 break;
duke@435 110 }
duke@435 111 }
duke@435 112 }
duke@435 113
duke@435 114
jrose@1161 115 // Rewrite a classfile-order CP index into a native-order CPC index.
jrose@1161 116 int Rewriter::rewrite_member_reference(address bcp, int offset) {
jrose@1161 117 address p = bcp + offset;
jrose@1161 118 int cp_index = Bytes::get_Java_u2(p);
jrose@1161 119 int cache_index = cp_entry_to_cp_cache(cp_index);
jrose@1161 120 Bytes::put_native_u2(p, cache_index);
jrose@1161 121 return cp_index;
jrose@1161 122 }
jrose@1161 123
jrose@1161 124
jrose@1161 125 void Rewriter::rewrite_invokedynamic(address bcp, int offset, int delete_me) {
jrose@1161 126 address p = bcp + offset;
jrose@1161 127 assert(p[-1] == Bytecodes::_invokedynamic, "");
jrose@1161 128 int cp_index = Bytes::get_Java_u2(p);
jrose@1161 129 int cpc = maybe_add_cp_cache_entry(cp_index); // add lazily
jrose@1161 130 int cpc2 = add_extra_cp_cache_entry(cpc);
jrose@1161 131
jrose@1161 132 // Replace the trailing four bytes with a CPC index for the dynamic
jrose@1161 133 // call site. Unlike other CPC entries, there is one per bytecode,
jrose@1161 134 // not just one per distinct CP entry. In other words, the
jrose@1161 135 // CPC-to-CP relation is many-to-one for invokedynamic entries.
jrose@1161 136 // This means we must use a larger index size than u2 to address
jrose@1161 137 // all these entries. That is the main reason invokedynamic
jrose@1161 138 // must have a five-byte instruction format. (Of course, other JVM
jrose@1161 139 // implementations can use the bytes for other purposes.)
jrose@1161 140 Bytes::put_native_u4(p, cpc2);
jrose@1161 141 // Note: We use native_u4 format exclusively for 4-byte indexes.
jrose@1161 142 }
jrose@1161 143
jrose@1161 144
duke@435 145 // Rewrites a method given the index_map information
jrose@1161 146 void Rewriter::scan_method(methodOop method) {
duke@435 147
duke@435 148 int nof_jsrs = 0;
duke@435 149 bool has_monitor_bytecodes = false;
duke@435 150
duke@435 151 {
duke@435 152 // We cannot tolerate a GC in this block, because we've
duke@435 153 // cached the bytecodes in 'code_base'. If the methodOop
duke@435 154 // moves, the bytecodes will also move.
duke@435 155 No_Safepoint_Verifier nsv;
duke@435 156 Bytecodes::Code c;
duke@435 157
duke@435 158 // Bytecodes and their length
duke@435 159 const address code_base = method->code_base();
duke@435 160 const int code_length = method->code_size();
duke@435 161
duke@435 162 int bc_length;
duke@435 163 for (int bci = 0; bci < code_length; bci += bc_length) {
duke@435 164 address bcp = code_base + bci;
jrose@1161 165 int prefix_length = 0;
duke@435 166 c = (Bytecodes::Code)(*bcp);
duke@435 167
duke@435 168 // Since we have the code, see if we can get the length
duke@435 169 // directly. Some more complicated bytecodes will report
duke@435 170 // a length of zero, meaning we need to make another method
duke@435 171 // call to calculate the length.
duke@435 172 bc_length = Bytecodes::length_for(c);
duke@435 173 if (bc_length == 0) {
duke@435 174 bc_length = Bytecodes::length_at(bcp);
duke@435 175
duke@435 176 // length_at will put us at the bytecode after the one modified
duke@435 177 // by 'wide'. We don't currently examine any of the bytecodes
duke@435 178 // modified by wide, but in case we do in the future...
duke@435 179 if (c == Bytecodes::_wide) {
jrose@1161 180 prefix_length = 1;
duke@435 181 c = (Bytecodes::Code)bcp[1];
duke@435 182 }
duke@435 183 }
duke@435 184
duke@435 185 assert(bc_length != 0, "impossible bytecode length");
duke@435 186
duke@435 187 switch (c) {
duke@435 188 case Bytecodes::_lookupswitch : {
duke@435 189 #ifndef CC_INTERP
duke@435 190 Bytecode_lookupswitch* bc = Bytecode_lookupswitch_at(bcp);
duke@435 191 bc->set_code(
duke@435 192 bc->number_of_pairs() < BinarySwitchThreshold
duke@435 193 ? Bytecodes::_fast_linearswitch
duke@435 194 : Bytecodes::_fast_binaryswitch
duke@435 195 );
duke@435 196 #endif
duke@435 197 break;
duke@435 198 }
duke@435 199 case Bytecodes::_getstatic : // fall through
duke@435 200 case Bytecodes::_putstatic : // fall through
duke@435 201 case Bytecodes::_getfield : // fall through
duke@435 202 case Bytecodes::_putfield : // fall through
duke@435 203 case Bytecodes::_invokevirtual : // fall through
duke@435 204 case Bytecodes::_invokespecial : // fall through
jrose@1161 205 case Bytecodes::_invokestatic :
jrose@1161 206 case Bytecodes::_invokeinterface:
jrose@1161 207 rewrite_member_reference(bcp, prefix_length+1);
duke@435 208 break;
jrose@1161 209 case Bytecodes::_invokedynamic:
jrose@1161 210 rewrite_invokedynamic(bcp, prefix_length+1, int(sizeof"@@@@DELETE ME"));
jrose@1161 211 break;
duke@435 212 case Bytecodes::_jsr : // fall through
duke@435 213 case Bytecodes::_jsr_w : nof_jsrs++; break;
duke@435 214 case Bytecodes::_monitorenter : // fall through
duke@435 215 case Bytecodes::_monitorexit : has_monitor_bytecodes = true; break;
duke@435 216 }
duke@435 217 }
duke@435 218 }
duke@435 219
duke@435 220 // Update access flags
duke@435 221 if (has_monitor_bytecodes) {
duke@435 222 method->set_has_monitor_bytecodes();
duke@435 223 }
duke@435 224
duke@435 225 // The present of a jsr bytecode implies that the method might potentially
duke@435 226 // have to be rewritten, so we run the oopMapGenerator on the method
duke@435 227 if (nof_jsrs > 0) {
duke@435 228 method->set_has_jsrs();
jrose@1161 229 // Second pass will revisit this method.
jrose@1161 230 assert(method->has_jsrs(), "");
jrose@1161 231 }
jrose@1161 232 }
duke@435 233
jrose@1161 234 // After constant pool is created, revisit methods containing jsrs.
jrose@1161 235 methodHandle Rewriter::rewrite_jsrs(methodHandle method, TRAPS) {
jrose@1161 236 ResolveOopMapConflicts romc(method);
jrose@1161 237 methodHandle original_method = method;
jrose@1161 238 method = romc.do_potential_rewrite(CHECK_(methodHandle()));
jrose@1161 239 if (method() != original_method()) {
jrose@1161 240 // Insert invalid bytecode into original methodOop and set
jrose@1161 241 // interpreter entrypoint, so that a executing this method
jrose@1161 242 // will manifest itself in an easy recognizable form.
jrose@1161 243 address bcp = original_method->bcp_from(0);
jrose@1161 244 *bcp = (u1)Bytecodes::_shouldnotreachhere;
jrose@1161 245 int kind = Interpreter::method_kind(original_method);
jrose@1161 246 original_method->set_interpreter_kind(kind);
duke@435 247 }
duke@435 248
jrose@1161 249 // Update monitor matching info.
jrose@1161 250 if (romc.monitor_safe()) {
jrose@1161 251 method->set_guaranteed_monitor_matching();
jrose@1161 252 }
duke@435 253
duke@435 254 return method;
duke@435 255 }
duke@435 256
duke@435 257
duke@435 258 void Rewriter::rewrite(instanceKlassHandle klass, TRAPS) {
duke@435 259 ResourceMark rm(THREAD);
jrose@1161 260 Rewriter rw(klass, CHECK);
jrose@1161 261 // (That's all, folks.)
jrose@1161 262 }
jrose@1161 263
jrose@1161 264 Rewriter::Rewriter(instanceKlassHandle klass, TRAPS)
jrose@1161 265 : _klass(klass),
jrose@1161 266 // gather starting points
jrose@1161 267 _pool( THREAD, klass->constants()),
jrose@1161 268 _methods(THREAD, klass->methods())
jrose@1161 269 {
jrose@1161 270 assert(_pool->cache() == NULL, "constant pool cache must not be set yet");
duke@435 271
duke@435 272 // determine index maps for methodOop rewriting
jrose@1161 273 compute_index_maps();
duke@435 274
jrose@1161 275 if (RegisterFinalizersAtInit && _klass->name() == vmSymbols::java_lang_Object()) {
jrose@1161 276 int i = _methods->length();
duke@435 277 while (i-- > 0) {
jrose@1161 278 methodOop method = (methodOop)_methods->obj_at(i);
duke@435 279 if (method->intrinsic_id() == vmIntrinsics::_Object_init) {
duke@435 280 // rewrite the return bytecodes of Object.<init> to register the
duke@435 281 // object for finalization if needed.
duke@435 282 methodHandle m(THREAD, method);
duke@435 283 rewrite_Object_init(m, CHECK);
duke@435 284 break;
duke@435 285 }
duke@435 286 }
duke@435 287 }
duke@435 288
jrose@1161 289 // rewrite methods, in two passes
jrose@1161 290 int i, len = _methods->length();
jrose@1161 291
jrose@1161 292 for (i = len; --i >= 0; ) {
jrose@1161 293 methodOop method = (methodOop)_methods->obj_at(i);
jrose@1161 294 scan_method(method);
jrose@1161 295 }
jrose@1161 296
jrose@1161 297 // allocate constant pool cache, now that we've seen all the bytecodes
jrose@1161 298 make_constant_pool_cache(CHECK);
jrose@1161 299
jrose@1161 300 for (i = len; --i >= 0; ) {
jrose@1161 301 methodHandle m(THREAD, (methodOop)_methods->obj_at(i));
jrose@1161 302
jrose@1161 303 if (m->has_jsrs()) {
jrose@1161 304 m = rewrite_jsrs(m, CHECK);
duke@435 305 // Method might have gotten rewritten.
jrose@1161 306 _methods->obj_at_put(i, m());
duke@435 307 }
jrose@1161 308
jrose@1161 309 // Set up method entry points for compiler and interpreter.
jrose@1161 310 m->link_method(m, CHECK);
duke@435 311 }
duke@435 312 }

mercurial