Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djs-typed-lowering.cc232 bool LeftInputIs(Type* t) { return left_type()->Is(t); } in LeftInputIs() function in v8::internal::compiler::JSBinopReduction
236 bool OneInputIs(Type* t) { return LeftInputIs(t) || RightInputIs(t); } in OneInputIs()
238 bool BothInputsAre(Type* t) { return LeftInputIs(t) && RightInputIs(t); } in BothInputsAre()
650 node->RemoveInput(r.LeftInputIs(Type::NullOrUndefined()) ? 0 : 1); in ReduceJSEqual()