Home
last modified time | relevance | path

Searched refs:IsInhabited (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/compiler/
Doperation-typer.cc274 if (!type->IsInhabited()) { in NumberAbs()
462 if (!type->IsInhabited()) return Type::None(); in NumberToBoolean()
514 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberAdd()
539 if (lhs->IsInhabited() && rhs->IsInhabited()) { in NumberAdd()
561 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberSubtract()
584 if (lhs->IsInhabited() && rhs->IsInhabited()) { in NumberSubtract()
606 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberMultiply()
623 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberDivide()
669 if (lhs->IsInhabited() && !rhs->Is(cache_.kSingletonZero)) { in NumberModulus()
714 if (!lhs->IsInhabited() || !rhs->IsInhabited()) return Type::None(); in NumberBitwiseOr()
[all …]
Dtyper.cc378 return input->IsInhabited() ? f(input, typer_) : Type::None(); in TypeUnaryOp()
385 return left->IsInhabited() && right->IsInhabited() ? f(left, right, typer_) in TypeBinaryOp()
392 DCHECK(type->IsInhabited()); in Invert()
698 if (!initial_type->IsInhabited() || in TypeInductionVariablePhi()
732 if (!bound_type->IsInhabited()) { in TypeInductionVariablePhi()
752 if (!bound_type->IsInhabited()) { in TypeInductionVariablePhi()
1779 if (!index->IsInhabited() || !length->IsInhabited()) return Type::None(); in TypeCheckBounds()
Dtypes.h234 static bool IsInhabited(bitset bits) { return bits != kNone; } in IsInhabited() function
569 bool IsInhabited() { return BitsetType::IsInhabited(this->BitsetLub()); } in IsInhabited() function
Dtyped-optimization.cc46 if (upper->IsInhabited()) { in Reduce()
Dtypes.cc544 if (!BitsetType::IsInhabited(this->BitsetLub() & that->BitsetLub())) in Maybe()
742 if (!BitsetType::IsInhabited(lhs->BitsetLub() & rhs->BitsetLub())) { in IntersectAux()
Dsimplified-lowering.cc223 if (!left->IsInhabited() || !right->IsInhabited()) return false; in CanOverflowSigned32()
1000 if (!type->IsInhabited()) { in DeoptMachineTypeOf()
1053 if (input_type->IsInhabited()) { in VisitObjectState()
Drepresentation-change.cc118 output_type->IsInhabited()) { in GetRepresentationFor()
/external/v8/src/crankshaft/
Dhydrogen-types.cc18 if (!type->IsInhabited()) return HType::None(); in FromType()
Dtyping.cc701 !l.lower->IsInhabited() || !r.lower->IsInhabited() in VisitBinaryOperation()
Dhydrogen.cc10748 if (!left_type->IsInhabited() && right->IsConstant() && in BuildBinaryOperation()
10753 if (!right_type->IsInhabited() && left->IsConstant() && in BuildBinaryOperation()
10767 if (!left_type->IsInhabited()) { in BuildBinaryOperation()
10776 if (!right_type->IsInhabited()) { in BuildBinaryOperation()
11334 if (!combined_type->IsInhabited()) { in BuildCompareInstruction()
/external/v8/src/ast/
Dast-types.h300 static bool IsInhabited(bitset bits) { in IsInhabited() function
797 bool IsInhabited() { return AstBitsetType::IsInhabited(this->BitsetLub()); } in IsInhabited() function
Dast-types.cc616 if (!AstBitsetType::IsInhabited(this->BitsetLub() & that->BitsetLub())) in Maybe()