Searched refs:ic_state (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/ic/ |
D | ic-compiler.h | 21 static Handle<Code> ComputeStore(Isolate* isolate, InlineCacheState ic_state, 81 return code->ic_state() == MONOMORPHIC ? Logger::LOAD_IC_TAG in log_kind() 84 return code->ic_state() == MONOMORPHIC in log_kind() 88 return code->ic_state() == MONOMORPHIC ? Logger::STORE_IC_TAG in log_kind() 92 return code->ic_state() == MONOMORPHIC in log_kind()
|
D | ic-compiler.cc | 109 InlineCacheState ic_state, in ComputeStore() argument 111 Code::Flags flags = Code::ComputeFlags(Code::STORE_IC, ic_state, extra_state); in ComputeStore() 119 if (ic_state == UNINITIALIZED) { in ComputeStore() 121 } else if (ic_state == PREMONOMORPHIC) { in ComputeStore() 123 } else if (ic_state == GENERIC) { in ComputeStore() 125 } else if (ic_state == MEGAMORPHIC) { in ComputeStore()
|
D | ic.h | 69 InlineCacheState state = code->ic_state(); in IsCleared()
|
D | ic.cc | 94 UseVector() ? nexus()->StateFromFeedback() : raw_target()->ic_state(); in TraceIC() 185 state_ = UseVector() ? nexus->StateFromFeedback() : target_->ic_state(); in IC() 441 old_state = old_target->ic_state(); in PostPatching() 442 new_state = target->ic_state(); in PostPatching()
|
/external/v8/src/ |
D | disassembler.cc | 203 InlineCacheState ic_state = code->ic_state(); in DecodeIt() local 205 Code::ICState2String(ic_state)); in DecodeIt() 206 if (ic_state == MONOMORPHIC) { in DecodeIt()
|
D | type-info.cc | 348 obj->ic_state() == MEGAMORPHIC) { in CollectReceiverTypes() 375 if (obj->ic_state() == MONOMORPHIC) { in CollectReceiverTypes() 378 } else if (obj->ic_state() == POLYMORPHIC) { in CollectReceiverTypes()
|
D | type-feedback-vector.h | 345 InlineCacheState ic_state() const { return StateFromFeedback(); } in ic_state() function
|
D | objects-inl.h | 4850 InlineCacheState Code::ic_state() { in ic_state() function 4863 DCHECK(is_inline_cache_stub() || ic_state() == DEBUG_STUB); in extra_ic_state() 5114 bool Code::is_debug_stub() { return ic_state() == DEBUG_STUB; } in is_debug_stub() 5132 ic_state() == MONOMORPHIC; in embeds_maps_weakly() 5148 Code::Flags Code::ComputeFlags(Kind kind, InlineCacheState ic_state, in ComputeFlags() argument 5153 | ICStateField::encode(ic_state) in ComputeFlags()
|
D | code-stubs.h | 1660 CompareNilICStub(Isolate* isolate, ExtraICState ic_state, 1663 set_sub_minor_key(ic_state); in HydrogenCodeStub()
|
D | objects.h | 4880 inline InlineCacheState ic_state(); // Only valid for IC stubs. 5036 Kind kind, InlineCacheState ic_state = UNINITIALIZED,
|
D | objects.cc | 14856 os << "ic_state = " << ICState2String(ic_state()) << "\n"; in Disassemble() 14858 if (ic_state() == MONOMORPHIC) { in Disassemble()
|
/external/v8/test/cctest/heap/ |
D | test-heap.cc | 5277 CHECK(ic->ic_state() == state); in CheckIC()
|