comparison src/os/bsd/vm/os_bsd.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 0368109684cb
children 957c266d8bc5
comparison
equal deleted inserted replaced
4992:f86ddbd42a7b 4993:897b7d18bebc
4845 4845
4846 // This does not do anything on Bsd. This is basically a hook for being 4846 // This does not do anything on Bsd. This is basically a hook for being
4847 // able to use structured exception handling (thread-local exception filters) 4847 // able to use structured exception handling (thread-local exception filters)
4848 // on, e.g., Win32. 4848 // on, e.g., Win32.
4849 void 4849 void
4850 os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, 4850 os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, nmethod* nm,
4851 JavaCallArguments* args, Thread* thread) { 4851 JavaCallArguments* args, Thread* thread) {
4852 f(value, method, args, thread); 4852 f(value, method, nm, args, thread);
4853 } 4853 }
4854 4854
4855 void os::print_statistics() { 4855 void os::print_statistics() {
4856 } 4856 }
4857 4857