Home
last modified time | relevance | path

Searched refs:CollectionKind (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/compiler/
Djs-call-reducer.h186 CollectionKind collection_kind,
189 CollectionKind collection_kind);
Djs-operator.h601 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()
Djs-call-reducer.cc4521 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 …]
Djs-create-lowering.cc833 CollectionKind collection_kind, in MapForCollectionIterationKind()
836 case CollectionKind::kSet: in MapForCollectionIterationKind()
846 case CollectionKind::kMap: in MapForCollectionIterationKind()
Djs-operator.cc1208 CollectionKind collection_kind, IterationKind iteration_kind) { in CreateCollectionIterator()
/external/v8/src/common/
Dglobals.h1459 enum class CollectionKind { kMap, kSet }; enum
1461 inline std::ostream& operator<<(std::ostream& os, CollectionKind kind) {
1463 case CollectionKind::kMap:
1465 case CollectionKind::kSet: