Home | History | Annotate | Download | only in regress

Lines Matching refs:function

30 (function DeoptimizeArgCallFunctionGeneric() {
33 function f1(method, array, elem, deopt) {
37 function f2() { }
39 function bar(x, deopt, f) {
43 function foo() { return bar(arguments[0], arguments[1], arguments[2]); }
44 function baz(f, deopt) { return foo("x", deopt, f); }
53 (function DeoptimizeArgGlobalFunctionGeneric() {
58 f1 = function(method, array, elem, deopt) {
62 function bar(x, deopt, f) {
66 function foo() { return bar(arguments[0], arguments[1]); }
67 function baz(deopt) { return foo("x", deopt); }
76 (function DeoptimizeArgCallFunctionRuntime() {
81 f1 = function(method, array, elem, deopt) {
85 function bar(x, deopt) {
89 function foo() { return bar(arguments[0], arguments[1]); }
90 function baz(deopt) { return foo(0, deopt); }