Home
last modified time | relevance | path

Searched refs:IsFloatingPointType (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dcommon_arm64.h65 DCHECK(type != Primitive::kPrimVoid && !Primitive::IsFloatingPointType(type)); in RegisterFrom()
89 DCHECK(Primitive::IsFloatingPointType(type)); in FPRegisterFrom()
103 return Primitive::IsFloatingPointType(type) ? vixl::CPURegister(FPRegisterFrom(location, type)) in CPURegisterFrom()
108 return Primitive::IsFloatingPointType(instr->GetType()) in OutputCPURegister()
114 return Primitive::IsFloatingPointType(instr->InputAt(index)->GetType()) in InputCPURegisterAt()
Dinstruction_simplifier.cc410 if ((input_cst != nullptr) && Primitive::IsFloatingPointType(type)) { in VisitDiv()
460 (Primitive::IsFloatingPointType(type) || Primitive::IsIntOrLongType(type))) { in VisitMul()
471 if (Primitive::IsFloatingPointType(type) && in VisitMul()
531 !Primitive::IsFloatingPointType(input->GetType())) { in VisitNeg()
615 if (Primitive::IsFloatingPointType(type)) { in VisitSub()
Dcode_generator_mips64.cc76 if (Primitive::IsFloatingPointType(type) && in GetNextLocation()
81 } else if (!Primitive::IsFloatingPointType(type) && in GetNextLocation()
622 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(type)) || in MoveLocation()
623 (destination.IsRegister() && !Primitive::IsFloatingPointType(type))); in MoveLocation()
627 if (Primitive::IsFloatingPointType(type)) { in MoveLocation()
642 if (!Primitive::IsFloatingPointType(type)) { in MoveLocation()
680 (source.IsFpuRegister() == Primitive::IsFloatingPointType(type))); in MoveLocation()
913 if (Primitive::IsFloatingPointType(type)) { in AllocateFreeRegister()
1257 if (Primitive::IsFloatingPointType(instruction->GetType())) { in VisitArrayGet()
1428 if (Primitive::IsFloatingPointType(instruction->InputAt(2)->GetType())) { in VisitArraySet()
[all …]
Dcode_generator_arm64.cc384 if (Primitive::IsFloatingPointType(type) && in GetNextLocation()
387 } else if (!Primitive::IsFloatingPointType(type) && in GetNextLocation()
657 if (Primitive::IsFloatingPointType(type)) { in AllocateFreeRegister()
755 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(type)) || in MoveLocation()
756 (destination.IsRegister() && !Primitive::IsFloatingPointType(type))); in MoveLocation()
783 (source.IsFpuRegister() == Primitive::IsFloatingPointType(type))); in MoveLocation()
1129 if (Primitive::IsFloatingPointType(instruction->GetType())) { in HandleFieldGet()
1164 if (Primitive::IsFloatingPointType(instruction->InputAt(1)->GetType())) { in HandleFieldSet()
1322 if (Primitive::IsFloatingPointType(instruction->GetType())) { in VisitArrayGet()
1380 if (Primitive::IsFloatingPointType(instruction->InputAt(2)->GetType())) { in VisitArraySet()
[all …]
Dcode_generator_arm.cc2846 if (Primitive::IsFloatingPointType(field_type)) { in HandleFieldSet()
2988 if (Primitive::IsFloatingPointType(instruction->GetType())) { in HandleFieldGet()
3166 if (Primitive::IsFloatingPointType(instruction->GetType())) { in VisitArrayGet()
3317 if (Primitive::IsFloatingPointType(value_type)) { in VisitArraySet()
Dcode_generator_x86.cc3249 if (Primitive::IsFloatingPointType(instruction->GetType())) { in HandleFieldGet()
3363 } else if (Primitive::IsFloatingPointType(field_type)) { in HandleFieldSet()
3554 if (Primitive::IsFloatingPointType(instruction->GetType())) { in VisitArrayGet()
3718 } else if (Primitive::IsFloatingPointType(value_type)) { in VisitArraySet()
Dcode_generator_x86_64.cc3158 if (Primitive::IsFloatingPointType(instruction->GetType())) { in HandleFieldGet()
3240 if (Primitive::IsFloatingPointType(instruction->InputAt(1)->GetType())) { in HandleFieldSet()
3429 if (Primitive::IsFloatingPointType(instruction->GetType())) { in VisitArrayGet()
/art/runtime/
Dprimitive.h140 static bool IsFloatingPointType(Type type) { in IsFloatingPointType() function