Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Accum

1205   /// Merge an accumulating classification \arg Accum with a field
1208 /// \param Accum - The accumulating classification. This should
1212 static Class merge(Class Accum, Class Field);
1499 X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum, Class Field) {
1521 // Accum should never be memory (we should have returned) or
1523 assert((Accum != Memory && Accum != ComplexX87) &&
1525 if (Accum == Field || Field == NoClass)
1526 return Accum;
1529 if (Accum == NoClass)
1531 if (Accum == Integer || Field == Integer)
1534 Accum == X87 || Accum == X87Up)