Home
last modified time | relevance | path

Searched refs:IsOtherNumberConstant (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/compiler/
Dtypes.cc69 DCHECK(this->IsOtherNumberConstant()); in Min()
87 DCHECK(this->IsOtherNumberConstant()); in Max()
127 if (IsOtherNumberConstant()) { in BitsetLub()
457 bool OtherNumberConstantType::IsOtherNumberConstant(double value) { in IsOtherNumberConstant() function in v8::internal::compiler::OtherNumberConstantType
481 if (this->IsOtherNumberConstant()) { in SimplyEquals()
482 return that.IsOtherNumberConstant() && in SimplyEquals()
487 if (that.IsHeapConstant() || that.IsOtherNumberConstant()) return false; in SimplyEquals()
821 DCHECK(OtherNumberConstantType::IsOtherNumberConstant(value)); in NewConstant()
929 if (this->IsHeapConstant() || this->IsOtherNumberConstant()) { in NumConstants()
998 } else if (this->IsOtherNumberConstant()) { in PrintTo()
Dtypes.h399 bool IsOtherNumberConstant() const { in IsOtherNumberConstant() function
515 static bool IsOtherNumberConstant(double value);
528 CHECK(IsOtherNumberConstant(value)); in OtherNumberConstantType()