Searched refs:BothInputsAre (Results 1 – 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
D | js-typed-lowering.cc | 108 if (BothInputsAre(Type::String()) || in ShouldCreateConsString() 369 bool BothInputsAre(Type t) { return LeftInputIs(t) && RightInputIs(t); } in BothInputsAre() function in v8::internal::compiler::JSBinopReduction 530 if (r.BothInputsAre(Type::Number())) { in ReduceJSAdd() 534 if (r.BothInputsAre(Type::PlainPrimitive()) && in ReduceJSAdd() 564 if (r.BothInputsAre(Type::Primitive())) { in ReduceJSAdd() 583 if (r.BothInputsAre(Type::String())) { in ReduceJSAdd() 697 if (r.BothInputsAre(Type::PlainPrimitive())) { in ReduceNumberBinop() 706 if (r.BothInputsAre(Type::PlainPrimitive())) { in ReduceInt32Binop() 716 if (r.BothInputsAre(Type::PlainPrimitive())) { in ReduceUI32Shift() 728 if (r.BothInputsAre(Type::String())) { in ReduceJSComparison() [all …]
|
D | simplified-lowering.cc | 835 return BothInputsAre(node, Type::Signed32()); in BothInputsAreSigned32() 839 return BothInputsAre(node, Type::Unsigned32()); in BothInputsAreUnsigned32() 842 bool BothInputsAre(Node* node, Type type) { in BothInputsAre() function in v8::internal::compiler::RepresentationSelector 1076 if (BothInputsAre(node, Type::NumberOrOddball())) { in VisitSpeculativeInt32Binop() 1544 DCHECK(BothInputsAre(node, Type::Signed32()) || in VisitForCheckedInt32Mul() 1667 if (BothInputsAre(node, type_cache_->kAdditiveSafeIntegerOrMinusZero) && in VisitSpeculativeAdditiveOp() 1691 if (BothInputsAre(node, Type::Unsigned32OrMinusZeroOrNaN()) && in VisitSpeculativeNumberModulus() 1699 if (BothInputsAre(node, Type::Signed32OrMinusZeroOrNaN()) && in VisitSpeculativeNumberModulus() 1724 if (BothInputsAre(node, Type::Signed32())) { in VisitSpeculativeNumberModulus() 1747 } else if (BothInputsAre(node, Type::Unsigned32OrMinusZeroOrNaN())) { in VisitSpeculativeNumberModulus() [all …]
|