hotspot/src/share/vm/ci/ciEnv.cpp
changeset 40664 1ec65b303bb7
parent 40057 a0511d037cbe
child 46262 83280d968b96
child 43675 a2b322083029
equal deleted inserted replaced
40659:a2b2936240b9 40664:1ec65b303bb7
  1147   }
  1147   }
  1148 }
  1148 }
  1149 
  1149 
  1150 void ciEnv::report_failure(const char* reason) {
  1150 void ciEnv::report_failure(const char* reason) {
  1151   // Create and fire JFR event
  1151   // Create and fire JFR event
  1152   EventCompilerFailure event;
  1152   EventCompilationFailure event;
  1153   if (event.should_commit()) {
  1153   if (event.should_commit()) {
  1154     event.set_compileID(compile_id());
  1154     event.set_compileId(compile_id());
  1155     event.set_failure(reason);
  1155     event.set_failureMessage(reason);
  1156     event.commit();
  1156     event.commit();
  1157   }
  1157   }
  1158 }
  1158 }
  1159 
  1159 
  1160 // ------------------------------------------------------------------
  1160 // ------------------------------------------------------------------