HomeSort by relevance Sort by last modified time
    Searched refs:ic_state (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/v8/src/ic/
ic-compiler.h 24 static Handle<Code> ComputeLoad(Isolate* isolate, InlineCacheState ic_state,
26 static Handle<Code> ComputeStore(Isolate* isolate, InlineCacheState ic_state,
101 return code->ic_state() == MONOMORPHIC ? Logger::LOAD_IC_TAG
104 return code->ic_state() == MONOMORPHIC
108 return code->ic_state() == MONOMORPHIC ? Logger::STORE_IC_TAG
112 return code->ic_state() == MONOMORPHIC
ic-compiler.cc 171 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 == MEGAMORPHIC)
    [all...]
ic.h 113 InlineCacheState state = code->ic_state();
ic.cc 93 State new_state = new_target->ic_state();
181 state_ = target_->ic_state();
432 old_state = old_target->ic_state();
433 new_state = target->ic_state();
    [all...]
  /external/chromium_org/v8/src/
type-info.cc 70 return code->is_inline_cache_stub() && code->ic_state() == UNINITIALIZED;
80 return code->ic_state() == UNINITIALIZED;
89 code->ic_state() == POLYMORPHIC;
313 code->ic_state() == MEGAMORPHIC) {
363 if (code->ic_state() == MONOMORPHIC) {
366 } else if (code->ic_state() == POLYMORPHIC) {
disassembler.cc 221 InlineCacheState ic_state = code->ic_state(); local
223 Code::ICState2String(ic_state));
224 if (ic_state == MONOMORPHIC) {
code-stubs.h     [all...]
objects-inl.h 4635 InlineCacheState Code::ic_state() { function in class:v8::internal::Code
    [all...]
objects.h     [all...]
objects.cc     [all...]
  /external/chromium_org/v8/src/heap/
objects-visiting-inl.h 263 (target->ic_state() == MEGAMORPHIC || target->ic_state() == GENERIC ||
264 target->ic_state() == POLYMORPHIC ||
    [all...]
  /external/chromium_org/v8/test/cctest/
test-heap.cc     [all...]

Completed in 514 milliseconds