Home | History | Annotate | Download | only in src

Lines Matching defs:function

37 static void PrintDeserializedCodeInfo(Handle<JSFunction> function) {
38 if (function->code() == function->shared()->code() &&
39 function->shared()->deserialized()) {
41 Object* script = function->shared()->script();
89 // Call the function through the right JS entry stub.
138 Handle<JSFunction> function = Handle<JSFunction>::cast(callable);
140 isolate->set_context(function->context());
143 is_sloppy(function->shared()->language_mode())) {
145 receiver = handle(function->global_proxy(), isolate);
151 DCHECK(function->context()->global_object()->IsJSGlobalObject());
152 auto value = Builtins::InvokeApiFunction(function, receiver, argc, argv);