• Home
  • Raw
  • Download

Lines Matching full:if

37     if (icAccessor_.GetICState() == ProfileTypeAccessor::ICState::MEGA) {  in UpdateLoadHandler()
40 if (IsNamedIC(GetICKind())) { in UpdateLoadHandler()
45 if (op.IsElement()) { in UpdateLoadHandler()
46 if (!op.IsFound() && hclass->IsDictionaryElement()) { in UpdateLoadHandler()
51 if (!op.IsFound()) { in UpdateLoadHandler()
53 if (!proto.IsECMAObject()) { in UpdateLoadHandler()
58 } else if (!op.IsOnPrototype()) { in UpdateLoadHandler()
62 if (IsGlobalLoadIC(GetICKind())) { in UpdateLoadHandler()
69 if (key.IsEmpty()) { in UpdateLoadHandler()
71 } else if (op.IsElement()) { in UpdateLoadHandler()
73 if (IsGlobalLoadIC(GetICKind())) { in UpdateLoadHandler()
85 if (icAccessor_.GetICState() == ProfileTypeAccessor::ICState::MEGA) { in UpdateStoreHandler()
88 if (IsNamedIC(GetICKind())) { in UpdateStoreHandler()
94 if (op.IsTSHClass()) { in UpdateStoreHandler()
97 } else if (op.IsTransition()) { in UpdateStoreHandler()
99 if (op.IsOnPrototype()) { in UpdateStoreHandler()
105 } else if (op.IsOnPrototype()) { in UpdateStoreHandler()
107 if (IsGlobalStoreIC(GetICKind())) { in UpdateStoreHandler()
116 if (key.IsEmpty()) { in UpdateStoreHandler()
118 } else if (op.IsElement()) { in UpdateStoreHandler()
120 if (IsGlobalStoreIC(GetICKind())) { in UpdateStoreHandler()
132 #if TRACE_IC in TraceIC()
135 if (key->IsString()) { in TraceIC()
150 if (!receiver->IsJSObject() || receiver->HasOrdinaryGet()) { in LoadMiss()
157 if (kind == ICKind::NamedGlobalLoadIC || kind == ICKind::NamedGlobalTryLoadIC) { in LoadMiss()
159 if (!box.IsUndefined()) { in LoadMiss()
161 if (icAccessor_.GetICState() != ProfileTypeAccessor::ICState::MEGA) { in LoadMiss()
170 if (!op.IsFound() && kind == ICKind::NamedGlobalTryLoadIC) { in LoadMiss()
175 if (!GetThread()->GetEcmaVM()->ICEnabled()) { in LoadMiss()
181 if (!op.IsFastMode()) { in LoadMiss()
193 if (!receiver->IsJSObject() || receiver->HasOrdinaryGet()) { in StoreMiss()
201 if (kind == ICKind::NamedGlobalStoreIC || kind == ICKind::NamedGlobalTryStoreIC) { in StoreMiss()
203 if (!box.IsUndefined()) { in StoreMiss()
207 if (icAccessor_.GetICState() != ProfileTypeAccessor::ICState::MEGA) { in StoreMiss()
216 if (!op.IsFound()) { in StoreMiss()
217 if (kind == ICKind::NamedGlobalStoreIC) { in StoreMiss()
220 } else if (kind == ICKind::NamedGlobalTryStoreIC) { in StoreMiss()
226 if (!GetThread()->GetEcmaVM()->ICEnabled()) { in StoreMiss()
232 if (!op.IsFastMode()) { in StoreMiss()
236 if (success) { in StoreMiss()