changeset 6471:b4fe028b6dc8

removed linkage to slow path monitor stubs (which were only used by XIR snippets)
author Doug Simon <doug.simon@oracle.com>
date Mon, 01 Oct 2012 21:41:38 +0200
parents b1010f7bc0bf
children 7548c1248bb3
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/HotSpotVMConfig.java src/share/vm/graal/graalCompilerToVM.cpp
diffstat 2 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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)));