Lines Matching defs:new_op
280 static void ChangeOp(Node* node, const Operator* new_op) { UNREACHABLE(); }
895 void ChangeToPureOp(Node* node, const Operator* new_op) {
896 DCHECK(new_op->HasProperty(Operator::kPure));
897 DCHECK_EQ(new_op->ValueInputCount(), node->op()->ValueInputCount());
907 node->TrimInputCount(new_op->ValueInputCount());
912 ChangeOp(node, new_op);
915 void ChangeUnaryToPureBinaryOp(Node* node, const Operator* new_op,
917 DCHECK(new_op->HasProperty(Operator::kPure));
918 DCHECK_EQ(new_op->ValueInputCount(), 2);
942 ChangeOp(node, new_op);
4147 void ChangeOp(Node* node, const Operator* new_op) {
4148 compiler::NodeProperties::ChangeOp(node, new_op);
5072 void SimplifiedLowering::ChangeOp(Node* node, const Operator* new_op) {
5073 compiler::NodeProperties::ChangeOp(node, new_op);