Home | History | Annotate | Download | only in compiler

Lines Matching refs:upper

36     Type upper = NodeProperties::GetType(node);
37 if (!upper.IsNone()) {
39 if (upper.IsHeapConstant()) {
40 replacement = jsgraph()->Constant(upper.AsHeapConstant()->Ref());
41 } else if (upper.Is(Type::MinusZero())) {
45 } else if (upper.Is(Type::NaN())) {
47 } else if (upper.Is(Type::Null())) {
49 } else if (upper.Is(Type::PlainNumber()) && upper.Min() == upper.Max()) {
50 replacement = jsgraph()->Constant(upper.Min());
51 } else if (upper.Is(Type::Undefined())) {
57 NodeProperties::SetType(replacement, upper);