Home | History | Annotate | Download | only in debug

Lines Matching defs:function

720   // Saves only function code, because for a script function we
731 // Saves full information about a function: its code, its scope info
968 // Patch function literals.
1006 // Iterates all function instances in the HEAP that refers to the
1015 JSFunction* function
1016 if (function->shared() == *shared_info) {
1017 visitor->visit(function);
1075 // Marks code that shares the same shared function info or has inlined
1076 // code that shares the same function info.
1087 virtual void VisitFunction(JSFunction* function) {
1089 DCHECK(function->code()->kind() == Code::OPTIMIZED_FUNCTION);
1090 if (function->Inlines(shared_info_)) {
1092 function->code()->set_marked_for_deoptimization(true);
1122 if (shared_info->code()->kind() == Code::FUNCTION) {
1351 if (info->code()->kind() == Code::FUNCTION) {
1436 // Check an activation against list of functions. If there is a function
1444 Handle<JSFunction> function(JavaScriptFrame::cast(frame)->function());
1456 if (function->Inlines(*shared)) {
1493 // -- function (slot is called "context")
1501 // Move function pointer into "context" slot.
1565 return "Unknown structure of stack above changing function";
1659 Handle<SharedFunctionInfo> old_shared(jsframe->function()->shared());
1662 // Find corresponding new shared function info and return whether it
1727 // We haven't found break frame, but no function is blocking us anyway.
1745 JavaScriptFrame::cast(frame)->function()->shared();
1809 // removing all listed function if possible and if do_drop is true.
1865 if (gen->function()->shared() == *shared) {
1980 Handle<SharedFunctionInfo> shared(jsframe->function()->shared());
2001 return "Function is blocked under native code";
2004 return "Function is blocked under a generator activation";