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

src/share/vm/ci/ciMethod.cpp

Print this page
rev 7654 : [mq]: branch.freq.2

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