Lines Matching refs:node
11 #include "src/compiler/node-properties.h"
12 #include "src/compiler/node.h"
23 Reduction SelectLowering::Reduce(Node* node) {
24 if (node->opcode() != IrOpcode::kSelect) return NoChange();
25 return LowerSelect(node);
30 Reduction SelectLowering::LowerSelect(Node* node) {
31 SelectParameters const p = SelectParametersOf(node->op());
33 Node* condition = node->InputAt(0);
34 Node* vtrue = node->InputAt(1);
35 Node* vfalse = node->InputAt(2);