comparison src/share/vm/runtime/sharedRuntime.hpp @ 1295:3cf667df43ef

6919934: JSR 292 needs to support x86 C1 Summary: This implements JSR 292 support for C1 x86. Reviewed-by: never, jrose, kvn
author twisti
date Tue, 09 Mar 2010 20:16:19 +0100
parents 74c848d437ab
children 9eba43136cb5
comparison
equal deleted inserted replaced
1293:51db1e4b379d 1295:3cf667df43ef
94 static jdouble dlog(jdouble x); 94 static jdouble dlog(jdouble x);
95 static jdouble dlog10(jdouble x); 95 static jdouble dlog10(jdouble x);
96 static jdouble dexp(jdouble x); 96 static jdouble dexp(jdouble x);
97 static jdouble dpow(jdouble x, jdouble y); 97 static jdouble dpow(jdouble x, jdouble y);
98 98
99
100 // exception handling across interpreter/compiler boundaries 99 // exception handling across interpreter/compiler boundaries
101 static address raw_exception_handler_for_return_address(address return_address); 100 static address raw_exception_handler_for_return_address(JavaThread* thread, address return_address);
102 static address exception_handler_for_return_address(address return_address); 101 static address exception_handler_for_return_address(JavaThread* thread, address return_address);
103 102
104 #ifndef SERIALGC 103 #ifndef SERIALGC
105 // G1 write barriers 104 // G1 write barriers
106 static void g1_wb_pre(oopDesc* orig, JavaThread *thread); 105 static void g1_wb_pre(oopDesc* orig, JavaThread *thread);
107 static void g1_wb_post(void* card_addr, JavaThread* thread); 106 static void g1_wb_post(void* card_addr, JavaThread* thread);