Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Accum

1864   /// Merge an accumulating classification \arg Accum with a field
1867 /// \param Accum - The accumulating classification. This should
1871 static Class merge(Class Accum, Class Field);
2277 X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum, Class Field) {
2299 // Accum should never be memory (we should have returned) or
2301 assert((Accum != Memory && Accum != ComplexX87) &&
2303 if (Accum == Field || Field == NoClass)
2304 return Accum;
2307 if (Accum == NoClass)
2309 if (Accum == Integer || Field == Integer)
2312 Accum == X87 || Accum == X87Up)