comparison src/cpu/x86/vm/templateInterpreter_x86_64.cpp @ 726:be93aad57795

6655646: dynamic languages need dynamically linked call sites Summary: invokedynamic instruction (JSR 292 RI) Reviewed-by: twisti, never
author jrose
date Tue, 21 Apr 2009 23:21:04 -0700
parents e5b0439ef4ae
children 389049f3f393
comparison
equal deleted inserted replaced
725:928912ce8438 726:be93aad57795
164 return entry; 164 return entry;
165 } 165 }
166 166
167 167
168 address TemplateInterpreterGenerator::generate_return_entry_for(TosState state, 168 address TemplateInterpreterGenerator::generate_return_entry_for(TosState state,
169 int step) { 169 int step, bool unbox) {
170 assert(!unbox, "NYI");//6815692//
170 171
171 // amd64 doesn't need to do anything special about compiled returns 172 // amd64 doesn't need to do anything special about compiled returns
172 // to the interpreter so the code that exists on x86 to place a sentinel 173 // to the interpreter so the code that exists on x86 to place a sentinel
173 // here and the specialized cleanup code is not needed here. 174 // here and the specialized cleanup code is not needed here.
174 175