Home | History | Annotate | Download | only in arm

Lines Matching refs:dst_type

2150 // Encode vcvt.src_type.dst_type instruction.
2151 static Instr EncodeVCVT(const VFPType dst_type,
2157 ASSERT(src_type != dst_type);
2160 SplitRegCode(dst_type, dst_code, &Vd, &D);
2162 if (IsIntegerVFPType(dst_type) || IsIntegerVFPType(src_type)) {
2167 ASSERT(!IsIntegerVFPType(dst_type) || !IsIntegerVFPType(src_type));
2171 if (IsIntegerVFPType(dst_type)) {
2172 opc2 = IsSignedVFPType(dst_type) ? 0x5 : 0x4;
2178 sz = IsDoubleVFPType(dst_type) ? 0x1 : 0x0;