Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Alignment

433     static_assert(sizeof(Header) % llvm::AlignOf<T>::Alignment == 0,
1660 LValue MakeAddrLValue(llvm::Value *V, QualType T, CharUnits Alignment,
1662 return LValue::MakeAddr(Address(V, Alignment), T, getContext(),
1683 /// block. The caller is responsible for setting an appropriate alignment on
1691 /// default ABI alignment of the given LLVM type.
1693 /// IMPORTANT NOTE: This is *not* generally the right alignment for
1713 /// appropriate alignment. This routine should only be used when an temporary
1723 /// appropriate alignment.
2072 /// appropriate size and alignment for an object of type \p Type.
2074 QualType Type, CharUnits Alignment = CharUnits::Zero(),
2088 void EmitAlignmentAssumption(llvm::Value *PtrValue, unsigned Alignment,
2090 Builder.CreateAlignmentAssumption(CGM.getDataLayout(), PtrValue, Alignment,
2192 unsigned Alignment;
2193 ParamValue(llvm::Value *V, unsigned A) : Value(V), Alignment(A) {}
2203 bool isIndirect() const { return Alignment != 0; }
2213 return Address(Value, CharUnits::fromQuantity(Alignment));
3366 /// alignment of the pointee.
3372 /// information about the source of the alignment. Note that this
3383 /// just ignore the returned alignment when it isn't from an
3461 CharUnits Alignment;
3473 value.Alignment);