changeset 3569:76a7f1732bb0

New runtime parameter: runtimeCallStackSize (size on the stack that must be left empty in case of runtime calls)
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Fri, 02 Sep 2011 18:28:45 +0200
parents f79b652d4437
children da1b32a58d7e
files src/share/vm/graal/graalVMEntries.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/graal/graalVMEntries.cpp	Thu Sep 01 09:38:36 2011 +0200
+++ b/src/share/vm/graal/graalVMEntries.cpp	Fri Sep 02 18:28:45 2011 +0200
@@ -870,6 +870,7 @@
   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, "safepointPollingAddress", (jlong)(os::get_polling_page() + (SafepointPollOffset % os::vm_page_size())));
+  set_int(env, config, "runtimeCallStackSize", (jint)frame::arg_reg_save_area_bytes);
   set_boolean(env, config, "isPollingPageFar", Assembler::is_polling_page_far());
 
   BarrierSet* bs = Universe::heap()->barrier_set();