Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:merge

817   /// merge - Implement the X86_64 ABI merging algorithm.
819 /// Merge an accumulating classification \arg Accum with a field
823 /// always be either NoClass or the result of a previous merge
826 static Class merge(Class Accum, Class Field);
1013 X86_64ABIInfo::Class X86_64ABIInfo::merge(Class Accum, Class Field) {
1038 "Invalid accumulated classification during merge.");
1196 // Otherwise implement simplified merge. We could be smarter about
1211 Lo = merge(Lo, FieldLo);
1212 Hi = merge(Hi, FieldHi);
1264 Lo = merge(Lo, FieldLo);
1265 Hi = merge(Hi, FieldHi);
1328 Lo = merge(Lo, FieldLo);
1329 Hi = merge(Hi, FieldHi);
1777 // If a high part was specified, merge it together with the low part. It is
1902 // If a high part was specified, merge it together with the low part. It is