Searched refs:BothInputsAre (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/compiler/ |
D | js-typed-lowering.cc | 94 if (BothInputsAre(Type::String()) || in ShouldCreateConsString() 339 bool BothInputsAre(Type t) { return LeftInputIs(t) && RightInputIs(t); } in BothInputsAre() function in v8::internal::compiler::JSBinopReduction 430 r.BothInputsAre(Type::PlainPrimitive()) && in ReduceSpeculativeNumberAdd() 502 if (r.BothInputsAre(Type::Number())) { in ReduceJSAdd() 506 if (r.BothInputsAre(Type::PlainPrimitive()) && in ReduceJSAdd() 534 if (r.BothInputsAre(Type::String())) { in ReduceJSAdd() 565 if (r.BothInputsAre(Type::String())) { in ReduceJSAdd() 615 if (r.BothInputsAre(Type::PlainPrimitive())) { in ReduceNumberBinop() 627 r.BothInputsAre(Type::NumberOrUndefinedOrNullOrBoolean())) { in ReduceSpeculativeNumberBinop() 640 if (r.BothInputsAre(Type::PlainPrimitive())) { in ReduceInt32Binop() [all …]
|
D | simplified-lowering.cc | 729 return BothInputsAre(node, Type::Signed32()); in BothInputsAreSigned32() 733 return BothInputsAre(node, Type::Unsigned32()); in BothInputsAreUnsigned32() 736 bool BothInputsAre(Node* node, Type type) { in BothInputsAre() function in v8::internal::compiler::RepresentationSelector 887 if (BothInputsAre(node, Type::NumberOrOddball())) { in VisitSpeculativeInt32Binop() 1358 if (BothInputsAre(node, type_cache_.kAdditiveSafeIntegerOrMinusZero) && in VisitSpeculativeAdditiveOp() 1379 if (BothInputsAre(node, Type::Unsigned32OrMinusZeroOrNaN()) && in VisitSpeculativeNumberModulus() 1387 if (BothInputsAre(node, Type::Signed32OrMinusZeroOrNaN()) && in VisitSpeculativeNumberModulus() 1413 if (BothInputsAre(node, Type::Signed32())) { in VisitSpeculativeNumberModulus() 1431 } else if (BothInputsAre(node, Type::Unsigned32OrMinusZeroOrNaN())) { in VisitSpeculativeNumberModulus() 1743 if (BothInputsAre(node, type_cache_.kAdditiveSafeIntegerOrMinusZero) && in VisitNode() [all …]
|