Home
last modified time | relevance | path

Searched refs:ForInFeedback (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dinternal.tq43 extern enum ForInFeedback extends uint31 { kAny, ...}
45 SmiTagged<ForInFeedback>, Undefined | FeedbackVector, uintptr,
55 SmiTag<ForInFeedback>(ForInFeedback::kAny), maybeFeedbackVector, slot,
/third_party/node/deps/v8/src/compiler/
Dprocessed-feedback.h19 class ForInFeedback; variable
52 ForInFeedback const& AsForIn() const;
251 class ForInFeedback
Djs-heap-broker.cc606 return *zone()->New<ForInFeedback>(hint, nexus.kind()); in ReadFeedbackForForIn()
919 ForInFeedback const& ProcessedFeedback::AsForIn() const { in AsForIn()
921 return *static_cast<ForInFeedback const*>(this); in AsForIn()
/third_party/node/deps/v8/src/common/
Dglobals.h1523 enum class ForInFeedback : uint8_t { enum
1529 STATIC_ASSERT((static_cast<int>(ForInFeedback::kNone) |
1530 static_cast<int>(ForInFeedback::kEnumCacheKeysAndIndices)) ==
1531 static_cast<int>(ForInFeedback::kEnumCacheKeysAndIndices));
1532 STATIC_ASSERT((static_cast<int>(ForInFeedback::kEnumCacheKeysAndIndices) |
1533 static_cast<int>(ForInFeedback::kEnumCacheKeys)) ==
1534 static_cast<int>(ForInFeedback::kEnumCacheKeys));
1535 STATIC_ASSERT((static_cast<int>(ForInFeedback::kEnumCacheKeys) |
1536 static_cast<int>(ForInFeedback::kAny)) ==
1537 static_cast<int>(ForInFeedback::kAny));
/third_party/node/deps/v8/src/objects/
Dfeedback-vector-inl.h312 ForInHint ForInHintFromFeedback(ForInFeedback type_feedback) { in ForInHintFromFeedback()
314 case ForInFeedback::kNone: in ForInHintFromFeedback()
316 case ForInFeedback::kEnumCacheKeys: in ForInHintFromFeedback()
318 case ForInFeedback::kEnumCacheKeysAndIndices: in ForInHintFromFeedback()
Dfeedback-vector.h927 inline ForInHint ForInHintFromFeedback(ForInFeedback type_feedback);
Dfeedback-vector.cc1297 return ForInHintFromFeedback(static_cast<ForInFeedback>(feedback)); in GetForInFeedback()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc13555 static_cast<int>(ForInFeedback::kEnumCacheKeysAndIndices), in ForInPrepare()
13556 static_cast<int>(ForInFeedback::kEnumCacheKeys)); in ForInPrepare()
13570 UpdateFeedback(SmiConstant(ForInFeedback::kAny), maybe_feedback_vector, in ForInPrepare()