Lines Matching defs:kind
35 FeedbackSlotKind kind);
57 IsKeyedStoreIC() || IsStoreInArrayLiteralICKind(kind()) ||
118 FeedbackSlotKind kind() const { return kind_; }
184 FeedbackSlotKind kind)
185 : IC(isolate, vector, slot, kind) {
189 static bool ShouldThrowReferenceError(FeedbackSlotKind kind) {
190 return kind == FeedbackSlotKind::kLoadGlobalNotInsideTypeof;
194 return ShouldThrowReferenceError(kind());
217 FeedbackSlot slot, FeedbackSlotKind kind)
218 : LoadIC(isolate, vector, slot, kind) {}
227 FeedbackSlot slot, FeedbackSlotKind kind)
228 : LoadIC(isolate, vector, slot, kind) {}
260 FeedbackSlotKind kind)
261 : IC(isolate, vector, slot, kind) {
288 FeedbackSlot slot, FeedbackSlotKind kind)
289 : StoreIC(isolate, vector, slot, kind) {}
312 FeedbackSlot slot, FeedbackSlotKind kind)
313 : StoreIC(isolate, vector, slot, kind) {}
345 DCHECK(IsStoreInArrayLiteralICKind(kind()));