Home | History | Annotate | Download | only in src

Lines Matching defs:function

40 static void PrintDeserializedCodeInfo(Handle<JSFunction> function) {
41 if (function->code() == function->shared()->code() &&
42 function->shared()->deserialized()) {
44 Object* script = function->shared()->script();
66 // are performed whenever a JS function is called. However, it can be the case
81 Handle<JSFunction> function = Handle<JSFunction>::cast(target);
82 if ((!is_construct || function->IsConstructor()) &&
83 function->shared()->IsApiFunction()) {
85 isolate->set_context(function->context());
86 DCHECK(function->context()->global_object()->IsJSGlobalObject());
89 isolate, is_construct, function, receiver, argc, args,
136 // Call the function through the right JS entry stub.