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

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGGPUBuiltin.cpp 108 llvm::Type *AllocaTy = llvm::StructType::create(ArgTypes, "printf_args");
109 llvm::Value *Alloca = CreateTempAlloca(AllocaTy);
112 llvm::Value *P = Builder.CreateStructGEP(AllocaTy, Alloca, I - 1);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 415 Type *AllocaTy = Alloca->getAllocatedType();
416 auto *VectorTy = dyn_cast<FixedVectorType>(AllocaTy);
417 if (auto *ArrayTy = dyn_cast<ArrayType>(AllocaTy)) {
427 if (DL.getTypeSizeInBits(AllocaTy) * 4 > Limit) {
496 LLVM_DEBUG(dbgs() << " Converting alloca to vector " << *AllocaTy << " -> "
504 if (Inst->getType() == AllocaTy || Inst->getType()->isVectorTy())
524 if (SI->getValueOperand()->getType() == AllocaTy ||
856 Type *AllocaTy = I.getAllocatedType();
900 uint32_t AllocSize = WorkGroupSize * DL.getTypeAllocSize(AllocaTy);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 2011 Type *AllocaTy,
2014 uint64_t Size = DL.getTypeStoreSize(AllocaTy).getFixedSize();
2045 !canConvertValue(DL, AllocaTy, LI->getType())) {
2070 !canConvertValue(DL, ValueTy, AllocaTy)) {
2096 static bool isIntegerWideningViable(Partition &P, Type *AllocaTy,
2098 uint64_t SizeInBits = DL.getTypeSizeInBits(AllocaTy).getFixedSize();
2104 if (SizeInBits != DL.getTypeStoreSizeInBits(AllocaTy).getFixedSize())
2110 Type *IntTy = Type::getIntNTy(AllocaTy->getContext(), SizeInBits);
2111 if (!canConvertValue(DL, AllocaTy, IntTy) ||
2112 !canConvertValue(DL, IntTy, AllocaTy))
    [all...]

Completed in 19 milliseconds