Home | History | Annotate | Download | only in IR

Lines Matching refs:AlignType

105   retval.AlignType = align_type;
114 return (AlignType == rhs.AlignType
257 AlignTypeEnum AlignType;
260 case 'i': AlignType = INTEGER_ALIGN; break;
261 case 'v': AlignType = VECTOR_ALIGN; break;
262 case 'f': AlignType = FLOAT_ALIGN; break;
263 case 'a': AlignType = AGGREGATE_ALIGN; break;
264 case 's': AlignType = STACK_ALIGN; break;
281 setAlignment(AlignType, ABIAlign, PrefAlign, Size);
327 if (Alignments[i].AlignType == (unsigned)align_type &&
357 unsigned DataLayout::getAlignmentInfo(AlignTypeEnum AlignType,
364 if (Alignments[i].AlignType == (unsigned)AlignType &&
369 if (AlignType == INTEGER_ALIGN &&
370 Alignments[i].AlignType == INTEGER_ALIGN) {
388 if (AlignType == INTEGER_ALIGN) {
391 assert(AlignType == VECTOR_ALIGN && "Unknown alignment type!");
499 OS << '-' << (char)AI.AlignType << AI.TypeBitWidth << ':'
563 int AlignType = -1;
592 AlignType = INTEGER_ALIGN;
602 AlignType = FLOAT_ALIGN;
606 AlignType = VECTOR_ALIGN;
612 return getAlignmentInfo((AlignTypeEnum)AlignType, getTypeSizeInBits(Ty),
629 if (Alignments[i].AlignType == STACK_ALIGN)