Home | History | Annotate | Download | only in x64

Lines Matching refs:function

49 void Deoptimizer::DeoptimizeFunction(JSFunction* function) {
53 if (!function->IsOptimized()) return;
56 Code* code = function->code();
68 Address instruction_start = function->code()->instruction_start();
103 // Set the code for the function to non-optimized version.
104 function->ReplaceCode(function->shared()->code());
108 function->PrintName();
109 PrintF(" / %" V8PRIxPTR "]\n", reinterpret_cast<intptr_t>(function));
219 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator.Next()));
220 USE(function);
221 ASSERT(function == function_);
272 // context, and the function. Set them up explicitly.
290 name = "function";
326 function->GetIsolate()->builtins()->builtin(Builtins::kNotifyOSR);
333 reinterpret_cast<intptr_t>(function));
334 function->PrintName();
342 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next()));
354 new(output_frame_size) FrameDescription(output_frame_size, function);
409 // The function was mentioned explicitly in the ARGUMENTS_ADAPTOR_FRAME.
411 value = reinterpret_cast<intptr_t>(function);
415 V8PRIxPTR " ; function\n",
445 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next()));
457 new(output_frame_size) FrameDescription(output_frame_size, function);
511 // A marker value is used in place of the function.
517 V8PRIxPTR " ; function (construct sentinel)\n",
564 JSFunction* function = JSFunction::cast(ComputeLiteral(iterator->Next()));
569 function->PrintName();
575 unsigned fixed_frame_size = ComputeFixedSize(function);
581 new(output_frame_size) FrameDescription(output_frame_size, function);
596 // 2 = context and function in the frame.
605 int parameter_count = function->shared()->formal_parameter_count() + 1;
615 // context, and the function. Synthesize their values and set them up
621 // function code and AST id of the bailout.
660 // frame. For all subsequent output frames it can be gotten from the function
667 value = reinterpret_cast<intptr_t>(function->context());
678 // The function was mentioned explicitly in the BEGIN_FRAME.
681 value = reinterpret_cast<intptr_t>(function);
682 // The function for the bottommost output frame should also agree with the
688 V8PRIxPTR "; function\n",
700 Code* non_optimized_code = function->shared()->code();
704 unsigned pc_and_state = GetOutputInfo(data, node_id, function->shared());