Lines Matching defs:MinABIStackAlignInBytes
23 const unsigned MinABIStackAlignInBytes, StackAlignInBytes;
31 ABIInfo(CGT), IsO32(_IsO32), MinABIStackAlignInBytes(IsO32 ? 4 : 8),
130 llvm::IntegerType::get(getVMContext(), MinABIStackAlignInBytes * 8);
132 // Add (TySize / MinABIStackAlignInBytes) args of IntTy.
133 for (unsigned N = TySize / (MinABIStackAlignInBytes * 8); N; --N)
137 unsigned R = TySize % (MinABIStackAlignInBytes * 8);
203 if (OrigOffset + MinABIStackAlignInBytes > Offset)
217 Align = std::clamp(Align, (uint64_t)MinABIStackAlignInBytes,
228 Offset = OrigOffset + MinABIStackAlignInBytes;
360 uint64_t Offset = RetInfo.isIndirect() ? MinABIStackAlignInBytes : 0;
390 // MinABIStackAlignInBytes is the size of argument slots on the stack.
391 CharUnits ArgSlotSize = CharUnits::fromQuantity(MinABIStackAlignInBytes);