Searched refs:TySize (Results 1 - 14 of 14) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp159 uint64_t TySize = local
162 TySize *= CUI->getZExtValue(); // Get total allocated size.
163 if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects.
168 TySize, 0, /*IsImmutable=*/false, /*isAliased=*/true);
171 FrameIndex = MF->getFrameInfo().CreateStackObject(TySize, Alignment,
H A DSelectionDAGBuilder.cpp3893 uint64_t TySize = DL.getTypeAllocSize(Ty); local
3904 DAG.getConstant(TySize, dl, IntPtr));
7888 uint64_t TySize = DL.getTypeAllocSize(Ty); local
7891 TySize, DL.getPrefTypeAlign(Ty), false);
9078 uint64_t TySize = DL.getTypeAllocSize(CLI.RetTy); local
9082 MF.getFrameInfo().CreateStackObject(TySize, Alignment, false);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp802 unsigned TySize = DL.getTypeSizeInBits(Ty); local
803 if ((TySize % 8) != 0)
817 unsigned VF = VecRegSize / TySize;
821 if (TySize > VecRegSize / 2 ||
822 (VecTy && TTI.getLoadVectorFactor(VF, TySize, TySize / 8, VecTy) == 0))
856 unsigned TySize = DL.getTypeSizeInBits(Ty); local
857 if ((TySize % 8) != 0)
864 unsigned VF = VecRegSize / TySize;
868 if (TySize > VecRegSiz
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp123 const unsigned TySize = Ty.getSizeInBits(); local
126 assert((Ty.isScalar() || Ty.isPointer()) && TySize == 32 &&
133 assert((TySize == 32 || TySize == 64) &&
135 if (TySize == 32)
186 const unsigned TySize = Ty.getSizeInBits(); local
192 assert(((Ty.isScalar() && TySize == 32) ||
193 (Ty.isPointer() && TySize == 32 && MemSizeInBytes == 4)) &&
195 (void)TySize;
223 assert(((TySize
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp897 unsigned TySize = Ty.getSizeInBytes(); local
898 while (TySize > Size) {
919 TySize = Size;
922 TySize = NewTySize;
930 Size -= TySize;
1048 unsigned TySize = Ty.getSizeInBytes(); local
1049 if (TySize > Size) {
1053 DstOff -= TySize - Size;
1083 Size -= TySize;
H A DIRTranslator.cpp1910 Register TySize =
1912 MIRBuilder.buildMul(AllocSize, NumElts, TySize);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DTargetInfo.cpp3271 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 < StackSlotSiz
10699 int TySize = getContext().getTypeSize(Ty); local
[all...]
H A DCGOpenMPRuntimeNVPTX.cpp3295 for (unsigned TySize = 4; TySize > 0 && RealTySize > 0; TySize /=2) {
3296 unsigned NumIters = RealTySize / TySize;
3300 C.toBits(CharUnits::fromQuantity(TySize)), /*Signed=*/1);
3302 CharUnits Align = CharUnits::fromQuantity(TySize);
3435 RealTySize %= TySize;
H A DCGExpr.cpp731 uint64_t TySize = CGM.getMinimumObjectSize(Ty).getQuantity(); local
732 llvm::Value *Size = llvm::ConstantInt::get(IntPtrTy, TySize);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUCodeGenPrepare.cpp319 int TySize = DL.getTypeSizeInBits(Ty); local
322 return I.isSimple() && TySize < 32 && Alignment >= 4 && DA->isUniform(&I);
1311 int TySize = Mod->getDataLayout().getTypeSizeInBits(I.getType()); local
1312 Type *IntNTy = Builder.getIntNTy(TySize);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStack.cpp666 uint64_t TySize = DL.getTypeAllocSize(Ty); local
667 Value *Size = IRB.CreateMul(ArraySize, ConstantInt::get(IntPtrTy, TySize));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1152 if (int64_t TySize = DL.getTypeAllocSize(Ty)) {
1153 FirstIdx = Offset/TySize;
1154 Offset -= FirstIdx*TySize;
1156 // Handle hosts where % returns negative instead of values [0..TySize).
1159 Offset += TySize;
1162 assert((uint64_t)Offset < (uint64_t)TySize && "Out of range offset");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp253 /// TySize is the index into the list of element types listed above
256 size_t Stride, size_t TySize);
2650 size_t Stride, size_t TySize) {
2651 assert(TySize < Stride && "Invalid TySize");
2680 uint16_t Opcode = Opcodes[TySize];
2647 SelectBaseMVE_VMLLDAV(SDNode *N, bool Predicated, const uint16_t *OpcodesS, const uint16_t *OpcodesU, size_t Stride, size_t TySize) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp14716 const TypeSize &TySize = Ty->getPrimitiveSizeInBits(); local
14717 if (TySize.isScalable() && TySize.getKnownMinSize() > 128)

Completed in 532 milliseconds