Home | History | Annotate | Download | only in src

Lines Matching defs:Type1

1826   /// Simplifies out vector types from Type1 and Type2, if both are vectors of
1829 static bool simplifyOutCommonVectorType(Ice::Type &Type1, Ice::Type &Type2) {
1830 bool IsType1Vector = isVectorType(Type1);
1836 if (typeNumElements(Type1) != typeNumElements(Type2))
1838 Type1 = typeElementType(Type1);
2221 Ice::Type Type1 = Op1->getType();
2223 if (Type1 != Type2) {
2226 StrBuf << "Binop argument types differ: " << Type1 << " and " << Type2;
2228 appendErrorInstruction(Type1);
2233 if (!convertBinopOpcode(Values[2], Type1, Opcode)) {
2234 appendErrorInstruction(Type1);
2238 Func.get(), Opcode, getNextInstVar(Type1), Op1, Op2));