Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Alignment

143   /// Alignment - The known alignment of the first store.
144 unsigned Alignment;
230 unsigned Alignment, Instruction *Inst);
241 unsigned Alignment, Instruction *Inst) {
255 R.Alignment = Alignment;
277 I->Alignment = Alignment;
446 // Determine alignment
447 unsigned Alignment = Range.Alignment;
448 if (Alignment == 0) {
451 Alignment = DL.getABITypeAlignment(EltType);
455 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment);
852 // If dest is not aligned enough and we can't increase its alignment then
931 // If the destination wasn't sufficiently aligned then increase its alignment.
933 assert(isa<AllocaInst>(cpyDest) && "Can only increase alloca alignment!");
1010 // Make sure to use the lesser of the alignment of the source and the dest
1012 // the alignment past what can be read from or written to.
1066 // If Dest is aligned, and SrcSize is constant, use the minimum alignment
1288 // Get the alignment of the byval. If the call doesn't specify the alignment,
1294 // source of the memcpy to the alignment we need. If we fail, we bail out.