Lines Matching refs:function
102 // The function may have already been optimized by OSR. Simply continue.
107 // The function may have already been optimized by OSR. Simply continue.
128 Handle<JSFunction> function = info->closure();
129 function->ReplaceCode(function->shared()->code());
225 Handle<JSFunction> function(*info->closure());
229 function->ShortPrint();
239 if (function->IsOptimized()) {
242 function->ShortPrint();
248 function->ReplaceCode(
249 code.is_null() ? function->shared()->code() : *code);
295 Handle<JSFunction> function, BailoutId osr_ast_id) {
301 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
311 bool OptimizingCompilerThread::IsQueuedForOSR(Handle<JSFunction> function,
317 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
325 bool OptimizingCompilerThread::IsQueuedForOSR(JSFunction* function) {
329 if (current != NULL && *current->info()->closure() == function) {