Lines Matching refs:Alignment
125 Alignment = STI->getTargetLowering()->getMinFunctionAlignment(); in MachineFunction()
130 Alignment = std::max(Alignment, in MachineFunction()
134 Alignment = AlignAllFunctions; in MachineFunction()
583 int MachineFrameInfo::CreateStackObject(uint64_t Size, unsigned Alignment, in CreateStackObject() argument
586 Alignment = clampStackAlignment(!StackRealignable, Alignment, StackAlignment); in CreateStackObject()
587 Objects.push_back(StackObject(Size, Alignment, 0, false, isSS, Alloca, in CreateStackObject()
591 ensureMaxAlignment(Alignment); in CreateStackObject()
598 unsigned Alignment) { in CreateSpillStackObject() argument
599 Alignment = clampStackAlignment(!StackRealignable, Alignment, StackAlignment); in CreateSpillStackObject()
600 CreateStackObject(Size, Alignment, true); in CreateSpillStackObject()
602 ensureMaxAlignment(Alignment); in CreateSpillStackObject()
609 int MachineFrameInfo::CreateVariableSizedObject(unsigned Alignment, in CreateVariableSizedObject() argument
612 Alignment = clampStackAlignment(!StackRealignable, Alignment, StackAlignment); in CreateVariableSizedObject()
613 Objects.push_back(StackObject(0, Alignment, 0, false, false, Alloca, true)); in CreateVariableSizedObject()
614 ensureMaxAlignment(Alignment); in CreateVariableSizedObject()
741 OS << ", align=" << SO.Alignment; in print()
953 unsigned Alignment) { in getConstantPoolIndex() argument
954 assert(Alignment && "Alignment must be specified!"); in getConstantPoolIndex()
955 if (Alignment > PoolAlignment) PoolAlignment = Alignment; in getConstantPoolIndex()
963 if ((unsigned)Constants[i].getAlignment() < Alignment) in getConstantPoolIndex()
964 Constants[i].Alignment = Alignment; in getConstantPoolIndex()
968 Constants.push_back(MachineConstantPoolEntry(C, Alignment)); in getConstantPoolIndex()
973 unsigned Alignment) { in getConstantPoolIndex() argument
974 assert(Alignment && "Alignment must be specified!"); in getConstantPoolIndex()
975 if (Alignment > PoolAlignment) PoolAlignment = Alignment; in getConstantPoolIndex()
980 int Idx = V->getExistingMachineCPValue(this, Alignment); in getConstantPoolIndex()
986 Constants.push_back(MachineConstantPoolEntry(V, Alignment)); in getConstantPoolIndex()