HomeSort by relevance Sort by last modified time
    Searched defs:deopt (Results 1 - 25 of 29) sorted by null

1 2

  /external/v8/test/mjsunit/regress/
regress-4788-1.js 15 function deopt(f) { function
25 assertFalse(f(deopt(f)));
regress-4788-2.js 15 function deopt(f) { function
25 assertFalse(f(deopt(f)));
regress-2987.js 38 var deopt = { deopt:false };
46 deopt.deopt;
56 delete deopt.deopt;
regress-deopt-gc.js 38 deopt();
41 function deopt() { function
regress-deopt-gcb.js 38 deopt();
42 %NeverOptimizeFunction(deopt);
43 function deopt() { function
regress-97116.js 33 function deopt() { function
44 if (should_deopt) deopt();
regress-97116b.js 33 %NeverOptimizeFunction(deopt);
34 function deopt() { function
44 if (should_deopt) deopt();
regress-assignment-in-test-context.js 16 function deopt() { %DeoptimizeFunction(f); } function
19 f(Object.defineProperty({}, "setterProperty", { set: deopt })));
regress-crbug-163530.js 33 var deoptimize = { deopt:true }; property
43 deoptimize.deopt;
51 delete deoptimize.deopt;
60 var deoptimize = { deopt:true };
70 deoptimize.deopt;
78 delete deoptimize.deopt;
regress-359441.js 15 function deopt(x) { function
22 Object.prototype.__defineSetter__('x', deopt);
  /external/v8/test/mjsunit/compiler/
escape-analysis-representation.js 42 function access(value_track, value_break, deopt) {
45 deopt.deopt
50 var deopt = { deopt:false };
53 access(value_track, value_track(), deopt);
54 access(value_track, value_track(), deopt);
56 access(value_track, value_track(), deopt);
59 delete deopt.deopt;
    [all...]
deopt-tonumber-compare.js 22 function deopt(f) { function
32 assertEquals(false, f(deopt(f)));
35 assertEquals(true, g(deopt(g)));
39 assertEquals(false, f(deopt(f)));
43 assertEquals(true, g(deopt(g)));
regress-to-number-binop-deopt.js 7 function deopt(f) { function
24 assertEquals(1, or_zero(deopt(or_zero)));
25 assertEquals(1.1, multiply_one(deopt(multiply_one)));
deopt-tonumber-binop.js 17 var deopt = { toString : function() {
29 assertEquals(1, f(deopt, o));
34 assertEquals(-1, f(o, deopt));
39 assertEquals(0, f(deopt, deopt));
deopt-tonumber-shift.js 17 var deopt = { toString : function() {
29 assertEquals(4, f(deopt, o));
34 assertEquals(4, f(o, deopt));
39 assertEquals(8, f(deopt, deopt));
lazy-deopt-in-literal.js 7 function deopt() { function
12 var r = { 113: deopt(), 113: 7 };
inline-function-apply.js 36 var deoptimize = { deopt:false };
63 deoptimize.deopt;
75 delete deoptimize.deopt;
inline-construct.js 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;
    [all...]
optimized-for-in.js 110 function h(t, deopt) {
118 deopt.deopt;
123 function j(t, deopt) {
131 deopt.deopt;
136 function k(t, deopt) {
144 deopt.deopt;
149 function l(t, deopt) {
    [all...]
inline-arguments.js 213 var forceDeopt = { deopt:false };
216 forceDeopt.deopt;
250 if (step == 2) delete forceDeopt.deopt;
274 var forceDeopt = { deopt:false };
277 forceDeopt.deopt;
309 delete forceDeopt.deopt;
escape-analysis.js 110 var deopt = { deopt:false }; property
123 deopt.deopt;
132 delete deopt.deopt;
139 var deopt = { deopt:false }; property
143 deopt.deopt;
278 var deopt = { deopt:false }; property
403 var deopt = { deopt:false }; property
423 var deopt = { deopt:false }; property
    [all...]
  /art/test/535-deopt-and-inlining/src/
Main.java 32 deopt(array);
38 public static void deopt(int[] array) { method in class:Main
39 // Invoke `deopt` much more than `$inline$deopt` so that only `deopt` gets
43 $inline$deopt(array);
49 public static void $inline$deopt(int[] array) {
  /external/v8/test/mjsunit/
arguments-apply-deopt.js 61 function deopt() { function
67 return f.apply(deopt(), arguments);
load_poly_effect.js 38 var deopt = false; variable
  /external/v8/test/mjsunit/wasm/
stackwalk.js 81 // ---- DEOPT TEST -----------------------------------------------
83 function deopt() {
84 print("-- trying deopt --");
88 var deopter = builder(deopt);

Completed in 594 milliseconds

1 2