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()
461 if (!type->IsInhabited()) return Type::None(); in NumberToBoolean()
513 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberAdd()
538 if (lhs->IsInhabited() && rhs->IsInhabited()) { in NumberAdd()
560 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberSubtract()
583 if (lhs->IsInhabited() && rhs->IsInhabited()) { in NumberSubtract()
605 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberMultiply()
622 if (!lhs->IsInhabited() || !rhs->IsInhabited()) { in NumberDivide()
661 if (lhs->IsInhabited() && !rhs->Is(cache_.kSingletonZero)) { in NumberModulus()
706 if (!lhs->IsInhabited() || !rhs->IsInhabited()) return Type::None(); in NumberBitwiseOr()
[all …]
Dtyper.cc372 return input->IsInhabited() ? f(input, typer_) : Type::None(); in TypeUnaryOp()
379 return left->IsInhabited() && right->IsInhabited() ? f(left, right, typer_) in TypeBinaryOp()
386 DCHECK(type->IsInhabited()); in Invert()
686 if (!initial_type->IsInhabited() || in TypeInductionVariablePhi()
720 if (!bound_type->IsInhabited()) { in TypeInductionVariablePhi()
740 if (!bound_type->IsInhabited()) { in TypeInductionVariablePhi()
1614 if (!index->IsInhabited() || !length->IsInhabited()) return Type::None(); in TypeCheckBounds()
Dtypes.h215 static bool IsInhabited(bitset bits) { return bits != kNone; } in IsInhabited() function
550 bool IsInhabited() { return BitsetType::IsInhabited(this->BitsetLub()); } in IsInhabited() function
Dtyped-optimization.cc46 if (upper->IsInhabited()) { in Reduce()
Dtypes.cc529 if (!BitsetType::IsInhabited(this->BitsetLub() & that->BitsetLub())) in Maybe()
727 if (!BitsetType::IsInhabited(lhs->BitsetLub() & rhs->BitsetLub())) { in IntersectAux()
Drepresentation-change.cc116 output_type->IsInhabited()) { in GetRepresentationFor()
Dsimplified-lowering.cc981 MachineRepresentation rep = input_type->IsInhabited() in VisitStateValues()
1025 MachineRepresentation rep = input_type->IsInhabited() in VisitObjectState()
/external/v8/src/crankshaft/
Dhydrogen-types.cc17 if (!type->IsInhabited()) return HType::None(); in FromType()
Dtyping.cc702 !l.lower->IsInhabited() || !r.lower->IsInhabited() in VisitBinaryOperation()
Dhydrogen.cc10690 if (!left_type->IsInhabited() && right->IsConstant() && in BuildBinaryOperation()
10695 if (!right_type->IsInhabited() && left->IsConstant() && in BuildBinaryOperation()
10709 if (!left_type->IsInhabited()) { in BuildBinaryOperation()
10718 if (!right_type->IsInhabited()) { in BuildBinaryOperation()
11280 if (!combined_type->IsInhabited()) { in BuildCompareInstruction()
/external/v8/src/ast/
Dast-types.h302 static bool IsInhabited(bitset bits) { in IsInhabited() function
804 bool IsInhabited() { return AstBitsetType::IsInhabited(this->BitsetLub()); } in IsInhabited() function
Dast-types.cc615 if (!AstBitsetType::IsInhabited(this->BitsetLub() & that->BitsetLub())) in Maybe()