Home | History | Annotate | Download | only in analysis

Lines Matching refs:targetType

299  * Determine whether or not "instrType" and "targetType" are compatible,
312 * could get kRegTypeUnknown in "targetType" if a field or array class
315 static bool checkFieldArrayStore1nr(RegType instrType, RegType targetType)
317 if (instrType == targetType)
320 if ((instrType == kRegTypeInteger && targetType == kRegTypeFloat) ||
321 (instrType == kRegTypeFloat && targetType == kRegTypeInteger))