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

/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DSafeStack.cpp166 bool IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize);
169 const Value *AllocaPtr, uint64_t AllocaSize);
171 uint64_t AllocaSize);
211 const Value *AllocaPtr, uint64_t AllocaSize) {
221 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AllocaSize));
240 uint64_t AllocaSize) {
246 return IsAccessSafe(U, Len->getZExtValue(), AllocaPtr, AllocaSize);
252 bool SafeStack::IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize) { argument
270 AllocaSize))
286 AllocaPtr, AllocaSize))
210 IsAccessSafe(Value *Addr, uint64_t AccessSize, const Value *AllocaPtr, uint64_t AllocaSize) argument
238 IsMemIntrinsicSafe(const MemIntrinsic *MI, const Use &U, const Value *AllocaPtr, uint64_t AllocaSize) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp298 int AllocaSize = local
301 if (AllocaSize > LocalMemAvailable) {
314 LocalMemAvailable -= AllocaSize;
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp266 /// AllocaSize - The size of the alloca being considered in bytes.
267 unsigned AllocaSize; member in class:__anon3257::ConvertToScalarInfo
313 : AllocaSize(Size), DL(DL), ScalarLoadThreshold(SLT), IsNotTrivial(false),
350 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
366 unsigned BitWidth = AllocaSize * 8;
425 if (EltSize == AllocaSize)
431 if (Offset % EltSize == 0 && AllocaSize % EltSize == 0 &&
436 VectorTy = VectorType::get(In, AllocaSize/EltSize);
451 if (VInTy->getBitWidth()/8 == AllocaSize && Offset == 0) {
560 if (Len->getZExtValue() != AllocaSize || Offse
1509 uint64_t AllocaSize = DL.getTypeAllocSize(AI->getAllocatedType()); local
[all...]
H A DSROA.cpp4008 uint64_t AllocaSize = DL.getTypeSizeInBits(NewAI->getAllocatedType());
4010 uint64_t Size = std::min(AllocaSize, P.size() * SizeOfByte);
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1657 ConstantInt *AllocaSize = nullptr; local
1673 AllocaSize = ConstantInt::get(Type::getInt64Ty(AI->getContext()),
1678 builder.CreateLifetimeStart(AI, AllocaSize);
1685 IRBuilder<>(RI).CreateLifetimeEnd(AI, AllocaSize);

Completed in 81 milliseconds