Home
last modified time | relevance | path

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

/external/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()
424 : t->singleton_false_; in FalsifyUndefined()
558 if (!type.Maybe(Type::OtherObject())) return t->singleton_false_; in ObjectIsArrayBufferView()
565 if (!type.Maybe(Type::BigInt())) return t->singleton_false_; in ObjectIsBigInt()
572 if (!type.Maybe(Type::Callable())) return t->singleton_false_; in ObjectIsCallable()
583 if (!type.Maybe(Type::Callable())) return t->singleton_false_; in ObjectIsConstructor()
590 if (!type.Maybe(Type::DetectableCallable())) return t->singleton_false_; in ObjectIsDetectableCallable()
597 if (!type.Maybe(Type::MinusZero())) return t->singleton_false_; in ObjectIsMinusZero()
604 if (!type.Maybe(Type::MinusZero())) return t->singleton_false_; in NumberIsMinusZero()
611 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()
1304 if (type.Is(falsish_)) return singleton_false_; in ToBoolean()