src/hotspot/share/oops/methodData.cpp
changeset 58375 a1eba2e37671
parent 58273 08a5148e7c4e
child 58545 725244418646
equal deleted inserted replaced
58372:43c4fb8ba96b 58375:a1eba2e37671
  1210   }
  1210   }
  1211 }
  1211 }
  1212 
  1212 
  1213 // Initialize the MethodData* corresponding to a given method.
  1213 // Initialize the MethodData* corresponding to a given method.
  1214 MethodData::MethodData(const methodHandle& method, int size, TRAPS)
  1214 MethodData::MethodData(const methodHandle& method, int size, TRAPS)
  1215   : _extra_data_lock(Monitor::leaf, "MDO extra data lock"),
  1215   : _extra_data_lock(Mutex::leaf, "MDO extra data lock"),
  1216     _parameters_type_data_di(parameters_uninitialized) {
  1216     _parameters_type_data_di(parameters_uninitialized) {
  1217   // Set the method back-pointer.
  1217   // Set the method back-pointer.
  1218   _method = method();
  1218   _method = method();
  1219   initialize();
  1219   initialize();
  1220 }
  1220 }