src/share/vm/ci/ciMethodData.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/ci/ciMethodData.cpp	Tue Sep  2 15:11:33 2014
--- new/src/share/vm/ci/ciMethodData.cpp	Tue Sep  2 15:11:33 2014

*** 79,101 **** --- 79,120 ---- } void ciMethodData::load_extra_data() { MethodData* mdo = get_MethodData(); + MutexLocker(mdo->extra_data_lock()); + // speculative trap entries also hold a pointer to a Method so need to be translated DataLayout* dp_src = mdo->extra_data_base(); ! DataLayout* end_src = mdo->extra_data_limit(); ! DataLayout* end_src = mdo->args_data_limit(); DataLayout* dp_dst = extra_data_base(); for (;; dp_src = MethodData::next_extra(dp_src), dp_dst = MethodData::next_extra(dp_dst)) { assert(dp_src < end_src, "moved past end of extra data"); // New traps in the MDO can be added as we translate the copy so // look at the entries in the copy. switch(dp_dst->tag()) { + assert(((intptr_t)dp_dst) - ((intptr_t)extra_data_base()) == ((intptr_t)dp_src) - ((intptr_t)mdo->extra_data_base()), "source and destination don't match"); + + // New traps in the MDO may have been added since we copied the + // data (concurrent deoptimizations before we acquired + // extra_data_lock above) or can be removed (a safepoint may occur + // in the translate_from call below) as we translate the copy: + // update the copy as we go. + int tag = dp_src->tag(); + if (tag != DataLayout::arg_info_data_tag) { + memcpy(dp_dst, dp_src, ((intptr_t)MethodData::next_extra(dp_src)) - ((intptr_t)dp_src)); + } + + switch(tag) { case DataLayout::speculative_trap_data_tag: { ciSpeculativeTrapData* data_dst = new ciSpeculativeTrapData(dp_dst); SpeculativeTrapData* data_src = new SpeculativeTrapData(dp_src); + data_dst->translate_from(data_src); + + #ifdef ASSERT + SpeculativeTrapData* data_src2 = new SpeculativeTrapData(dp_src); + assert(data_src2->method() == data_src->method() && data_src2->bci() == data_src->bci(), "entries changed while translating"); + #endif + break; } case DataLayout::bit_data_tag: break; case DataLayout::no_tag:
*** 242,253 **** --- 261,272 ---- ciProfileData* next = data_at(next_index); return next; } ciProfileData* ciMethodData::bci_to_extra_data(int bci, ciMethod* m, bool& two_free_slots) { ! DataLayout* dp = data_layout_at(data_size()); ! DataLayout* end = data_layout_at(data_size() + extra_data_size()); ! DataLayout* dp = extra_data_base(); ! DataLayout* end = args_data_limit(); two_free_slots = false; for (;dp < end; dp = MethodData::next_extra(dp)) { switch(dp->tag()) { case DataLayout::no_tag: _saw_free_extra_data = true; // observed an empty slot (common case)
*** 490,501 **** --- 509,520 ---- return in_ByteSize(offset); } ciArgInfoData *ciMethodData::arg_info() const { // Should be last, have to skip all traps. ! DataLayout* dp = data_layout_at(data_size()); ! DataLayout* end = data_layout_at(data_size() + extra_data_size()); ! DataLayout* dp = extra_data_base(); ! DataLayout* end = args_data_limit(); for (; dp < end; dp = MethodData::next_extra(dp)) { if (dp->tag() == DataLayout::arg_info_data_tag) return new ciArgInfoData(dp); } return NULL;
*** 533,544 **** --- 552,563 ---- dump_replay_data_type_helper(out, round, count, call_type_data, call_type_data->return_type_offset(), call_type_data->valid_return_type()); } } void ciMethodData::dump_replay_data_extra_data_helper(outputStream* out, int round, int& count) { ! DataLayout* dp = data_layout_at(data_size()); ! DataLayout* end = data_layout_at(data_size() + extra_data_size()); ! DataLayout* dp = extra_data_base(); ! DataLayout* end = args_data_limit(); for (;dp < end; dp = MethodData::next_extra(dp)) { switch(dp->tag()) { case DataLayout::no_tag: case DataLayout::arg_info_data_tag:
*** 651,662 **** --- 670,681 ---- st->print("%d", dp_to_di(data->dp())); st->fill_to(6); data->print_data_on(st); } st->print_cr("--- Extra data:"); ! DataLayout* dp = data_layout_at(data_size()); ! DataLayout* end = data_layout_at(data_size() + extra_data_size()); ! DataLayout* dp = extra_data_base(); ! DataLayout* end = args_data_limit(); for (;; dp = MethodData::next_extra(dp)) { assert(dp < end, "moved past end of extra data"); switch (dp->tag()) { case DataLayout::no_tag: continue;

src/share/vm/ci/ciMethodData.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File