• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/

Lines Matching refs:TySize

3271   unsigned TySize = (unsigned)Context.getTypeSize(Ty);
3272 if (TySize <= StartBit)
4064 uint64_t TySize = SizeAlign.first.getQuantity();
4071 CGF.Builder.CreateMemCpy(Tmp, RegAddr, TySize, false);
5835 CharUnits TySize = getContext().getTypeSizeInChars(Ty);
5841 int RegSize = IsIndirect ? 8 : TySize.getQuantity();
5969 TySize < SlotSize) {
5970 CharUnits Offset = SlotSize - TySize;
6012 StackSize = TySize.alignTo(StackSlotSize);
6022 TySize < StackSlotSize) {
6023 CharUnits Offset = StackSlotSize - TySize;
6800 CharUnits TySize = getContext().getTypeSizeInChars(Ty);
6807 if (TySize > CharUnits::fromQuantity(16) && isIllegalVectorType(Ty)) {
6812 } else if (TySize > CharUnits::fromQuantity(16) &&
6833 std::pair<CharUnits, CharUnits> TyInfo = { TySize, TyAlignForABI };
7577 void CoerceToIntArgs(uint64_t TySize,
7579 llvm::Type* HandleAggregates(QualType Ty, uint64_t TySize) const;
7664 uint64_t TySize, SmallVectorImpl<llvm::Type *> &ArgList) const {
7668 // Add (TySize / MinABIStackAlignInBytes) args of IntTy.
7669 for (unsigned N = TySize / (MinABIStackAlignInBytes * 8); N; --N)
7673 unsigned R = TySize % (MinABIStackAlignInBytes * 8);
7681 llvm::Type* MipsABIInfo::HandleAggregates(QualType Ty, uint64_t TySize) const {
7685 CoerceToIntArgs(TySize, ArgList);
7696 CoerceToIntArgs(TySize, ArgList);
7702 assert(!(TySize % 8) && "Size of structure must be multiple of 8.");
7731 CoerceToIntArgs(TySize - LastOffset, IntArgList);
7750 uint64_t TySize = getContext().getTypeSize(Ty);
7756 Offset = CurrOffset + llvm::alignTo(TySize, Align * 8) / 8;
7760 if (TySize == 0)
7772 ABIArgInfo::getDirect(HandleAggregates(Ty, TySize), 0,
7954 int TySize = getContext().getTypeSize(Ty);
7957 if (Ty->isUnsignedIntegerOrEnumerationType() && TySize == 32)
10699 int TySize = getContext().getTypeSize(Ty);
10701 if (XLen == 64 && Ty->isUnsignedIntegerOrEnumerationType() && TySize == 32)