Lines Matching refs:Int32Constant
81 Node* IntNConstant(int32_t value) { return r_->Int32Constant(value); }
183 Node* MachineOperatorReducer::Int32Constant(int32_t value) {
184 return mcgraph()->Int32Constant(value);
387 node->ReplaceInput(0, Int32Constant(0));
393 node->ReplaceInput(1, Int32Constant(base::bits::WhichPowerOfTwo(
398 // (x * Int32Constant(a)) * Int32Constant(b)) => x * Int32Constant(a * b)
403 1, Int32Constant(base::MulWithWraparound(
419 node->ReplaceInput(0, Int32Constant(0));
1007 // (x + Int32Constant(a)) + Int32Constant(b)) => x + Int32Constant(a + b)
1012 1, Int32Constant(base::AddWithWraparound(m.right().ResolvedValue(),
1056 Int32Constant(base::NegateWithWraparound(m.right().ResolvedValue())));
1128 Node* const zero = Int32Constant(0);
1132 node->ReplaceInput(0, Int32Constant(0));
1154 node->ReplaceInput(0, Int32Constant(0));
1175 Node* const zero = Int32Constant(0);
1210 Node* const zero = Int32Constant(0);
1221 node->ReplaceInput(1, Int32Mul(quotient, Int32Constant(divisor)));
1404 node->ReplaceInput(1, Int32Constant(right << shift));
1419 node->ReplaceInput(0, Int32Constant(left << shift));
1648 node->ReplaceInput(0, Int32Constant(0));
1900 node->ReplaceInput(1, Int32Constant(combined_bitfield->masked_value));
2044 return Replace(Word32Equal(m.right().node(), Int32Constant(0)));