Home | History | Annotate | Download | only in regress

Lines Matching refs:deopt

33   function f1(method, array, elem, deopt) {
39 function bar(x, deopt, f) {
40 f('push', a, [x], deopt + 0);
44 function baz(f, deopt) { return foo("x", deopt, f); }
49 baz(f1, "deopt");
58 f1 = function(method, array, elem, deopt) {
62 function bar(x, deopt, f) {
63 f1('push', a, [x], deopt + 0);
67 function baz(deopt) { return foo("x", deopt); }
72 baz("deopt");
81 f1 = function(method, array, elem, deopt) {
85 function bar(x, deopt) {
86 %_CallFunction(null, 'push', [x][0], ((deopt + 0), 1), f1);
90 function baz(deopt) { return foo(0, deopt); }
95 baz("deopt");