Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-operator.h508 explicit CreateCollectionIteratorParameters(CollectionKind collection_kind, in CreateCollectionIteratorParameters()
511 CHECK(!(collection_kind == CollectionKind::kSet && in CreateCollectionIteratorParameters()
515 CollectionKind collection_kind() const { return collection_kind_; } in collection_kind()
519 CollectionKind const collection_kind_;
719 const Operator* CreateCollectionIterator(CollectionKind, IterationKind); in NON_EXPORTED_BASE()
Djs-call-reducer.h171 CollectionKind collection_kind,
174 CollectionKind collection_kind);
Djs-call-reducer.cc3676 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall()
3679 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall()
3682 return ReduceCollectionPrototypeSize(node, CollectionKind::kMap); in ReduceJSCall()
3684 return ReduceCollectionIteration(node, CollectionKind::kMap, in ReduceJSCall()
3691 return ReduceCollectionIteration(node, CollectionKind::kSet, in ReduceJSCall()
3694 return ReduceCollectionPrototypeSize(node, CollectionKind::kSet); in ReduceJSCall()
3696 return ReduceCollectionIteration(node, CollectionKind::kSet, in ReduceJSCall()
6368 InstanceType InstanceTypeForCollectionKind(CollectionKind kind) { in InstanceTypeForCollectionKind()
6370 case CollectionKind::kMap: in InstanceTypeForCollectionKind()
6372 case CollectionKind::kSet: in InstanceTypeForCollectionKind()
[all …]
Djs-create-lowering.cc859 CollectionKind collection_kind, in MapForCollectionIterationKind()
862 case CollectionKind::kSet: in MapForCollectionIterationKind()
872 case CollectionKind::kMap: in MapForCollectionIterationKind()
Djs-operator.cc1138 CollectionKind collection_kind, IterationKind iteration_kind) { in CreateCollectionIterator()
/external/v8/src/
Dglobals.h1402 enum class CollectionKind { kMap, kSet }; enum
1404 inline std::ostream& operator<<(std::ostream& os, CollectionKind kind) {
1406 case CollectionKind::kMap:
1408 case CollectionKind::kSet: