Searched refs:CollectionKind (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/compiler/ |
D | js-call-reducer.h | 186 CollectionKind collection_kind, 189 CollectionKind collection_kind);
|
D | js-operator.h | 601 explicit CreateCollectionIteratorParameters(CollectionKind collection_kind, in CreateCollectionIteratorParameters() 604 CHECK(!(collection_kind == CollectionKind::kSet && in CreateCollectionIteratorParameters() 608 CollectionKind collection_kind() const { return collection_kind_; } in collection_kind() 612 CollectionKind const collection_kind_; 874 const Operator* CreateCollectionIterator(CollectionKind, IterationKind); in NON_EXPORTED_BASE()
|
D | js-call-reducer.cc | 4521 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall() 4524 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall() 4527 return ReduceCollectionPrototypeSize(node, CollectionKind::kMap); in ReduceJSCall() 4529 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall() 4536 return ReduceCollectionIteration(node, CollectionKind::kSet, in ReduceJSCall() 4539 return ReduceCollectionPrototypeSize(node, CollectionKind::kSet); in ReduceJSCall() 4541 return ReduceCollectionIteration(node, CollectionKind::kSet, in ReduceJSCall() 6915 InstanceType InstanceTypeForCollectionKind(CollectionKind kind) { in InstanceTypeForCollectionKind() 6917 case CollectionKind::kMap: in InstanceTypeForCollectionKind() 6919 case CollectionKind::kSet: in InstanceTypeForCollectionKind() [all …]
|
D | js-create-lowering.cc | 833 CollectionKind collection_kind, in MapForCollectionIterationKind() 836 case CollectionKind::kSet: in MapForCollectionIterationKind() 846 case CollectionKind::kMap: in MapForCollectionIterationKind()
|
D | js-operator.cc | 1208 CollectionKind collection_kind, IterationKind iteration_kind) { in CreateCollectionIterator()
|
/external/v8/src/common/ |
D | globals.h | 1459 enum class CollectionKind { kMap, kSet }; enum 1461 inline std::ostream& operator<<(std::ostream& os, CollectionKind kind) { 1463 case CollectionKind::kMap: 1465 case CollectionKind::kSet:
|