# HG changeset patch # User Doug Simon # Date 1349120498 -7200 # Node ID b4fe028b6dc8185f34104c584ccdcc8c872bc15a # Parent b1010f7bc0bf4898d8517a1d62f47c15f896edf4 removed linkage to slow path monitor stubs (which were only used by XIR snippets) diff -r b1010f7bc0bf -r b4fe028b6dc8 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConfig.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConfig.java Mon Oct 01 21:37:20 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConfig.java Mon Oct 01 21:41:38 2012 +0200 @@ -175,8 +175,6 @@ public long inlineCacheMissStub; public long handleExceptionStub; public long handleDeoptStub; - public long monitorEnterStub; - public long monitorExitStub; public long fastMonitorEnterStub; public long fastMonitorExitStub; public long verifyOopStub; diff -r b1010f7bc0bf -r b4fe028b6dc8 src/share/vm/graal/graalCompilerToVM.cpp --- a/src/share/vm/graal/graalCompilerToVM.cpp Mon Oct 01 21:37:20 2012 +0200 +++ b/src/share/vm/graal/graalCompilerToVM.cpp Mon Oct 01 21:41:38 2012 +0200 @@ -730,8 +730,6 @@ set_long(env, config, "inlineCacheMissStub", VmIds::addStub(SharedRuntime::get_ic_miss_stub())); set_long(env, config, "handleExceptionStub", VmIds::addStub(Runtime1::entry_for(Runtime1::handle_exception_nofpu_id))); set_long(env, config, "handleDeoptStub", VmIds::addStub(SharedRuntime::deopt_blob()->unpack())); - set_long(env, config, "monitorEnterStub", VmIds::addStub(Runtime1::entry_for(Runtime1::monitorenter_id))); - set_long(env, config, "monitorExitStub", VmIds::addStub(Runtime1::entry_for(Runtime1::monitorexit_id))); set_long(env, config, "fastMonitorEnterStub", VmIds::addStub(Runtime1::entry_for(Runtime1::graal_monitorenter_id))); set_long(env, config, "fastMonitorExitStub", VmIds::addStub(Runtime1::entry_for(Runtime1::graal_monitorexit_id))); set_long(env, config, "verifyOopStub", VmIds::addStub(Runtime1::entry_for(Runtime1::graal_verify_oop_id)));