Lines Matching refs:FeedbackSlot
462 class FeedbackSlot {
464 FeedbackSlot() : id_(kInvalidSlot) {}
465 explicit FeedbackSlot(int id) : id_(id) {}
469 static FeedbackSlot Invalid() { return FeedbackSlot(); }
472 bool operator==(FeedbackSlot that) const { return this->id_ == that.id_; }
473 bool operator!=(FeedbackSlot that) const { return !(*this == that); }
475 friend size_t hash_value(FeedbackSlot slot) { return slot.ToInt(); }
477 FeedbackSlot);
479 FeedbackSlot WithOffset(int offset) const {
480 return FeedbackSlot(id_ + offset);
489 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream& os, FeedbackSlot);