comparison src/share/vm/c1x/c1x_VMEntries.cpp @ 1939:b7fb5f1e0747

Two new flags: -XX:MaxCompilationID (to enable debugging binary search for problematic method) and -XX:C1XBailoutIsFatal.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Mon, 27 Dec 2010 20:33:00 +0100
parents 8d88c9ac9247
children 79d04223b8a5
comparison
equal deleted inserted replaced
1938:1aa5b22a7716 1939:b7fb5f1e0747
515 return id; 515 return id;
516 } 516 }
517 517
518 // public void recordBailout(String reason); 518 // public void recordBailout(String reason);
519 JNIEXPORT void JNICALL Java_com_sun_hotspot_c1x_VMEntries_recordBailout(JNIEnv *jniEnv, jobject) { 519 JNIEXPORT void JNICALL Java_com_sun_hotspot_c1x_VMEntries_recordBailout(JNIEnv *jniEnv, jobject) {
520 //fatal("Bailout in C1X"); 520 if (C1XBailoutIsFatal) fatal("Bailout in C1X");
521 } 521 }
522 522
523 523
524 524
525 525