comparison src/os/linux/vm/os_linux.cpp @ 4993:897b7d18bebc

added RiCompiledMethod.execute and the required VM infrastructure
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 28 Feb 2012 18:00:35 +0100
parents 33df1aeaebbf
children 957c266d8bc5
comparison
equal deleted inserted replaced
4992:f86ddbd42a7b 4993:897b7d18bebc
4484 4484
4485 // This does not do anything on Linux. This is basically a hook for being 4485 // This does not do anything on Linux. This is basically a hook for being
4486 // able to use structured exception handling (thread-local exception filters) 4486 // able to use structured exception handling (thread-local exception filters)
4487 // on, e.g., Win32. 4487 // on, e.g., Win32.
4488 void 4488 void
4489 os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, 4489 os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, nmethod* nm,
4490 JavaCallArguments* args, Thread* thread) { 4490 JavaCallArguments* args, Thread* thread) {
4491 f(value, method, args, thread); 4491 f(value, method, nm, args, thread);
4492 } 4492 }
4493 4493
4494 void os::print_statistics() { 4494 void os::print_statistics() {
4495 } 4495 }
4496 4496