Home | History | Annotate | Download | only in src

Lines Matching defs:function

30       Handle<JSFunction> function = info->closure();
31 function->ReplaceCode(function->shared()->code());
128 // The function may have already been optimized by OSR. Simply continue.
133 // The function may have already been optimized by OSR. Simply continue.
225 Handle<JSFunction> function(*info->closure());
229 function->ShortPrint();
239 if (function->IsOptimized()) {
242 function->ShortPrint();
248 function->ReplaceCode(code.is_null() ? function->shared()->code()
296 Handle<JSFunction> function, BailoutId osr_ast_id) {
300 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
310 bool OptimizingCompileDispatcher::IsQueuedForOSR(Handle<JSFunction> function,
315 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
323 bool OptimizingCompileDispatcher::IsQueuedForOSR(JSFunction* function) {
326 if (current != NULL && *current->info()->closure() == function) {