Lines Matching defs:MinABIStackAlignInBytes
23 const unsigned MinABIStackAlignInBytes, StackAlignInBytes;
31 ABIInfo(CGT), IsO32(_IsO32), MinABIStackAlignInBytes(IsO32 ? 4 : 8),
113 llvm::IntegerType::get(getVMContext(), MinABIStackAlignInBytes * 8);
115 // Add (TySize / MinABIStackAlignInBytes) args of IntTy.
116 for (unsigned N = TySize / (MinABIStackAlignInBytes * 8); N; --N)
120 unsigned R = TySize % (MinABIStackAlignInBytes * 8);
186 if (OrigOffset + MinABIStackAlignInBytes > Offset)
200 Align = std::clamp(Align, (uint64_t)MinABIStackAlignInBytes,
211 Offset = OrigOffset + MinABIStackAlignInBytes;
343 uint64_t Offset = RetInfo.isIndirect() ? MinABIStackAlignInBytes : 0;
373 // MinABIStackAlignInBytes is the size of argument slots on the stack.
374 CharUnits ArgSlotSize = CharUnits::fromQuantity(MinABIStackAlignInBytes);