Searched defs:megamorphic (Results 1 - 9 of 9) sorted by relevance

/external/v8/src/arm/
H A Dcode-stubs-arm.cc1572 // megamorphic.
1577 Label initialize, done, miss, megamorphic, not_array_function; local
1588 // A monomorphic cache hit or an already megamorphic state: invoke the
1606 __ jmp(&megamorphic);
1619 __ b(ne, &megamorphic);
1625 // megamorphic.
1630 __ bind(&megamorphic);
/external/v8/src/arm64/
H A Dcode-stubs-arm64.cc1774 // uninitialized, monomorphic (indicated by a JSFunction), and megamorphic.
1779 Label initialize, done, miss, megamorphic, not_array_function; local
1794 // A monomorphic cache hit or an already megamorphic state: invoke the
1811 __ B(&megamorphic);
1823 __ B(ne, &megamorphic);
1829 // megamorphic.
1833 __ Bind(&megamorphic);
/external/v8/src/ia32/
H A Dcode-stubs-ia32.cc1230 // megamorphic.
1236 Label initialize, done, miss, megamorphic, not_array_function; local
1242 // A monomorphic cache hit or an already megamorphic state: invoke the
1257 __ jmp(&megamorphic);
1270 __ j(not_equal, &megamorphic);
1276 // megamorphic.
1281 __ bind(&megamorphic);
/external/v8/src/mips/
H A Dcode-stubs-mips.cc1715 // megamorphic.
1720 Label initialize, done, miss, megamorphic, not_array_function; local
1731 // A monomorphic cache hit or an already megamorphic state: invoke the
1748 __ jmp(&megamorphic);
1760 __ Branch(&megamorphic, ne, a1, Operand(t2));
1766 // megamorphic.
1771 __ bind(&megamorphic);
/external/v8/src/mips64/
H A Dcode-stubs-mips64.cc1715 // megamorphic.
1720 Label initialize, done, miss, megamorphic, not_array_function; local
1732 // A monomorphic cache hit or an already megamorphic state: invoke the
1749 __ jmp(&megamorphic);
1761 __ Branch(&megamorphic, ne, a1, Operand(a5));
1767 // megamorphic.
1772 __ bind(&megamorphic);
/external/v8/src/ppc/
H A Dcode-stubs-ppc.cc1659 // megamorphic.
1664 Label initialize, done, miss, megamorphic, not_array_function; local
1678 // A monomorphic cache hit or an already megamorphic state: invoke the
1696 __ b(&megamorphic);
1709 __ bne(&megamorphic);
1715 // megamorphic.
1720 __ bind(&megamorphic);
/external/v8/src/s390/
H A Dcode-stubs-s390.cc1669 // megamorphic.
1674 Label initialize, done, miss, megamorphic, not_array_function; local
1688 // A monomorphic cache hit or an already megamorphic state: invoke the
1706 __ b(&megamorphic);
1719 __ bne(&megamorphic);
1725 // megamorphic.
1730 __ bind(&megamorphic);
/external/v8/src/x64/
H A Dcode-stubs-x64.cc1128 // megamorphic.
1134 Label initialize, done, miss, megamorphic, not_array_function; local
1141 // A monomorphic cache hit or an already megamorphic state: invoke the
1157 __ jmp(&megamorphic);
1170 __ j(not_equal, &megamorphic);
1176 // megamorphic.
1181 __ bind(&megamorphic);
/external/v8/src/x87/
H A Dcode-stubs-x87.cc1063 // megamorphic.
1069 Label initialize, done, miss, megamorphic, not_array_function; local
1075 // A monomorphic cache hit or an already megamorphic state: invoke the
1090 __ jmp(&megamorphic);
1103 __ j(not_equal, &megamorphic);
1109 // megamorphic.
1114 __ bind(&megamorphic);
1288 // We are going megamorphic. If the feedback is a JSFunction, it is fine
1299 // Increment the call count for megamorphic function calls.

Completed in 775 milliseconds