Home
last modified time | relevance | path

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

/third_party/node/deps/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()
429 return t->singleton_true_; in FalsifyUndefined()
566 if (type.Is(Type::BigInt())) return t->singleton_true_; in ObjectIsBigInt()
573 if (type.Is(Type::Callable())) return t->singleton_true_; in ObjectIsCallable()
583 return t->singleton_true_; in ObjectIsConstructor()
591 if (type.Is(Type::DetectableCallable())) return t->singleton_true_; in ObjectIsDetectableCallable()
598 if (type.Is(Type::MinusZero())) return t->singleton_true_; in ObjectIsMinusZero()
605 if (type.Is(Type::MinusZero())) return t->singleton_true_; in NumberIsMinusZero()
612 if (type.Is(Type::NaN())) return t->singleton_true_; in ObjectIsNaN()
619 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()
1315 if (type.Is(truish_)) return singleton_true_; in ToBoolean()