Lines Matching refs:Align
666 // addr = alloca type, old_size, align
669 // tmp = alloca i8, new_size, max(align, 32)
796 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
2089 const unsigned Align = std::max(kAllocaRzSize, AI->getAlignment());
2116 // AdditionalChunkSize = Align + PartialPadding + kAllocaRzSize
2117 // Align is added to locate left redzone, PartialPadding for possible
2120 ConstantInt::get(IntptrTy, Align + kAllocaRzSize), PartialPadding);
2124 // Insert new alloca with new NewSize and Align params.
2126 NewAlloca->setAlignment(Align);
2128 // NewAddress = Address + Align
2130 ConstantInt::get(IntptrTy, Align));