Searched refs:AllocaSize (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInline.cpp129 uint64_t AllocaSize = 0;
141 AllocaSize += DL.getTypeAllocSize(AI->getAllocatedType());
144 if (AllocaSize > ArgAllocaCutoff) {
145 AllocaSize = 0;
150 if (AllocaSize)
H A DAMDGPUTargetTransformInfo.cpp176 unsigned AllocaSize = Ty->isSized() ? DL.getTypeAllocSize(Ty) : 0; local
177 if (AllocaSize > MaxAlloca)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DSafeStack.cpp200 bool IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize);
203 const Value *AllocaPtr, uint64_t AllocaSize);
205 uint64_t AllocaSize);
236 const Value *AllocaPtr, uint64_t AllocaSize) {
246 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AllocaSize));
266 uint64_t AllocaSize) {
278 return IsAccessSafe(U, Len->getZExtValue(), AllocaPtr, AllocaSize);
284 bool SafeStack::IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize) { argument
302 AllocaSize))
319 AllocaPtr, AllocaSize))
235 IsAccessSafe(Value *Addr, uint64_t AccessSize, const Value *AllocaPtr, uint64_t AllocaSize) argument
264 IsMemIntrinsicSafe(const MemIntrinsic *MI, const Use &U, const Value *AllocaPtr, uint64_t AllocaSize) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp4387 uint64_t AllocaSize =
4390 if (AllocaSize <= MaxBitVectorSize) {
4393 SmallBitVector SplittableOffset(AllocaSize + 1, true);
4396 O < S.endOffset() && O < AllocaSize; O++)
4403 if ((S.beginOffset() > AllocaSize || SplittableOffset[S.beginOffset()]) &&
4404 (S.endOffset() > AllocaSize || SplittableOffset[S.endOffset()]))
4421 if (S.beginOffset() == 0 && S.endOffset() >= AllocaSize)
4452 uint64_t AllocaSize =
4455 uint64_t Size = std::min(AllocaSize, P.size() * SizeOfByte);
4473 uint64_t AllocaSize
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp162 uint64_t AllocaSize = DL.getTypeStoreSize(AI->getAllocatedType());
163 if (!AllocaSize)
166 APInt(64, AllocaSize), DL);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp2059 ConstantInt *AllocaSize = nullptr; local
2076 AllocaSize = ConstantInt::get(Type::getInt64Ty(AI->getContext()),
2081 builder.CreateLifetimeStart(AI, AllocaSize);
2091 IRBuilder<>(RI).CreateLifetimeEnd(AI, AllocaSize);

Completed in 124 milliseconds