Home
last modified time | relevance | path

Searched refs:BothInputsAre (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Djs-typed-lowering.cc83 if (BothInputsAre(Type::String()) || in ShouldCreateConsString()
317 bool BothInputsAre(Type* t) { return LeftInputIs(t) && RightInputIs(t); } in BothInputsAre() function in v8::internal::compiler::JSBinopReduction
477 r.BothInputsAre(Type::PlainPrimitive()) && in ReduceJSAdd()
486 if (r.BothInputsAre(Type::Number())) { in ReduceJSAdd()
491 if ((r.BothInputsAre(Type::PlainPrimitive()) || in ReduceJSAdd()
529 r.BothInputsAre(Type::NumberOrOddball())) { in ReduceNumberBinop()
536 if (r.BothInputsAre(Type::PlainPrimitive()) || in ReduceNumberBinop()
551 if (r.BothInputsAre(Type::PlainPrimitive()) || in ReduceInt32Binop()
568 if (r.BothInputsAre(Type::PlainPrimitive()) || in ReduceUI32Shift()
708 if (r.BothInputsAre(Type::String())) { in ReduceJSComparison()
[all …]
Dsimplified-lowering.cc665 return BothInputsAre(node, Type::Signed32()); in BothInputsAreSigned32()
669 return BothInputsAre(node, Type::Unsigned32()); in BothInputsAreUnsigned32()
672 bool BothInputsAre(Node* node, Type* type) { in BothInputsAre() function in v8::internal::compiler::RepresentationSelector
802 if (BothInputsAre(node, Type::NumberOrOddball())) { in VisitSpeculativeInt32Binop()
1164 if (BothInputsAre(node, Type::PlainPrimitive())) { in VisitSpeculativeAdditiveOp()
1167 if (BothInputsAre(node, type_cache_.kAdditiveSafeIntegerOrMinusZero) && in VisitSpeculativeAdditiveOp()
1182 if (BothInputsAre(node, Type::Signed32()) || in VisitSpeculativeAdditiveOp()
1183 (BothInputsAre(node, Type::Signed32OrMinusZero()) && in VisitSpeculativeAdditiveOp()
1225 if (BothInputsAre(node, Type::PlainPrimitive())) { in VisitSpeculativeNumberModulus()
1228 if (BothInputsAre(node, Type::Unsigned32OrMinusZeroOrNaN()) && in VisitSpeculativeNumberModulus()
[all …]