Searched refs:slot_kind (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 808 void Put(FeedbackSlotKind slot_kind, Variable* variable, FeedbackSlot slot) { in Put() argument 809 PutImpl(slot_kind, 0, variable, slot); in Put() 811 void Put(FeedbackSlotKind slot_kind, AstNode* node, FeedbackSlot slot) { in Put() argument 812 PutImpl(slot_kind, 0, node, slot); in Put() 814 void Put(FeedbackSlotKind slot_kind, int variable_index, in Put() argument 816 PutImpl(slot_kind, variable_index, name, slot); in Put() 819 FeedbackSlot Get(FeedbackSlotKind slot_kind, Variable* variable) const { in Get() argument 820 return GetImpl(slot_kind, 0, variable); in Get() 822 FeedbackSlot Get(FeedbackSlotKind slot_kind, AstNode* node) const { in Get() argument 823 return GetImpl(slot_kind, 0, node); in Get() [all …]
|
/external/v8/src/ic/ |
D | ic.cc | 2324 FeedbackSlotKind slot_kind = vector->GetKind(vector_slot); in RUNTIME_FUNCTION() local 2325 DCHECK(IsStoreGlobalICKind(slot_kind)); in RUNTIME_FUNCTION() 2694 FeedbackSlotKind slot_kind = vector->GetKind(vector_slot); in RUNTIME_FUNCTION() local 2697 if (!LoadIC::ShouldThrowReferenceError(slot_kind)) { in RUNTIME_FUNCTION()
|