Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Alignment

68   Alignment = TM.getTargetLowering()->getMinFunctionAlignment();
69 // FIXME: Shouldn't use pref alignment if explicit alignment is set on Fn.
71 Alignment = std::max(Alignment,
441 // The alignment of the frame index can be determined from its offset from
503 OS << ", align=" << SO.Alignment;
546 /// getEntryAlignment - Return the alignment of each entry in the jump table.
548 // The alignment of a jump table entry is the alignment of int32 unless the
550 // alignment.
689 /// alignment for the object.
692 unsigned Alignment) {
693 assert(Alignment && "Alignment must be specified!");
694 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
702 if ((unsigned)Constants[i].getAlignment() < Alignment)
703 Constants[i].Alignment = Alignment;
707 Constants.push_back(MachineConstantPoolEntry(C, Alignment));
712 unsigned Alignment) {
713 assert(Alignment && "Alignment must be specified!");
714 if (Alignment > PoolAlignment) PoolAlignment = Alignment;
719 int Idx = V->getExistingMachineCPValue(this, Alignment);
725 Constants.push_back(MachineConstantPoolEntry(V, Alignment));