Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Doperation-typer.h58 Type* singleton_false() const { return singleton_false_; } in singleton_false()
83 Type* singleton_false_; variable
Dtyper.cc47 singleton_false_ = operation_typer_.singleton_false(); in Typer()
51 Type::Union(Type::Union(singleton_false_, cache_.kZeroish, zone), in Typer()
393 if (type->Is(t->singleton_false_)) return t->singleton_true_; in Invert()
394 if (type->Is(t->singleton_true_)) return t->singleton_false_; in Invert()
413 : t->singleton_false_; in FalsifyUndefined()
432 if (type->Is(t->falsish_)) return t->singleton_false_; in ToBoolean()
508 if (!type->Maybe(Type::DetectableCallable())) return t->singleton_false_; in ObjectIsDetectableCallable()
514 if (!type->Maybe(Type::NonCallable())) return t->singleton_false_; in ObjectIsNonCallable()
520 if (!type->Maybe(Type::Number())) return t->singleton_false_; in ObjectIsNumber()
527 if (!type->Maybe(Type::Receiver())) return t->singleton_false_; in ObjectIsReceiver()
[all …]
Dtyper.h54 Type* singleton_false_; variable
Doperation-typer.cc27 singleton_false_ = Type::HeapConstant(factory->false_value(), zone); in OperationTyper()
252 if (type->Is(singleton_false_)) return cache_.kSingletonZero; in ToNumber()
463 if (type->Is(cache_.kZeroish)) return singleton_false_; in NumberToBoolean()