src/share/vm/ci/ciMethod.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/ci/ciMethod.cpp	Tue Jan 27 18:24:56 2015
--- new/src/share/vm/ci/ciMethod.cpp	Tue Jan 27 18:24:56 2015

*** 68,78 **** --- 68,79 ---- // ciMethod::ciMethod // // Loaded method. ciMethod::ciMethod(methodHandle h_m, ciInstanceKlass* holder) : ciMetadata(h_m()), ! _holder(holder), + _has_injected_profile(false) { assert(h_m() != NULL, "no null method"); // These fields are always filled in in loaded methods. _flags = ciFlags(h_m()->access_flags());
*** 166,176 **** --- 167,178 ---- _holder( holder), _intrinsic_id( vmIntrinsics::_none), _liveness( NULL), _can_be_statically_bound(false), _method_blocks( NULL), ! _method_data( NULL), + _has_injected_profile( false) #if defined(COMPILER2) || defined(SHARK) , _flow( NULL), _bcea( NULL), _instructions_size(-1)

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