Lines Matching refs:FeedbackSlotKind
808 void Put(FeedbackSlotKind slot_kind, Variable* variable, FeedbackSlot slot) { in Put()
811 void Put(FeedbackSlotKind slot_kind, AstNode* node, FeedbackSlot slot) { in Put()
814 void Put(FeedbackSlotKind slot_kind, int variable_index, in Put()
819 FeedbackSlot Get(FeedbackSlotKind slot_kind, Variable* variable) const { in Get()
822 FeedbackSlot Get(FeedbackSlotKind slot_kind, AstNode* node) const { in Get()
825 FeedbackSlot Get(FeedbackSlotKind slot_kind, int variable_index, in Get()
831 typedef std::tuple<FeedbackSlotKind, int, const void*> Key;
833 void PutImpl(FeedbackSlotKind slot_kind, int index, const void* node, in PutImpl()
840 FeedbackSlot GetImpl(FeedbackSlotKind slot_kind, int index, in GetImpl()
5096 FeedbackSlotKind slot_kind = in GetCachedLoadGlobalICSlot()
5098 ? FeedbackSlotKind::kLoadGlobalInsideTypeof in GetCachedLoadGlobalICSlot()
5099 : FeedbackSlotKind::kLoadGlobalNotInsideTypeof; in GetCachedLoadGlobalICSlot()
5111 FeedbackSlotKind slot_kind = is_strict(language_mode) in GetCachedStoreGlobalICSlot()
5112 ? FeedbackSlotKind::kStoreGlobalStrict in GetCachedStoreGlobalICSlot()
5113 : FeedbackSlotKind::kStoreGlobalSloppy; in GetCachedStoreGlobalICSlot()
5128 FeedbackSlotKind slot_kind = FeedbackSlotKind::kLoadProperty; in GetCachedLoadICSlot()
5148 FeedbackSlotKind slot_kind = is_strict(language_mode()) in GetCachedStoreICSlot()
5149 ? FeedbackSlotKind::kStoreNamedStrict in GetCachedStoreICSlot()
5150 : FeedbackSlotKind::kStoreNamedSloppy; in GetCachedStoreICSlot()
5167 FeedbackSlotKind slot_kind = FeedbackSlotKind::kCreateClosure; in GetCachedCreateClosureSlot()