comparison src/cpu/sparc/vm/interpreter_sparc.cpp @ 1503:c640000b7cc1

6829193: JSR 292 needs to support SPARC Summary: There are unimplemented portions of the hotspot code for method handles and invokedynamic specific to SPARC. Reviewed-by: kvn, never, jrose
author twisti
date Thu, 29 Apr 2010 06:30:25 -0700
parents ddb7834449d0
children c18cbe5936b8
comparison
equal deleted inserted replaced
1399:90acda19b80f 1503:c640000b7cc1
233 return entry; 233 return entry;
234 234
235 } 235 }
236 236
237 237
238
239 // Method handle invoker 238 // Method handle invoker
240 // Dispatch a method of the form java.dyn.MethodHandles::invoke(...) 239 // Dispatch a method of the form java.dyn.MethodHandles::invoke(...)
241 address InterpreterGenerator::generate_method_handle_entry(void) { 240 address InterpreterGenerator::generate_method_handle_entry(void) {
242 if (!EnableMethodHandles) { 241 if (!EnableMethodHandles) {
243 return generate_abstract_entry(); 242 return generate_abstract_entry();
244 } 243 }
245 return generate_abstract_entry(); //6815692// 244
246 } 245 return MethodHandles::generate_method_handle_interpreter_entry(_masm);
247 246 }
248
249 247
250 248
251 //---------------------------------------------------------------------------------------------------- 249 //----------------------------------------------------------------------------------------------------
252 // Entry points & stack frame layout 250 // Entry points & stack frame layout
253 // 251 //