Home | History | Annotate | Download | only in IR

Lines Matching refs:AlignType

106   retval.AlignType = align_type;
115 return (AlignType == rhs.AlignType
188 setAlignment((AlignTypeEnum)E.AlignType, E.ABIAlign, E.PrefAlign,
276 AlignTypeEnum AlignType;
279 case 'i': AlignType = INTEGER_ALIGN; break;
280 case 'v': AlignType = VECTOR_ALIGN; break;
281 case 'f': AlignType = FLOAT_ALIGN; break;
282 case 'a': AlignType = AGGREGATE_ALIGN; break;
288 assert((AlignType != AGGREGATE_ALIGN || Size == 0) &&
302 setAlignment(AlignType, ABIAlign, PrefAlign, Size);
372 if (Elem.AlignType == (unsigned)align_type &&
410 unsigned DataLayout::getAlignmentInfo(AlignTypeEnum AlignType,
417 if (Alignments[i].AlignType == (unsigned)AlignType &&
422 if (AlignType == INTEGER_ALIGN &&
423 Alignments[i].AlignType == INTEGER_ALIGN) {
441 if (AlignType == INTEGER_ALIGN) {
444 assert(AlignType == VECTOR_ALIGN && "Unknown alignment type!");
563 OS << '-' << (char)AI.AlignType;
630 int AlignType = -1;
659 AlignType = INTEGER_ALIGN;
669 AlignType = FLOAT_ALIGN;
673 AlignType = VECTOR_ALIGN;
679 return getAlignmentInfo((AlignTypeEnum)AlignType, getTypeSizeInBits(Ty),