/external/chromium_org/v8/test/mjsunit/regress/ |
regress-667061.js | 74 // Test megamorphic case. 80 assertEquals(2, f({ x: function () { return 2; }})); // go megamorphic 81 assertEquals(3, f({ x: function () { return 3; }})); // stay megamorphic
|
regress-crbug-242502.js | 47 // Called on four other objects to turn megamorphic. 61 // Turn IC megamorphic again.
|
regress-2595.js | 41 // First make CALL IC in F go MEGAMORPHIC and ensure that we put the stub
|
/external/v8/src/ |
builtins.h | 121 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ 128 V(KeyedLoadIC_Generic, KEYED_LOAD_IC, MEGAMORPHIC, \ 130 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ 132 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MEGAMORPHIC, \ 134 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, MEGAMORPHIC, \ 143 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \ 145 V(StoreIC_GlobalProxy, STORE_IC, MEGAMORPHIC, \ 153 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \ 155 V(StoreIC_GlobalProxy_Strict, STORE_IC, MEGAMORPHIC, \ 160 V(KeyedStoreIC_Generic, KEYED_STORE_IC, MEGAMORPHIC, \ [all...] |
type-info.cc | 113 code->ic_state() == MEGAMORPHIC; 150 code->ic_state() == MEGAMORPHIC; 502 ASSERT(Handle<Code>::cast(object)->ic_state() == MEGAMORPHIC); 506 Handle<Code>::cast(object)->ic_state() == MEGAMORPHIC) { 671 target->ic_state() == MEGAMORPHIC) {
|
ic.cc | 49 case MEGAMORPHIC: return IsGeneric() ? 'G' : 'N'; 738 } else if (state == MEGAMORPHIC) { 768 if (FLAG_use_ic && state != MEGAMORPHIC && object->IsHeapObject()) { 827 } else if (state != MEGAMORPHIC) { 851 } else if (state != MEGAMORPHIC) { [all...] |
string-stream.cc | 494 // Unresolved and megamorphic calls: Instead of the function
|
stub-cache.h | 42 // The stub cache is used for megamorphic calls and property accesses. [all...] |
v8globals.h | 266 MEGAMORPHIC,
|
stub-cache.cc | [all...] |
/external/v8/test/mjsunit/regress/ |
regress-667061.js | 74 // Test megamorphic case. 80 assertEquals(2, f({ x: function () { return 2; }})); // go megamorphic 81 assertEquals(3, f({ x: function () { return 3; }})); // stay megamorphic
|
/external/chromium_org/v8/src/ |
builtins.h | 132 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ 143 V(KeyedLoadIC_String, KEYED_LOAD_IC, MEGAMORPHIC, \ 154 V(StoreIC_Megamorphic, STORE_IC, MEGAMORPHIC, \ 164 V(StoreIC_Megamorphic_Strict, STORE_IC, MEGAMORPHIC, \
|
ic.cc | 50 case MEGAMORPHIC: return 'N'; 805 if (use_ic && state() != MEGAMORPHIC) { 877 } else if (state() != MEGAMORPHIC) [all...] |
hydrogen-check-elimination.cc | 196 // Intersection is empty; probably megamorphic, which is likely to
|
ic.h | 835 return ::v8::internal::MEGAMORPHIC; [all...] |
string-stream.cc | 514 // Unresolved and megamorphic calls: Instead of the function
|
stub-cache.h | 43 // The stub cache is used for megamorphic calls and property accesses. [all...] |
type-info.cc | 409 code->ic_state() == MEGAMORPHIC) {
|
v8globals.h | 274 MEGAMORPHIC,
|
stub-cache.cc | 509 Code::ComputeFlags(Code::KEYED_CALL_IC, MEGAMORPHIC, 528 Code::ComputeFlags(kind, MEGAMORPHIC, extra_state, [all...] |
objects-visiting-inl.h | 301 && (target->ic_state() == MEGAMORPHIC || target->ic_state() == GENERIC || [all...] |
/external/chromium_org/v8/test/mjsunit/ |
array-constructor-feedback.js | 90 // Test: If a call site goes megamorphic, it loses the ability to 132 // is megamorphic now.
|
allocation-site-info.js | 356 // Array function, it went from (uninit->Array) then (Array->megamorphic). 358 // It'll go (uninit->realmBArray) then (realmBArray->megamorphic). Recognize
|
track-fields.js | 217 // Test megamorphic keyed stub behaviour in combination with representations.
|
/external/chromium_org/v8/src/arm/ |
code-stubs-arm.cc | 3313 Label initialize, done, miss, megamorphic, not_array_function; local [all...] |