Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-typed-lowering.cc333 bool LeftInputIs(Type t) { return left_type().Is(t); } in LeftInputIs() function in v8::internal::compiler::JSBinopReduction
337 bool OneInputIs(Type t) { return LeftInputIs(t) || RightInputIs(t); } in OneInputIs()
339 bool BothInputsAre(Type t) { return LeftInputIs(t) && RightInputIs(t); } in BothInputsAre()
522 if (r.LeftInputIs(Type::String())) { in ReduceJSAdd()
568 if (r.LeftInputIs(empty_string_type_)) { in ReduceJSAdd()
583 if (!r.LeftInputIs(Type::String())) { in ReduceJSAdd()
854 node->RemoveInput(r.LeftInputIs(Type::Undetectable()) ? 0 : 1); in ReduceJSEqual()