HomeSort by relevance Sort by last modified time
    Searched refs:MONOMORPHIC (Results 1 - 25 of 34) sorted by null

1 2

  /external/v8/src/
builtins.h 111 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \
113 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC, \
115 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC, \
117 V(LoadIC_StringWrapperLength, LOAD_IC, MONOMORPHIC, \
119 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC, \
139 V(StoreIC_ArrayLength, STORE_IC, MONOMORPHIC, \
141 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \
149 V(StoreIC_ArrayLength_Strict, STORE_IC, MONOMORPHIC, \
151 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \
ic.cc 47 case MONOMORPHIC: return '1';
230 if (state != MONOMORPHIC || !name->IsString()) return state;
240 return MONOMORPHIC;
255 // caches for the builtins object monomorphic. Therefore, if we get
258 // force the inline cache back to monomorphic state.
263 return MONOMORPHIC;
643 // call; used for rewriting to monomorphic state and making sure
704 // Set the target to the pre monomorphic stub to delay
705 // setting the monomorphic state.
708 } else if (state == MONOMORPHIC) {
1540 bool monomorphic = false; local
    [all...]
type-info.cc 97 code->ic_state() == MONOMORPHIC &&
129 code->ic_state() == MONOMORPHIC &&
650 if (target->ic_state() == MONOMORPHIC) {
670 if (target->ic_state() == MONOMORPHIC ||
v8globals.h 262 MONOMORPHIC,
263 // Like MONOMORPHIC but check failed due to prototype.
disassembler.cc 246 if (ic_state == MONOMORPHIC) {
stub-cache.h 662 InlineCacheState state = MONOMORPHIC);
732 InlineCacheState state = MONOMORPHIC);
    [all...]
stub-cache.cc 68 // the stub cache only contains monomorphic stubs. Make sure that
71 ASSERT(Code::ExtractICStateFromFlags(flags) == MONOMORPHIC);
768 Code::ComputeFlags(kind, MONOMORPHIC, extra_state, NORMAL, argc);
    [all...]
  /external/chromium_org/v8/src/
builtins.h 141 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC, \
145 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \
158 V(KeyedLoadIC_IndexedInterceptor, KEYED_LOAD_IC, MONOMORPHIC, \
160 V(KeyedLoadIC_NonStrictArguments, KEYED_LOAD_IC, MONOMORPHIC, \
165 V(StoreIC_Normal, STORE_IC, MONOMORPHIC, \
177 V(StoreIC_Normal_Strict, STORE_IC, MONOMORPHIC, \
183 V(StoreIC_Setter_ForDeopt, STORE_IC, MONOMORPHIC, \
195 V(KeyedStoreIC_NonStrictArguments, KEYED_STORE_IC, MONOMORPHIC, \
type-info.cc 119 code->ic_state() == MONOMORPHIC &&
161 code->ic_state() == MONOMORPHIC &&
261 Code::STUB, MONOMORPHIC, Code::kNoExtraICState,
271 Code::STUB, MONOMORPHIC, Code::kNoExtraICState,
349 if (code->ic_state() != MONOMORPHIC) return false;
481 Handle<Code>::cast(object)->ic_state() == MONOMORPHIC) {
623 if (target->ic_state() == MONOMORPHIC) {
644 if (target->ic_state() == MONOMORPHIC ||
v8globals.h 262 MONOMORPHIC,
263 // Like MONOMORPHIC but check failed due to prototype.
stub-cache.h 675 InlineCacheState state = MONOMORPHIC);
    [all...]
ic.cc 47 case MONOMORPHIC: return '1';
238 // situations as prototype failures (stay monomorphic if possible).
272 if (state != MONOMORPHIC || !name->IsString()) return state;
288 // caches for the builtins object monomorphic. Therefore, if we get
291 // force the inline cache back to monomorphic state.
296 return MONOMORPHIC;
698 // call; used for rewriting to monomorphic state and making sure
751 // Set the target to the pre monomorphic stub to delay
752 // setting the monomorphic state.
755 } else if (state == MONOMORPHIC) {
    [all...]
code-stubs.h 564 virtual InlineCacheState GetICState() { return MONOMORPHIC; }
805 virtual InlineCacheState GetICState() { return MONOMORPHIC; }
890 virtual InlineCacheState GetICState() { return MONOMORPHIC; }
    [all...]
disassembler.cc 246 if (ic_state == MONOMORPHIC) {
code-stubs.cc 335 return MONOMORPHIC;
stub-cache.cc 70 // the stub cache only contains monomorphic stubs. Make sure that
73 ASSERT(Code::ExtractICStateFromFlags(flags) == MONOMORPHIC);
    [all...]
  /external/chromium_org/v8/test/mjsunit/
elements-transition-hoisting.js 61 // optimistically MONOMORPHIC
87 // optimistically MONOMORPHIC
118 // optimistically MONOMORPHIC
148 // optimistically MONOMORPHIC
172 // optimistically MONOMORPHIC
196 // not optimistically MONOMORPHIC
  /external/chromium_org/v8/src/arm/
ic-arm.cc 353 MONOMORPHIC,
594 // Otherwise do the monomorphic cache probe.
621 // - there is hope that the runtime will create a monomorphic call stub
659 Code::STUB, MONOMORPHIC, Code::kNoExtraICState,
    [all...]
  /external/chromium_org/v8/src/ia32/
ic-ia32.cc     [all...]
  /external/chromium_org/v8/src/mips/
ic-mips.cc 358 MONOMORPHIC,
595 // Otherwise do the monomorphic cache probe.
621 // - there is hope that the runtime will create a monomorphic call stub,
659 Code::STUB, MONOMORPHIC, Code::kNoExtraICState,
    [all...]
  /external/chromium_org/v8/src/x64/
ic-x64.cc 821 MONOMORPHIC,
    [all...]
  /external/v8/src/arm/
ic-arm.cc 397 MONOMORPHIC,
638 // Otherwise do the monomorphic cache probe.
665 // - there is hope that the runtime will create a monomorphic call stub
707 Code::ComputeFlags(Code::LOAD_IC, MONOMORPHIC);
    [all...]
  /external/v8/src/ia32/
ic-ia32.cc     [all...]
  /external/v8/src/mips/
ic-mips.cc 399 MONOMORPHIC,
636 // Otherwise do the monomorphic cache probe.
662 // - there is hope that the runtime will create a monomorphic call stub,
703 Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC, MONOMORPHIC);
    [all...]
  /external/v8/src/x64/
ic-x64.cc 824 MONOMORPHIC,
    [all...]

Completed in 456 milliseconds

1 2