src/share/vm/opto/parseHelper.cpp

Fri, 11 Jul 2014 19:51:36 -0400

author
drchase
date
Fri, 11 Jul 2014 19:51:36 -0400
changeset 7161
fc2c88ea11a9
parent 6479
2113136690bc
child 6876
710a3c8b516e
child 7341
e7b3d177adda
permissions
-rw-r--r--

8036588: VerifyFieldClosure fails instanceKlass:3133
Summary: Changed deopt live-pointer test to use returns-object instead of live-and-returns-object
Reviewed-by: iveresov, kvn, jrose

duke@435 1 /*
jiangli@4936 2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. 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 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/systemDictionary.hpp"
stefank@2314 27 #include "compiler/compileLog.hpp"
stefank@2314 28 #include "oops/objArrayKlass.hpp"
stefank@2314 29 #include "opto/addnode.hpp"
stefank@2314 30 #include "opto/memnode.hpp"
stefank@2314 31 #include "opto/mulnode.hpp"
stefank@2314 32 #include "opto/parse.hpp"
stefank@2314 33 #include "opto/rootnode.hpp"
stefank@2314 34 #include "opto/runtime.hpp"
stefank@2314 35 #include "runtime/sharedRuntime.hpp"
duke@435 36
duke@435 37 //------------------------------make_dtrace_method_entry_exit ----------------
duke@435 38 // Dtrace -- record entry or exit of a method if compiled with dtrace support
duke@435 39 void GraphKit::make_dtrace_method_entry_exit(ciMethod* method, bool is_entry) {
duke@435 40 const TypeFunc *call_type = OptoRuntime::dtrace_method_entry_exit_Type();
duke@435 41 address call_address = is_entry ? CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_entry) :
duke@435 42 CAST_FROM_FN_PTR(address, SharedRuntime::dtrace_method_exit);
duke@435 43 const char *call_name = is_entry ? "dtrace_method_entry" : "dtrace_method_exit";
duke@435 44
duke@435 45 // Get base of thread-local storage area
kvn@4115 46 Node* thread = _gvn.transform( new (C) ThreadLocalNode() );
duke@435 47
duke@435 48 // Get method
coleenp@4037 49 const TypePtr* method_type = TypeMetadataPtr::make(method);
kvn@599 50 Node *method_node = _gvn.transform( ConNode::make(C, method_type) );
duke@435 51
duke@435 52 kill_dead_locals();
duke@435 53
duke@435 54 // For some reason, this call reads only raw memory.
duke@435 55 const TypePtr* raw_adr_type = TypeRawPtr::BOTTOM;
duke@435 56 make_runtime_call(RC_LEAF | RC_NARROW_MEM,
duke@435 57 call_type, call_address,
duke@435 58 call_name, raw_adr_type,
duke@435 59 thread, method_node);
duke@435 60 }
duke@435 61
duke@435 62
duke@435 63 //=============================================================================
duke@435 64 //------------------------------do_checkcast-----------------------------------
duke@435 65 void Parse::do_checkcast() {
duke@435 66 bool will_link;
duke@435 67 ciKlass* klass = iter().get_klass(will_link);
duke@435 68
duke@435 69 Node *obj = peek();
duke@435 70
duke@435 71 // Throw uncommon trap if class is not loaded or the value we are casting
duke@435 72 // _from_ is not loaded, and value is not null. If the value _is_ NULL,
duke@435 73 // then the checkcast does nothing.
roland@3450 74 const TypeOopPtr *tp = _gvn.type(obj)->isa_oopptr();
roland@3450 75 if (!will_link || (tp && tp->klass() && !tp->klass()->is_loaded())) {
duke@435 76 if (C->log() != NULL) {
duke@435 77 if (!will_link) {
duke@435 78 C->log()->elem("assert_null reason='checkcast' klass='%d'",
duke@435 79 C->log()->identify(klass));
duke@435 80 }
roland@3450 81 if (tp && tp->klass() && !tp->klass()->is_loaded()) {
duke@435 82 // %%% Cannot happen?
duke@435 83 C->log()->elem("assert_null reason='checkcast source' klass='%d'",
duke@435 84 C->log()->identify(tp->klass()));
duke@435 85 }
duke@435 86 }
twisti@4313 87 null_assert(obj);
duke@435 88 assert( stopped() || _gvn.type(peek())->higher_equal(TypePtr::NULL_PTR), "what's left behind is null" );
duke@435 89 if (!stopped()) {
duke@435 90 profile_null_checkcast();
duke@435 91 }
duke@435 92 return;
duke@435 93 }
duke@435 94
duke@435 95 Node *res = gen_checkcast(obj, makecon(TypeKlassPtr::make(klass)) );
duke@435 96
duke@435 97 // Pop from stack AFTER gen_checkcast because it can uncommon trap and
duke@435 98 // the debug info has to be correct.
duke@435 99 pop();
duke@435 100 push(res);
duke@435 101 }
duke@435 102
duke@435 103
duke@435 104 //------------------------------do_instanceof----------------------------------
duke@435 105 void Parse::do_instanceof() {
duke@435 106 if (stopped()) return;
duke@435 107 // We would like to return false if class is not loaded, emitting a
duke@435 108 // dependency, but Java requires instanceof to load its operand.
duke@435 109
duke@435 110 // Throw uncommon trap if class is not loaded
duke@435 111 bool will_link;
duke@435 112 ciKlass* klass = iter().get_klass(will_link);
duke@435 113
duke@435 114 if (!will_link) {
duke@435 115 if (C->log() != NULL) {
duke@435 116 C->log()->elem("assert_null reason='instanceof' klass='%d'",
duke@435 117 C->log()->identify(klass));
duke@435 118 }
twisti@4313 119 null_assert(peek());
duke@435 120 assert( stopped() || _gvn.type(peek())->higher_equal(TypePtr::NULL_PTR), "what's left behind is null" );
duke@435 121 if (!stopped()) {
duke@435 122 // The object is now known to be null.
duke@435 123 // Shortcut the effect of gen_instanceof and return "false" directly.
duke@435 124 pop(); // pop the null
duke@435 125 push(_gvn.intcon(0)); // push false answer
duke@435 126 }
duke@435 127 return;
duke@435 128 }
duke@435 129
duke@435 130 // Push the bool result back on stack
roland@5991 131 Node* res = gen_instanceof(peek(), makecon(TypeKlassPtr::make(klass)), true);
jrose@2101 132
jrose@2101 133 // Pop from stack AFTER gen_instanceof because it can uncommon trap.
jrose@2101 134 pop();
jrose@2101 135 push(res);
duke@435 136 }
duke@435 137
duke@435 138 //------------------------------array_store_check------------------------------
duke@435 139 // pull array from stack and check that the store is valid
duke@435 140 void Parse::array_store_check() {
duke@435 141
twisti@4313 142 // Shorthand access to array store elements without popping them.
twisti@4313 143 Node *obj = peek(0);
twisti@4313 144 Node *idx = peek(1);
twisti@4313 145 Node *ary = peek(2);
duke@435 146
duke@435 147 if (_gvn.type(obj) == TypePtr::NULL_PTR) {
duke@435 148 // There's never a type check on null values.
duke@435 149 // This cutout lets us avoid the uncommon_trap(Reason_array_check)
duke@435 150 // below, which turns into a performance liability if the
duke@435 151 // gen_checkcast folds up completely.
duke@435 152 return;
duke@435 153 }
duke@435 154
duke@435 155 // Extract the array klass type
duke@435 156 int klass_offset = oopDesc::klass_offset_in_bytes();
duke@435 157 Node* p = basic_plus_adr( ary, ary, klass_offset );
duke@435 158 // p's type is array-of-OOPS plus klass_offset
kvn@599 159 Node* array_klass = _gvn.transform( LoadKlassNode::make(_gvn, immutable_memory(), p, TypeInstPtr::KLASS) );
duke@435 160 // Get the array klass
duke@435 161 const TypeKlassPtr *tak = _gvn.type(array_klass)->is_klassptr();
duke@435 162
duke@435 163 // array_klass's type is generally INexact array-of-oop. Heroically
duke@435 164 // cast the array klass to EXACT array and uncommon-trap if the cast
duke@435 165 // fails.
duke@435 166 bool always_see_exact_class = false;
duke@435 167 if (MonomorphicArrayCheck
duke@435 168 && !too_many_traps(Deoptimization::Reason_array_check)) {
duke@435 169 always_see_exact_class = true;
duke@435 170 // (If no MDO at all, hope for the best, until a trap actually occurs.)
duke@435 171 }
duke@435 172
duke@435 173 // Is the array klass is exactly its defined type?
duke@435 174 if (always_see_exact_class && !tak->klass_is_exact()) {
duke@435 175 // Make a constant out of the inexact array klass
duke@435 176 const TypeKlassPtr *extak = tak->cast_to_exactness(true)->is_klassptr();
duke@435 177 Node* con = makecon(extak);
kvn@4115 178 Node* cmp = _gvn.transform(new (C) CmpPNode( array_klass, con ));
kvn@4115 179 Node* bol = _gvn.transform(new (C) BoolNode( cmp, BoolTest::eq ));
duke@435 180 Node* ctrl= control();
duke@435 181 { BuildCutout unless(this, bol, PROB_MAX);
duke@435 182 uncommon_trap(Deoptimization::Reason_array_check,
duke@435 183 Deoptimization::Action_maybe_recompile,
duke@435 184 tak->klass());
duke@435 185 }
duke@435 186 if (stopped()) { // MUST uncommon-trap?
duke@435 187 set_control(ctrl); // Then Don't Do It, just fall into the normal checking
duke@435 188 } else { // Cast array klass to exactness:
duke@435 189 // Use the exact constant value we know it is.
duke@435 190 replace_in_map(array_klass,con);
duke@435 191 CompileLog* log = C->log();
duke@435 192 if (log != NULL) {
duke@435 193 log->elem("cast_up reason='monomorphic_array' from='%d' to='(exact)'",
duke@435 194 log->identify(tak->klass()));
duke@435 195 }
duke@435 196 array_klass = con; // Use cast value moving forward
duke@435 197 }
duke@435 198 }
duke@435 199
duke@435 200 // Come here for polymorphic array klasses
duke@435 201
duke@435 202 // Extract the array element class
coleenp@4142 203 int element_klass_offset = in_bytes(ObjArrayKlass::element_klass_offset());
duke@435 204 Node *p2 = basic_plus_adr(array_klass, array_klass, element_klass_offset);
kvn@599 205 Node *a_e_klass = _gvn.transform( LoadKlassNode::make(_gvn, immutable_memory(), p2, tak) );
duke@435 206
duke@435 207 // Check (the hard way) and throw if not a subklass.
duke@435 208 // Result is ignored, we just need the CFG effects.
duke@435 209 gen_checkcast( obj, a_e_klass );
duke@435 210 }
duke@435 211
duke@435 212
never@2000 213 void Parse::emit_guard_for_new(ciInstanceKlass* klass) {
never@2000 214 // Emit guarded new
never@2000 215 // if (klass->_init_thread != current_thread ||
never@2000 216 // klass->_init_state != being_initialized)
never@2000 217 // uncommon_trap
kvn@4115 218 Node* cur_thread = _gvn.transform( new (C) ThreadLocalNode() );
kvn@4115 219 Node* merge = new (C) RegionNode(3);
never@2000 220 _gvn.set_type(merge, Type::CONTROL);
never@2000 221 Node* kls = makecon(TypeKlassPtr::make(klass));
never@2000 222
coleenp@4037 223 Node* init_thread_offset = _gvn.MakeConX(in_bytes(InstanceKlass::init_thread_offset()));
never@2000 224 Node* adr_node = basic_plus_adr(kls, kls, init_thread_offset);
goetz@6479 225 Node* init_thread = make_load(NULL, adr_node, TypeRawPtr::BOTTOM, T_ADDRESS, MemNode::unordered);
never@2000 226 Node *tst = Bool( CmpP( init_thread, cur_thread), BoolTest::eq);
never@2000 227 IfNode* iff = create_and_map_if(control(), tst, PROB_ALWAYS, COUNT_UNKNOWN);
never@2000 228 set_control(IfTrue(iff));
never@2000 229 merge->set_req(1, IfFalse(iff));
never@2000 230
coleenp@4037 231 Node* init_state_offset = _gvn.MakeConX(in_bytes(InstanceKlass::init_state_offset()));
never@2000 232 adr_node = basic_plus_adr(kls, kls, init_state_offset);
coleenp@4037 233 // Use T_BOOLEAN for InstanceKlass::_init_state so the compiler
coleenp@3368 234 // can generate code to load it as unsigned byte.
goetz@6479 235 Node* init_state = make_load(NULL, adr_node, TypeInt::UBYTE, T_BOOLEAN, MemNode::unordered);
coleenp@4037 236 Node* being_init = _gvn.intcon(InstanceKlass::being_initialized);
never@2000 237 tst = Bool( CmpI( init_state, being_init), BoolTest::eq);
never@2000 238 iff = create_and_map_if(control(), tst, PROB_ALWAYS, COUNT_UNKNOWN);
never@2000 239 set_control(IfTrue(iff));
never@2000 240 merge->set_req(2, IfFalse(iff));
never@2000 241
never@2000 242 PreserveJVMState pjvms(this);
never@2000 243 record_for_igvn(merge);
never@2000 244 set_control(merge);
never@2000 245
never@2000 246 uncommon_trap(Deoptimization::Reason_uninitialized,
never@2000 247 Deoptimization::Action_reinterpret,
never@2000 248 klass);
never@2000 249 }
never@2000 250
never@2000 251
duke@435 252 //------------------------------do_new-----------------------------------------
duke@435 253 void Parse::do_new() {
duke@435 254 kill_dead_locals();
duke@435 255
duke@435 256 bool will_link;
duke@435 257 ciInstanceKlass* klass = iter().get_klass(will_link)->as_instance_klass();
duke@435 258 assert(will_link, "_new: typeflow responsibility");
duke@435 259
duke@435 260 // Should initialize, or throw an InstantiationError?
never@2000 261 if (!klass->is_initialized() && !klass->is_being_initialized() ||
duke@435 262 klass->is_abstract() || klass->is_interface() ||
duke@435 263 klass->name() == ciSymbol::java_lang_Class() ||
duke@435 264 iter().is_unresolved_klass()) {
duke@435 265 uncommon_trap(Deoptimization::Reason_uninitialized,
duke@435 266 Deoptimization::Action_reinterpret,
duke@435 267 klass);
duke@435 268 return;
duke@435 269 }
never@2000 270 if (klass->is_being_initialized()) {
never@2000 271 emit_guard_for_new(klass);
never@2000 272 }
duke@435 273
duke@435 274 Node* kls = makecon(TypeKlassPtr::make(klass));
duke@435 275 Node* obj = new_instance(kls);
duke@435 276
duke@435 277 // Push resultant oop onto stack
duke@435 278 push(obj);
never@1515 279
never@1515 280 // Keep track of whether opportunities exist for StringBuilder
never@1515 281 // optimizations.
never@1515 282 if (OptimizeStringConcat &&
never@1515 283 (klass == C->env()->StringBuilder_klass() ||
never@1515 284 klass == C->env()->StringBuffer_klass())) {
never@1515 285 C->set_has_stringbuilder(true);
never@1515 286 }
kvn@5110 287
kvn@5110 288 // Keep track of boxed values for EliminateAutoBox optimizations.
kvn@5110 289 if (C->eliminate_boxing() && klass->is_box_klass()) {
kvn@5110 290 C->set_has_boxed_value(true);
kvn@5110 291 }
duke@435 292 }
duke@435 293
duke@435 294 #ifndef PRODUCT
duke@435 295 //------------------------------dump_map_adr_mem-------------------------------
duke@435 296 // Debug dump of the mapping from address types to MergeMemNode indices.
duke@435 297 void Parse::dump_map_adr_mem() const {
duke@435 298 tty->print_cr("--- Mapping from address types to memory Nodes ---");
duke@435 299 MergeMemNode *mem = map() == NULL ? NULL : (map()->memory()->is_MergeMem() ?
duke@435 300 map()->memory()->as_MergeMem() : NULL);
duke@435 301 for (uint i = 0; i < (uint)C->num_alias_types(); i++) {
duke@435 302 C->alias_type(i)->print_on(tty);
duke@435 303 tty->print("\t");
duke@435 304 // Node mapping, if any
duke@435 305 if (mem && i < mem->req() && mem->in(i) && mem->in(i) != mem->empty_memory()) {
duke@435 306 mem->in(i)->dump();
duke@435 307 } else {
duke@435 308 tty->cr();
duke@435 309 }
duke@435 310 }
duke@435 311 }
duke@435 312
duke@435 313 #endif
duke@435 314
duke@435 315
duke@435 316 //=============================================================================
duke@435 317 //
duke@435 318 // parser methods for profiling
duke@435 319
duke@435 320
duke@435 321 //----------------------test_counter_against_threshold ------------------------
duke@435 322 void Parse::test_counter_against_threshold(Node* cnt, int limit) {
duke@435 323 // Test the counter against the limit and uncommon trap if greater.
duke@435 324
duke@435 325 // This code is largely copied from the range check code in
duke@435 326 // array_addressing()
duke@435 327
duke@435 328 // Test invocation count vs threshold
duke@435 329 Node *threshold = makecon(TypeInt::make(limit));
kvn@4115 330 Node *chk = _gvn.transform( new (C) CmpUNode( cnt, threshold) );
duke@435 331 BoolTest::mask btest = BoolTest::lt;
kvn@4115 332 Node *tst = _gvn.transform( new (C) BoolNode( chk, btest) );
duke@435 333 // Branch to failure if threshold exceeded
duke@435 334 { BuildCutout unless(this, tst, PROB_ALWAYS);
duke@435 335 uncommon_trap(Deoptimization::Reason_age,
duke@435 336 Deoptimization::Action_maybe_recompile);
duke@435 337 }
duke@435 338 }
duke@435 339
duke@435 340 //----------------------increment_and_test_invocation_counter-------------------
duke@435 341 void Parse::increment_and_test_invocation_counter(int limit) {
duke@435 342 if (!count_invocations()) return;
duke@435 343
coleenp@4037 344 // Get the Method* node.
jiangli@4936 345 ciMethod* m = method();
twisti@5907 346 MethodCounters* counters_adr = m->ensure_method_counters();
twisti@5907 347 if (counters_adr == NULL) {
twisti@5907 348 C->record_failure("method counters allocation failed");
twisti@5907 349 return;
twisti@5907 350 }
duke@435 351
jiangli@4936 352 Node* ctrl = control();
twisti@5907 353 const TypePtr* adr_type = TypeRawPtr::make((address) counters_adr);
jiangli@4936 354 Node *counters_node = makecon(adr_type);
jiangli@4936 355 Node* adr_iic_node = basic_plus_adr(counters_node, counters_node,
jiangli@4936 356 MethodCounters::interpreter_invocation_counter_offset_in_bytes());
goetz@6479 357 Node* cnt = make_load(ctrl, adr_iic_node, TypeInt::INT, T_INT, adr_type, MemNode::unordered);
duke@435 358
duke@435 359 test_counter_against_threshold(cnt, limit);
duke@435 360
duke@435 361 // Add one to the counter and store
kvn@4115 362 Node* incr = _gvn.transform(new (C) AddINode(cnt, _gvn.intcon(1)));
goetz@6479 363 store_to_memory(ctrl, adr_iic_node, incr, T_INT, adr_type, MemNode::unordered);
duke@435 364 }
duke@435 365
duke@435 366 //----------------------------method_data_addressing---------------------------
duke@435 367 Node* Parse::method_data_addressing(ciMethodData* md, ciProfileData* data, ByteSize counter_offset, Node* idx, uint stride) {
coleenp@4037 368 // Get offset within MethodData* of the data array
coleenp@4037 369 ByteSize data_offset = MethodData::data_offset();
duke@435 370
duke@435 371 // Get cell offset of the ProfileData within data array
duke@435 372 int cell_offset = md->dp_to_di(data->dp());
duke@435 373
duke@435 374 // Add in counter_offset, the # of bytes into the ProfileData of counter or flag
duke@435 375 int offset = in_bytes(data_offset) + cell_offset + in_bytes(counter_offset);
duke@435 376
coleenp@4037 377 const TypePtr* adr_type = TypeMetadataPtr::make(md);
duke@435 378 Node* mdo = makecon(adr_type);
duke@435 379 Node* ptr = basic_plus_adr(mdo, mdo, offset);
duke@435 380
duke@435 381 if (stride != 0) {
duke@435 382 Node* str = _gvn.MakeConX(stride);
kvn@4115 383 Node* scale = _gvn.transform( new (C) MulXNode( idx, str ) );
kvn@4115 384 ptr = _gvn.transform( new (C) AddPNode( mdo, ptr, scale ) );
duke@435 385 }
duke@435 386
duke@435 387 return ptr;
duke@435 388 }
duke@435 389
duke@435 390 //--------------------------increment_md_counter_at----------------------------
duke@435 391 void Parse::increment_md_counter_at(ciMethodData* md, ciProfileData* data, ByteSize counter_offset, Node* idx, uint stride) {
duke@435 392 Node* adr_node = method_data_addressing(md, data, counter_offset, idx, stride);
duke@435 393
duke@435 394 const TypePtr* adr_type = _gvn.type(adr_node)->is_ptr();
goetz@6479 395 Node* cnt = make_load(NULL, adr_node, TypeInt::INT, T_INT, adr_type, MemNode::unordered);
kvn@4115 396 Node* incr = _gvn.transform(new (C) AddINode(cnt, _gvn.intcon(DataLayout::counter_increment)));
goetz@6479 397 store_to_memory(NULL, adr_node, incr, T_INT, adr_type, MemNode::unordered);
duke@435 398 }
duke@435 399
duke@435 400 //--------------------------test_for_osr_md_counter_at-------------------------
duke@435 401 void Parse::test_for_osr_md_counter_at(ciMethodData* md, ciProfileData* data, ByteSize counter_offset, int limit) {
duke@435 402 Node* adr_node = method_data_addressing(md, data, counter_offset);
duke@435 403
duke@435 404 const TypePtr* adr_type = _gvn.type(adr_node)->is_ptr();
goetz@6479 405 Node* cnt = make_load(NULL, adr_node, TypeInt::INT, T_INT, adr_type, MemNode::unordered);
duke@435 406
duke@435 407 test_counter_against_threshold(cnt, limit);
duke@435 408 }
duke@435 409
duke@435 410 //-------------------------------set_md_flag_at--------------------------------
duke@435 411 void Parse::set_md_flag_at(ciMethodData* md, ciProfileData* data, int flag_constant) {
duke@435 412 Node* adr_node = method_data_addressing(md, data, DataLayout::flags_offset());
duke@435 413
duke@435 414 const TypePtr* adr_type = _gvn.type(adr_node)->is_ptr();
goetz@6479 415 Node* flags = make_load(NULL, adr_node, TypeInt::BYTE, T_BYTE, adr_type, MemNode::unordered);
kvn@4115 416 Node* incr = _gvn.transform(new (C) OrINode(flags, _gvn.intcon(flag_constant)));
goetz@6479 417 store_to_memory(NULL, adr_node, incr, T_BYTE, adr_type, MemNode::unordered);
duke@435 418 }
duke@435 419
duke@435 420 //----------------------------profile_taken_branch-----------------------------
duke@435 421 void Parse::profile_taken_branch(int target_bci, bool force_update) {
duke@435 422 // This is a potential osr_site if we have a backedge.
duke@435 423 int cur_bci = bci();
duke@435 424 bool osr_site =
duke@435 425 (target_bci <= cur_bci) && count_invocations() && UseOnStackReplacement;
duke@435 426
duke@435 427 // If we are going to OSR, restart at the target bytecode.
duke@435 428 set_bci(target_bci);
duke@435 429
duke@435 430 // To do: factor out the the limit calculations below. These duplicate
duke@435 431 // the similar limit calculations in the interpreter.
duke@435 432
duke@435 433 if (method_data_update() || force_update) {
duke@435 434 ciMethodData* md = method()->method_data();
duke@435 435 assert(md != NULL, "expected valid ciMethodData");
duke@435 436 ciProfileData* data = md->bci_to_data(cur_bci);
duke@435 437 assert(data->is_JumpData(), "need JumpData for taken branch");
duke@435 438 increment_md_counter_at(md, data, JumpData::taken_offset());
duke@435 439 }
duke@435 440
duke@435 441 // In the new tiered system this is all we need to do. In the old
duke@435 442 // (c2 based) tiered sytem we must do the code below.
duke@435 443 #ifndef TIERED
duke@435 444 if (method_data_update()) {
duke@435 445 ciMethodData* md = method()->method_data();
duke@435 446 if (osr_site) {
duke@435 447 ciProfileData* data = md->bci_to_data(cur_bci);
duke@435 448 int limit = (CompileThreshold
duke@435 449 * (OnStackReplacePercentage - InterpreterProfilePercentage)) / 100;
duke@435 450 test_for_osr_md_counter_at(md, data, JumpData::taken_offset(), limit);
duke@435 451 }
duke@435 452 } else {
duke@435 453 // With method data update off, use the invocation counter to trigger an
duke@435 454 // OSR compilation, as done in the interpreter.
duke@435 455 if (osr_site) {
duke@435 456 int limit = (CompileThreshold * OnStackReplacePercentage) / 100;
duke@435 457 increment_and_test_invocation_counter(limit);
duke@435 458 }
duke@435 459 }
duke@435 460 #endif // TIERED
duke@435 461
duke@435 462 // Restore the original bytecode.
duke@435 463 set_bci(cur_bci);
duke@435 464 }
duke@435 465
duke@435 466 //--------------------------profile_not_taken_branch---------------------------
duke@435 467 void Parse::profile_not_taken_branch(bool force_update) {
duke@435 468
duke@435 469 if (method_data_update() || force_update) {
duke@435 470 ciMethodData* md = method()->method_data();
duke@435 471 assert(md != NULL, "expected valid ciMethodData");
duke@435 472 ciProfileData* data = md->bci_to_data(bci());
duke@435 473 assert(data->is_BranchData(), "need BranchData for not taken branch");
duke@435 474 increment_md_counter_at(md, data, BranchData::not_taken_offset());
duke@435 475 }
duke@435 476
duke@435 477 }
duke@435 478
duke@435 479 //---------------------------------profile_call--------------------------------
duke@435 480 void Parse::profile_call(Node* receiver) {
duke@435 481 if (!method_data_update()) return;
duke@435 482
duke@435 483 switch (bc()) {
duke@435 484 case Bytecodes::_invokevirtual:
duke@435 485 case Bytecodes::_invokeinterface:
duke@435 486 profile_receiver_type(receiver);
duke@435 487 break;
duke@435 488 case Bytecodes::_invokestatic:
jrose@1161 489 case Bytecodes::_invokedynamic:
duke@435 490 case Bytecodes::_invokespecial:
kvn@1641 491 profile_generic_call();
duke@435 492 break;
duke@435 493 default: fatal("unexpected call bytecode");
duke@435 494 }
duke@435 495 }
duke@435 496
duke@435 497 //------------------------------profile_generic_call---------------------------
duke@435 498 void Parse::profile_generic_call() {
duke@435 499 assert(method_data_update(), "must be generating profile code");
duke@435 500
duke@435 501 ciMethodData* md = method()->method_data();
duke@435 502 assert(md != NULL, "expected valid ciMethodData");
duke@435 503 ciProfileData* data = md->bci_to_data(bci());
duke@435 504 assert(data->is_CounterData(), "need CounterData for not taken branch");
duke@435 505 increment_md_counter_at(md, data, CounterData::count_offset());
duke@435 506 }
duke@435 507
duke@435 508 //-----------------------------profile_receiver_type---------------------------
duke@435 509 void Parse::profile_receiver_type(Node* receiver) {
duke@435 510 assert(method_data_update(), "must be generating profile code");
duke@435 511
duke@435 512 ciMethodData* md = method()->method_data();
duke@435 513 assert(md != NULL, "expected valid ciMethodData");
duke@435 514 ciProfileData* data = md->bci_to_data(bci());
duke@435 515 assert(data->is_ReceiverTypeData(), "need ReceiverTypeData here");
kvn@1641 516
kvn@1641 517 // Skip if we aren't tracking receivers
kvn@1641 518 if (TypeProfileWidth < 1) {
kvn@1641 519 increment_md_counter_at(md, data, CounterData::count_offset());
kvn@1641 520 return;
kvn@1641 521 }
duke@435 522 ciReceiverTypeData* rdata = (ciReceiverTypeData*)data->as_ReceiverTypeData();
duke@435 523
duke@435 524 Node* method_data = method_data_addressing(md, rdata, in_ByteSize(0));
duke@435 525
duke@435 526 // Using an adr_type of TypePtr::BOTTOM to work around anti-dep problems.
duke@435 527 // A better solution might be to use TypeRawPtr::BOTTOM with RC_NARROW_MEM.
duke@435 528 make_runtime_call(RC_LEAF, OptoRuntime::profile_receiver_type_Type(),
duke@435 529 CAST_FROM_FN_PTR(address,
duke@435 530 OptoRuntime::profile_receiver_type_C),
duke@435 531 "profile_receiver_type_C",
duke@435 532 TypePtr::BOTTOM,
duke@435 533 method_data, receiver);
duke@435 534 }
duke@435 535
duke@435 536 //---------------------------------profile_ret---------------------------------
duke@435 537 void Parse::profile_ret(int target_bci) {
duke@435 538 if (!method_data_update()) return;
duke@435 539
duke@435 540 // Skip if we aren't tracking ret targets
duke@435 541 if (TypeProfileWidth < 1) return;
duke@435 542
duke@435 543 ciMethodData* md = method()->method_data();
duke@435 544 assert(md != NULL, "expected valid ciMethodData");
duke@435 545 ciProfileData* data = md->bci_to_data(bci());
duke@435 546 assert(data->is_RetData(), "need RetData for ret");
duke@435 547 ciRetData* ret_data = (ciRetData*)data->as_RetData();
duke@435 548
duke@435 549 // Look for the target_bci is already in the table
duke@435 550 uint row;
duke@435 551 bool table_full = true;
duke@435 552 for (row = 0; row < ret_data->row_limit(); row++) {
duke@435 553 int key = ret_data->bci(row);
duke@435 554 table_full &= (key != RetData::no_bci);
duke@435 555 if (key == target_bci) break;
duke@435 556 }
duke@435 557
duke@435 558 if (row >= ret_data->row_limit()) {
duke@435 559 // The target_bci was not found in the table.
duke@435 560 if (!table_full) {
duke@435 561 // XXX: Make slow call to update RetData
duke@435 562 }
duke@435 563 return;
duke@435 564 }
duke@435 565
duke@435 566 // the target_bci is already in the table
duke@435 567 increment_md_counter_at(md, data, RetData::bci_count_offset(row));
duke@435 568 }
duke@435 569
duke@435 570 //--------------------------profile_null_checkcast----------------------------
duke@435 571 void Parse::profile_null_checkcast() {
duke@435 572 // Set the null-seen flag, done in conjunction with the usual null check. We
duke@435 573 // never unset the flag, so this is a one-way switch.
duke@435 574 if (!method_data_update()) return;
duke@435 575
duke@435 576 ciMethodData* md = method()->method_data();
duke@435 577 assert(md != NULL, "expected valid ciMethodData");
duke@435 578 ciProfileData* data = md->bci_to_data(bci());
duke@435 579 assert(data->is_BitData(), "need BitData for checkcast");
duke@435 580 set_md_flag_at(md, data, BitData::null_seen_byte_constant());
duke@435 581 }
duke@435 582
duke@435 583 //-----------------------------profile_switch_case-----------------------------
duke@435 584 void Parse::profile_switch_case(int table_index) {
duke@435 585 if (!method_data_update()) return;
duke@435 586
duke@435 587 ciMethodData* md = method()->method_data();
duke@435 588 assert(md != NULL, "expected valid ciMethodData");
duke@435 589
duke@435 590 ciProfileData* data = md->bci_to_data(bci());
duke@435 591 assert(data->is_MultiBranchData(), "need MultiBranchData for switch case");
duke@435 592 if (table_index >= 0) {
duke@435 593 increment_md_counter_at(md, data, MultiBranchData::case_count_offset(table_index));
duke@435 594 } else {
duke@435 595 increment_md_counter_at(md, data, MultiBranchData::default_count_offset());
duke@435 596 }
duke@435 597 }

mercurial