Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Alignment

126   /// \brief Gets an llvm type of size NumBytes and alignment 1.
253 // and updates the alignment of the capstone to be equal of the alignment
256 // have been computed and needs to know the alignment of the record in
373 // cross an alignment boundary break a run and start a new one.
570 CharUnits Alignment = CharUnits::One();
579 // If any member falls at an offset that it not a multiple of its alignment,
585 Alignment = std::max(Alignment, getAlignment(Member->Data));
588 // record's alignment, it must be packed.
589 if (Members.back().Offset % Alignment)
592 // sub-object's alignment, it must be packed. We cannot have a packed
596 // Update the alignment of the sentinal.
598 Members.back().Data = getIntNType(Context.toBits(Alignment));