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.h79 Type singleton_false() const { return singleton_false_; } in singleton_false()
107 Type singleton_false_; variable
Dtyper.cc47 singleton_false_ = operation_typer_.singleton_false(); in Typer()
426 : t->singleton_false_; in FalsifyUndefined()
560 if (!type.Maybe(Type::OtherObject())) return t->singleton_false_; in ObjectIsArrayBufferView()
567 if (!type.Maybe(Type::BigInt())) return t->singleton_false_; in ObjectIsBigInt()
574 if (!type.Maybe(Type::Callable())) return t->singleton_false_; in ObjectIsCallable()
585 if (!type.Maybe(Type::Callable())) return t->singleton_false_; in ObjectIsConstructor()
592 if (!type.Maybe(Type::DetectableCallable())) return t->singleton_false_; in ObjectIsDetectableCallable()
599 if (!type.Maybe(Type::MinusZero())) return t->singleton_false_; in ObjectIsMinusZero()
606 if (!type.Maybe(Type::MinusZero())) return t->singleton_false_; in NumberIsMinusZero()
613 if (!type.Maybe(Type::NaN())) return t->singleton_false_; in ObjectIsNaN()
[all …]
Dtyper.h60 Type singleton_false_; variable
Doperation-typer.cc32 singleton_false_ = Type::Constant(broker, factory->false_value(), zone); in OperationTyper()
40 Type::Union(Type::Union(singleton_false_, cache_->kZeroish, zone), in OperationTyper()
292 if (type.Maybe(singleton_false_)) { in ToNumber()
524 if (type.Is(cache_->kZeroish)) return singleton_false_; in NumberToBoolean()
1314 if (type.Is(falsish_)) return singleton_false_; in ToBoolean()