Home
last modified time | relevance | path

Searched refs:V8_INFINITY (Results 1 – 17 of 17) sorted by relevance

/external/v8/src/compiler/
Doperation-typer.cc23 infinity_ = Type::Constant(V8_INFINITY, zone); in OperationTyper()
24 minus_infinity_ = Type::Constant(-V8_INFINITY, zone); in OperationTyper()
103 new_min = -V8_INFINITY; in WeakenRange()
117 new_max = V8_INFINITY; in WeakenRange()
144 double x = +V8_INFINITY; in array_min()
159 double x = -V8_INFINITY; in array_max()
245 if (((lhs_min == -V8_INFINITY || lhs_max == V8_INFINITY) && in MultiplyRanger()
247 ((rhs_min == -V8_INFINITY || rhs_max == V8_INFINITY) && in MultiplyRanger()
706 (rhs.Min() == -V8_INFINITY || rhs.Max() == V8_INFINITY)) || in NumberMultiply()
708 (lhs.Min() == -V8_INFINITY || lhs.Max() == V8_INFINITY)); in NumberMultiply()
[all …]
Dtype-cache.h69 Type const kInteger = CreateRange(-V8_INFINITY, V8_INFINITY);
74 Type const kPositiveInteger = CreateRange(0.0, V8_INFINITY);
Dtypes.cc61 double min = +V8_INFINITY; in Min()
79 double max = -V8_INFINITY; in Max()
351 {kOtherNumber, kPlainNumber, -V8_INFINITY},
436 return +V8_INFINITY; in Max()
Dtyper.cc785 increment_type.Min() == -V8_INFINITY || in TypeInductionVariablePhi()
786 increment_type.Max() == +V8_INFINITY) { in TypeInductionVariablePhi()
804 double min = -V8_INFINITY; in TypeInductionVariablePhi()
805 double max = V8_INFINITY; in TypeInductionVariablePhi()
862 min = -V8_INFINITY; in TypeInductionVariablePhi()
863 max = +V8_INFINITY; in TypeInductionVariablePhi()
896 -V8_INFINITY, in InductionVariablePhiTypeIsPrefixedPoint()
908 +V8_INFINITY, typer_->zone()); in InductionVariablePhiTypeIsPrefixedPoint()
1378 new_min = -V8_INFINITY; in Weaken()
1392 new_max = V8_INFINITY; in Weaken()
Dmachine-operator-reducer.cc183 Float64Constant(-V8_INFINITY)), in Float64PowHalf()
185 return d.Phi(MachineRepresentation::kFloat64, Float64Constant(V8_INFINITY), in Float64PowHalf()
Djs-call-reducer.cc4443 jsgraph()->Constant(-V8_INFINITY)); in ReduceJSCall()
4446 jsgraph()->Constant(V8_INFINITY)); in ReduceJSCall()
/external/v8/src/numbers/
Dstrtod.cc350 if (guess == V8_INFINITY) { in BignumStrtod()
405 if (exponent + trimmed.length() - 1 >= kMaxDecimalPower) return V8_INFINITY; in Strtod()
Dconversions.cc645 return (sign == NEGATIVE) ? -V8_INFINITY : V8_INFINITY; in InternalStringToDouble()
/external/v8/src/builtins/
Dstring-repeat.tq58 if (n == V8_INFINITY || n < 0.0) goto InvalidCount;
Dmath.tq150 let result: float64 = V8_INFINITY;
412 if (max == V8_INFINITY) {
413 return V8_INFINITY;
Dbase.tq212 const V8_INFINITY: constexpr float64 generates 'V8_INFINITY';
213 const MINUS_V8_INFINITY: constexpr float64 generates '-V8_INFINITY';
1627 if (value == V8_INFINITY) {
1630 return value == (Convert<float64>(0) - V8_INFINITY);
Dnumber.tq153 } else if (x == V8_INFINITY) {
/external/v8/src/execution/
Dfutex-emulation.cc317 bool use_timeout = rel_timeout_ms != V8_INFINITY; in Wait()
340 ? V8_INFINITY in WaitTimeoutInMs()
/external/v8/src/objects/
Dbigint.cc909 if (y == V8_INFINITY) return ComparisonResult::kLessThan; in CompareToDouble()
910 if (y == -V8_INFINITY) return ComparisonResult::kGreaterThan; in CompareToDouble()
1089 if (x_bitlength > 1024) return x->sign() ? -V8_INFINITY : V8_INFINITY; in ToDouble()
1127 return x->sign() ? -V8_INFINITY : V8_INFINITY; in ToDouble()
/external/v8/src/heap/
Dsetup-heap-internal.cc685 *factory->NewHeapNumber<AllocationType::kReadOnly>(V8_INFINITY)); in CreateInitialObjects()
687 *factory->NewHeapNumber<AllocationType::kReadOnly>(-V8_INFINITY)); in CreateInitialObjects()
/external/v8/src/common/
Dglobals.h21 #define V8_INFINITY std::numeric_limits<double>::infinity() macro
/external/v8/src/init/
Dbootstrapper.cc1854 factory->NewNumber(-V8_INFINITY)); in InitializeGlobal()