Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Doperation-typer.h80 Type singleton_true() const { return singleton_true_; } in singleton_true()
108 Type singleton_true_; variable
Dtyper.cc48 singleton_true_ = operation_typer_.singleton_true(); in Typer()
427 return t->singleton_true_; in FalsifyUndefined()
564 if (type.Is(Type::BigInt())) return t->singleton_true_; in ObjectIsBigInt()
571 if (type.Is(Type::Callable())) return t->singleton_true_; in ObjectIsCallable()
581 return t->singleton_true_; in ObjectIsConstructor()
589 if (type.Is(Type::DetectableCallable())) return t->singleton_true_; in ObjectIsDetectableCallable()
596 if (type.Is(Type::MinusZero())) return t->singleton_true_; in ObjectIsMinusZero()
603 if (type.Is(Type::MinusZero())) return t->singleton_true_; in NumberIsMinusZero()
610 if (type.Is(Type::NaN())) return t->singleton_true_; in ObjectIsNaN()
617 if (type.Is(Type::NaN())) return t->singleton_true_; in NumberIsNaN()
[all …]
Dtyper.h61 Type singleton_true_; variable
Doperation-typer.cc33 singleton_true_ = Type::Constant(broker, factory->true_value(), zone); in OperationTyper()
45 singleton_true_, in OperationTyper()
296 if (type.Maybe(singleton_true_)) { in ToNumber()
526 return singleton_true_; // Ruled out nan, -0 and +0. in NumberToBoolean()
1305 if (type.Is(truish_)) return singleton_true_; in ToBoolean()