Home | History | Annotate | Download | only in compiler

Lines Matching defs:select

463 // Select
471 graph()->NewNode(common()->Select(rep, hint), input, input, input));
482 Node* select =
483 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
485 Reduction r = Reduce(select);
494 Node* select =
495 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
497 Reduction r = Reduce(select);
506 Node* select =
507 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
509 Reduction r = Reduce(select);
518 Node* select =
519 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
521 Reduction r = Reduce(select);
530 Node* select =
531 graph()->NewNode(common()->Select(MachineRepresentation::kTagged),
533 Reduction r = Reduce(select);
542 Node* select = graph()->NewNode(
543 common()->Select(MachineRepresentation::kTagged), TrueConstant(), p0, p1);
544 Reduction r = Reduce(select);
554 Node* select =
555 graph()->NewNode(common()->Select(MachineRepresentation::kFloat32), check,
557 Reduction r = Reduce(select);
567 Node* select =
568 graph()->NewNode(common()->Select(MachineRepresentation::kFloat64), check,
570 Reduction r = Reduce(select);
580 Node* select = graph()->NewNode(
581 common()->Select(MachineRepresentation::kFloat32), check, p1, p0);
582 Reduction r = Reduce(select, MachineOperatorBuilder::kFloat32Max);
592 Node* select = graph()->NewNode(
593 common()->Select(MachineRepresentation::kFloat64), check, p1, p0);
594 Reduction r = Reduce(select, MachineOperatorBuilder::kFloat64Max);
604 Node* select = graph()->NewNode(
605 common()->Select(MachineRepresentation::kFloat32), check, p0, p1);
606 Reduction r = Reduce(select, MachineOperatorBuilder::kFloat32Min);
616 Node* select = graph()->NewNode(
617 common()->Select(MachineRepresentation::kFloat64), check, p0, p1);
618 Reduction r = Reduce(select, MachineOperatorBuilder::kFloat64Min);