Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/compiler/
Doperation-typer.cc1184 if (type.Is(singleton_false())) return singleton_true(); in Invert()
1185 if (type.Is(singleton_true())) return singleton_false(); in Invert()
1202 : singleton_false(); in FalsifyUndefined()
1226 if (!JSType(lhs).Maybe(JSType(rhs))) return singleton_false(); in SameValue()
1229 if (!rhs.Maybe(Type::NaN())) return singleton_false(); in SameValue()
1231 if (!lhs.Maybe(Type::NaN())) return singleton_false(); in SameValue()
1235 if (!rhs.Maybe(Type::MinusZero())) return singleton_false(); in SameValue()
1237 if (!lhs.Maybe(Type::MinusZero())) return singleton_false(); in SameValue()
1241 return singleton_false(); in SameValue()
1256 if (!JSType(lhs).Maybe(JSType(rhs))) return singleton_false(); in StrictEqual()
[all …]
Dtype-narrowing-reducer.cc36 new_type = op_typer_.singleton_false(); in Reduce()
Doperation-typer.h79 Type singleton_false() const { return singleton_false_; } in singleton_false() function
Dtyper.cc47 singleton_false_ = operation_typer_.singleton_false(); in Typer()