Home
last modified time | relevance | path

Searched refs:projection_count (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dnode-properties.cc283 size_t projection_count) { in CollectValueProjections() argument
285 for (size_t index = 0; index < projection_count; ++index) { in CollectValueProjections()
300 size_t projection_count) { in CollectControlProjections() argument
302 DCHECK_LE(static_cast<int>(projection_count), node->UseCount()); in CollectControlProjections()
303 std::memset(projections, 0, sizeof(*projections) * projection_count); in CollectControlProjections()
333 index = projection_count - 1; in CollectControlProjections()
338 DCHECK_LT(if_value_index, projection_count); in CollectControlProjections()
339 DCHECK_LT(index, projection_count); in CollectControlProjections()
344 for (size_t index = 0; index < projection_count; ++index) { in CollectControlProjections()
Dcommon-operator-reducer.cc440 size_t const projection_count = node->op()->ControlOutputCount(); in ReduceSwitch() local
441 Node** projections = zone_->NewArray<Node*>(projection_count); in ReduceSwitch()
443 projection_count); in ReduceSwitch()
444 for (size_t i = 0; i < projection_count - 1; i++) { in ReduceSwitch()
455 Node* if_default = projections[projection_count - 1]; in ReduceSwitch()