Home | History | Annotate | Download | only in compiler

Lines Matching refs:deopt

35   var noDeopt = { deopt:0 };
60 function value_context(constructor, val, deopt, counter) {
61 var obj = new constructor(val, deopt, counter);
65 function test_context(constructor, val, deopt, counter) {
66 if (!new constructor(val, deopt, counter)) {
72 function effect_context(constructor, val, deopt, counter) {
73 new constructor(val, deopt, counter);
85 function c1(val, deopt, counter) {
86 deopt.deopt;
94 function c2(val, deopt, counter) {
96 deopt.deopt;
105 function c3(val, deopt, counter) {
106 deopt.deopt;
146 function c_unsupported_syntax(val, deopt, counter) {
148 deopt.deopt;
160 function c_strict(val, deopt, counter) {
162 deopt.deopt;