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.cc46 singleton_false_ = Type::HeapConstant(factory->false_value(), zone); in Typer()
51 Type::Union(Type::Union(singleton_false_, cache_.kZeroish, zone), in Typer()
387 if (type->Is(t->singleton_false_)) return t->singleton_true_; in Invert()
388 if (type->Is(t->singleton_true_)) return t->singleton_false_; in Invert()
407 : t->singleton_false_; in FalsifyUndefined()
426 if (type->Is(t->falsish_)) return t->singleton_false_; in ToBoolean()
502 if (type->Is(Type::Primitive())) return t->singleton_false_; in ObjectIsCallable()
508 if (!type->Maybe(Type::Number())) return t->singleton_false_; in ObjectIsNumber()
515 if (!type->Maybe(Type::Receiver())) return t->singleton_false_; in ObjectIsReceiver()
521 if (!type->Maybe(Type::SignedSmall())) return t->singleton_false_; in ObjectIsSmi()
[all …]
Dtyper.h53 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()
462 if (type->Is(cache_.kZeroish)) return singleton_false_; in NumberToBoolean()