Searched defs:ic_state (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/src/
H A Ddisassembler.cc221 InlineCacheState ic_state = code->ic_state(); local
223 Code::ICState2String(ic_state));
224 if (ic_state == MONOMORPHIC) {
H A Dcode-stubs.h1321 CompareNilICStub(Isolate* isolate, ExtraICState ic_state, argument
1324 set_sub_minor_key(ic_state);
H A Dobjects-inl.h4635 InlineCacheState Code::ic_state() { function in class:v8::internal::Code
4648 DCHECK(is_inline_cache_stub() || ic_state() == DEBUG_STUB);
4938 return ic_state() == DEBUG_STUB;
4954 Code::Flags Code::ComputeFlags(Kind kind, InlineCacheState ic_state,
4959 | ICStateField::encode(ic_state)
/external/chromium_org/v8/src/ic/
H A Dic-compiler.cc171 InlineCacheState ic_state,
173 Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC, ic_state, extra_state);
181 if (ic_state == UNINITIALIZED) {
183 } else if (ic_state == PREMONOMORPHIC) {
194 InlineCacheState ic_state,
196 Code::Flags flags = Code::ComputeFlags(Code::STORE_IC, ic_state, extra_state);
204 if (ic_state == UNINITIALIZED) {
206 } else if (ic_state == PREMONOMORPHIC) {
208 } else if (ic_state == GENERIC) {
210 } else if (ic_state
170 ComputeLoad(Isolate* isolate, InlineCacheState ic_state, ExtraICState extra_state) argument
193 ComputeStore(Isolate* isolate, InlineCacheState ic_state, ExtraICState extra_state) argument
[all...]

Completed in 170 milliseconds