HomeSort by: relevance | last modified time | path
    Searched refs:AllocaSize (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SafeStack.cpp 200 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) {
302 AllocaSize))
319 AllocaPtr, AllocaSize))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 196 unsigned AllocaSize = Ty->isSized() ? DL.getTypeAllocSize(Ty) : 0;
197 if (AllocaSize > MaxAlloca)
1205 uint64_t AllocaSize = 0;
1217 AllocaSize += DL.getTypeAllocSize(AI->getAllocatedType());
1220 if (AllocaSize > ArgAllocaCutoff) {
1221 AllocaSize = 0;
1226 if (AllocaSize)
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
StackLifetime.cpp 78 int64_t AllocaSize = AllocaSizeInBits.getValue() / 8;
85 if (LifetimeSize != -1 && LifetimeSize != AllocaSize)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 4435 uint64_t AllocaSize =
4438 if (AllocaSize <= MaxBitVectorSize) {
4441 SmallBitVector SplittableOffset(AllocaSize + 1, true);
4444 O < S.endOffset() && O < AllocaSize; O++)
4451 if ((S.beginOffset() > AllocaSize || SplittableOffset[S.beginOffset()]) &&
4452 (S.endOffset() > AllocaSize || SplittableOffset[S.endOffset()]))
4469 if (S.beginOffset() == 0 && S.endOffset() >= AllocaSize)
4500 uint64_t AllocaSize =
4503 uint64_t Size = std::min(AllocaSize, P.size() * SizeOfByte);
4519 uint64_t AllocaSize
    [all...]
MemCpyOptimizer.cpp 1279 if (Optional<TypeSize> AllocaSize = Alloca->getAllocationSizeInBits(DL))
1280 if (*AllocaSize == LTSize->getValue() * 8)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 163 uint64_t AllocaSize = DL.getTypeStoreSize(AI->getAllocatedType());
164 if (!AllocaSize)
167 APInt(64, AllocaSize), DL);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
InlineFunction.cpp 2204 ConstantInt *AllocaSize = nullptr;
2222 AllocaSize = ConstantInt::get(Type::getInt64Ty(AI->getContext()),
2227 builder.CreateLifetimeStart(AI, AllocaSize);
2237 IRBuilder<>(RI).CreateLifetimeEnd(AI, AllocaSize);

Completed in 28 milliseconds