Home
last modified time | relevance | path

Searched refs:ForInHint (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dtype-hints.cc62 std::ostream& operator<<(std::ostream& os, ForInHint hint) { in operator <<()
64 case ForInHint::kNone: in operator <<()
66 case ForInHint::kEnumCacheKeys: in operator <<()
68 case ForInHint::kEnumCacheKeysAndIndices: in operator <<()
70 case ForInHint::kAny: in operator <<()
Dtype-hints.h55 enum class ForInHint : uint8_t { enum
62 std::ostream& operator<<(std::ostream&, ForInHint);
Dfeedback-vector-inl.h312 ForInHint ForInHintFromFeedback(ForInFeedback type_feedback) { in ForInHintFromFeedback()
315 return ForInHint::kNone; in ForInHintFromFeedback()
317 return ForInHint::kEnumCacheKeys; in ForInHintFromFeedback()
319 return ForInHint::kEnumCacheKeysAndIndices; in ForInHintFromFeedback()
321 return ForInHint::kAny; in ForInHintFromFeedback()
Dfeedback-vector.cc788 ForInHint hint = GetForInFeedback(); in ic_state()
789 if (hint == ForInHint::kNone) { in ic_state()
791 } else if (hint == ForInHint::kAny) { in ic_state()
1294 ForInHint FeedbackNexus::GetForInFeedback() const { in GetForInFeedback()
Dfeedback-vector.h790 ForInHint GetForInFeedback() const;
927 inline ForInHint ForInHintFromFeedback(ForInFeedback type_feedback);
/third_party/node/deps/v8/src/compiler/
Djs-heap-broker.cc604 ForInHint hint = nexus.GetForInFeedback(); in ReadFeedbackForForIn()
605 DCHECK_NE(hint, ForInHint::kNone); // Not uninitialized. in ReadFeedbackForForIn()
705 ForInHint JSHeapBroker::GetFeedbackForForIn(FeedbackSource const& source) { in GetFeedbackForForIn()
707 return feedback.IsInsufficient() ? ForInHint::kNone in GetFeedbackForForIn()
Dprocessed-feedback.h252 : public SingleValueFeedback<ForInHint, ProcessedFeedback::kForIn> {
Djs-heap-broker.h205 ForInHint GetFeedbackForForIn(FeedbackSource const& source); in DEFINE_OPERATORS_FOR_FLAGS()
Dbytecode-graph-builder.cc2915 case ForInHint::kNone: in GetForInMode()
2916 case ForInHint::kEnumCacheKeysAndIndices: in GetForInMode()
2918 case ForInHint::kEnumCacheKeys: in GetForInMode()
2920 case ForInHint::kAny: in GetForInMode()