Home
last modified time | relevance | path

Searched refs:ic_state (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/ic/
Dic-compiler.h21 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()
Dic-compiler.cc109 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()
Dic.h69 InlineCacheState state = code->ic_state(); in IsCleared()
Dic.cc94 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/
Ddisassembler.cc203 InlineCacheState ic_state = code->ic_state(); in DecodeIt() local
205 Code::ICState2String(ic_state)); in DecodeIt()
206 if (ic_state == MONOMORPHIC) { in DecodeIt()
Dtype-info.cc348 obj->ic_state() == MEGAMORPHIC) { in CollectReceiverTypes()
375 if (obj->ic_state() == MONOMORPHIC) { in CollectReceiverTypes()
378 } else if (obj->ic_state() == POLYMORPHIC) { in CollectReceiverTypes()
Dtype-feedback-vector.h345 InlineCacheState ic_state() const { return StateFromFeedback(); } in ic_state() function
Dobjects-inl.h4850 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()
Dcode-stubs.h1660 CompareNilICStub(Isolate* isolate, ExtraICState ic_state,
1663 set_sub_minor_key(ic_state); in HydrogenCodeStub()
Dobjects.h4880 inline InlineCacheState ic_state(); // Only valid for IC stubs.
5036 Kind kind, InlineCacheState ic_state = UNINITIALIZED,
Dobjects.cc14856 os << "ic_state = " << ICState2String(ic_state()) << "\n"; in Disassemble()
14858 if (ic_state() == MONOMORPHIC) { in Disassemble()
/external/v8/test/cctest/heap/
Dtest-heap.cc5277 CHECK(ic->ic_state() == state); in CheckIC()