Searched defs:kPrimNot (Results 1 - 4 of 4) sorted by path

/art/compiler/optimizing/
H A Dnodes.cc2268 DCHECK_EQ(GetType(), Primitive::kPrimNot); member in class:art::Primitive
H A Dnodes.h1828 DCHECK_EQ(GetType(), Primitive::kPrimNot) << "CanBeNull only applies to reference types"; member in class:art::HInstruction::Primitive
1837 return GetType() == Primitive::kPrimNot;
1843 DCHECK_EQ(GetType(), Primitive::kPrimNot); member in class:art::HInstruction::Primitive
2380 (GetType() == Primitive::kPrimInt && new_type == Primitive::kPrimNot) ||
2515 explicit HNullConstant(uint32_t dex_pc = kNoDexPc) : HConstant(Primitive::kPrimNot, dex_pc) {}
3613 : HExpression(Primitive::kPrimNot, SideEffects::CanTriggerGC(), dex_pc),
3964 return GetPackedField<ReturnTypeField>() == Primitive::kPrimNot && !IsStringInit();
4206 : HExpression(Primitive::kPrimNot, SideEffects::CanTriggerGC(), dex_pc),
5159 SetPackedFlag<kFlagNeedsTypeCheck>(value->GetType() == Primitive::kPrimNot);
5218 return (value_type == Primitive::kPrimNot)
[all...]
H A Dssa_builder.cc38 if ((left->GetType() == Primitive::kPrimNot) && (right->GetType() == Primitive::kPrimInt)) {
40 } else if ((right->GetType() == Primitive::kPrimNot)
144 DCHECK(Primitive::IsFloatingPointType(input_type) || input_type == Primitive::kPrimNot); member in class:art::Primitive
149 DCHECK(Primitive::IsFloatingPointType(common_type) || common_type == Primitive::kPrimNot); member in class:art::Primitive
152 DCHECK((common_type == Primitive::kPrimFloat && input_type == Primitive::kPrimNot) ||
153 (common_type == Primitive::kPrimNot && input_type == Primitive::kPrimFloat));
185 DCHECK(common_type == Primitive::kPrimNot || Primitive::IsFloatingPointType(common_type));
191 HInstruction* equivalent = (common_type == Primitive::kPrimNot)
679 return GetFloatDoubleOrReferenceEquivalentOfPhi(value->AsPhi(), Primitive::kPrimNot);
/art/runtime/
H A Dprimitive.h39 kPrimNot = 0, enumerator in enum:art::Primitive::Type
73 return kPrimNot;
88 case kPrimNot: return ComponentSizeShiftWidth(kObjectReferenceSize);
106 case kPrimNot: return kObjectReferenceSize;

Completed in 62 milliseconds