comparison src/share/vm/c1/c1_LIRAssembler.hpp @ 1301:fc2c71045ada

6934966: JSR 292 add C1 logic for saved SP over MethodHandle calls Summary: The logic for x86 C1 to save the SP over MH calls is pretty straight forward but SPARC handles that differently. Reviewed-by: never, jrose
author twisti
date Wed, 17 Mar 2010 10:22:41 +0100
parents 3cf667df43ef
children 9f5b60a14736
comparison
equal deleted inserted replaced
1300:428a9c451986 1301:fc2c71045ada
207 207
208 void call( LIR_OpJavaCall* op, relocInfo::relocType rtype); 208 void call( LIR_OpJavaCall* op, relocInfo::relocType rtype);
209 void ic_call( LIR_OpJavaCall* op); 209 void ic_call( LIR_OpJavaCall* op);
210 void vtable_call( LIR_OpJavaCall* op); 210 void vtable_call( LIR_OpJavaCall* op);
211 211
212 void preserve_SP(); 212 // JSR 292
213 void restore_SP(); 213 void preserve_SP(LIR_OpJavaCall* op);
214 void restore_SP( LIR_OpJavaCall* op);
214 215
215 void osr_entry(); 216 void osr_entry();
216 217
217 void build_frame(); 218 void build_frame();
218 219