Searched refs:AllocaTy (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGCUDABuiltin.cpp102 llvm::Type *AllocaTy = llvm::StructType::create(ArgTypes, "printf_args"); local
103 llvm::Value *Alloca = CreateTempAlloca(AllocaTy);
106 llvm::Value *P = Builder.CreateStructGEP(AllocaTy, Alloca, I - 1);
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp393 ArrayType *AllocaTy = dyn_cast<ArrayType>(Alloca->getAllocatedType()); local
399 if (!AllocaTy ||
400 AllocaTy->getElementType()->isVectorTy() ||
401 AllocaTy->getNumElements() > 4) {
436 VectorType *VectorTy = arrayTypeToVecType(AllocaTy);
439 << *AllocaTy << " -> " << *VectorTy << '\n');
641 Type *AllocaTy = I.getAllocatedType(); local
669 uint32_t AllocSize = WorkGroupSize * DL.getTypeAllocSize(AllocaTy);
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1892 Type *AllocaTy,
1895 uint64_t Size = DL.getTypeStoreSize(AllocaTy);
1922 !canConvertValue(DL, AllocaTy, LI->getType())) {
1943 !canConvertValue(DL, ValueTy, AllocaTy)) {
1970 static bool isIntegerWideningViable(Partition &P, Type *AllocaTy,
1972 uint64_t SizeInBits = DL.getTypeSizeInBits(AllocaTy);
1978 if (SizeInBits != DL.getTypeStoreSizeInBits(AllocaTy))
1984 Type *IntTy = Type::getIntNTy(AllocaTy->getContext(), SizeInBits);
1985 if (!canConvertValue(DL, AllocaTy, IntTy) ||
1986 !canConvertValue(DL, IntTy, AllocaTy))
[all...]

Completed in 210 milliseconds