Home
last modified time | relevance | path

Searched refs:getAllocatedType (Results 1 – 25 of 44) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineLoadStoreAlloca.cpp175 uint64_t AllocaSize = DL.getTypeStoreSize(AI->getAllocatedType()); in isDereferenceableForAllocaSize()
198 Type *NewTy = ArrayType::get(AI.getAllocatedType(), C->getZExtValue()); in simplifyAllocaArraySize()
345 if (AI.getAllocatedType()->isSized()) { in visitAllocaInst()
349 MaybeAlign(DL.getPrefTypeAlignment(AI.getAllocatedType()))); in visitAllocaInst()
354 if (DL.getTypeAllocSize(AI.getAllocatedType()) == 0) { in visitAllocaInst()
371 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() || in visitAllocaInst()
372 DL.getTypeAllocSize(EntryAI->getAllocatedType()) != 0) { in visitAllocaInst()
381 MaybeAlign(DL.getPrefTypeAlignment(EntryAI->getAllocatedType()))); in visitAllocaInst()
801 if (!AI->getAllocatedType()->isSized()) in isObjectSizeLessThanOrEq()
808 uint64_t TypeSize = DL.getTypeAllocSize(AI->getAllocatedType()); in isObjectSizeLessThanOrEq()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSROA.cpp666 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())), AS(AS) {} in SliceBuilder()
2327 NewAllocaTy(NewAI.getAllocatedType()), in AllocaSliceRewriter()
2331 DL.getTypeSizeInBits(NewAI.getAllocatedType())) in AllocaSliceRewriter()
2434 MaybeAlign(NewAI.getAlignment()), NewAI.getAllocatedType()); in getSliceAlign()
2462 Value *V = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI, in rewriteVectorizedLoadInst()
2470 Value *V = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI, in rewriteIntegerLoad()
2515 LoadInst *NewLI = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI, in visitLoadInst()
2613 Value *Old = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI, in rewriteVectorizedStoreInst()
2630 Value *Old = IRB.CreateAlignedLoad(NewAI.getAllocatedType(), &NewAI, in rewriteIntegerStore()
2779 Type *AllocaTy = NewAI.getAllocatedType(); in visitMemSetInst()
[all …]
DMemCpyOptimizer.cpp750 uint64_t srcSize = DL.getTypeAllocSize(srcAlloca->getAllocatedType()) * in performCallSlotOptzn()
765 uint64_t destSize = DL.getTypeAllocSize(A->getAllocatedType()) * in performCallSlotOptzn()
800 srcAlign = DL.getABITypeAlignment(srcAlloca->getAllocatedType()); in performCallSlotOptzn()
DRewriteStatepointsForGC.cpp1651 cast<AllocaInst>(Alloca)->getAllocatedType(), in insertRelocationStores()
1781 auto PT = cast<PointerType>(AI->getAllocatedType()); in relocationViaAlloca()
1831 new LoadInst(Alloca->getAllocatedType(), Alloca, "", in relocationViaAlloca()
1838 new LoadInst(Alloca->getAllocatedType(), Alloca, "", Use); in relocationViaAlloca()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUPromoteAlloca.cpp367 Type *AT = Alloca->getAllocatedType(); in tryPromoteAllocaToVector()
728 Type *AllocaTy = I.getAllocatedType(); in handleAlloca()
766 Align = DL.getABITypeAlignment(I.getAllocatedType()); in handleAlloca()
797 Type *GVTy = ArrayType::get(I.getAllocatedType(), WorkGroupSize); in handleAlloca()
DAMDGPUInline.cpp142 AllocaSize += DL.getTypeAllocSize(AI->getAllocatedType()); in getInlineThreshold()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSafeStack.cpp221 uint64_t Size = DL.getTypeAllocSize(AI->getAllocatedType()); in getStaticAllocaAllocationSize()
503 Type *Ty = StackGuardSlot->getAllocatedType(); in moveStaticAllocasToUnsafeStack()
523 Type *Ty = AI->getAllocatedType(); in moveStaticAllocasToUnsafeStack()
652 Type *Ty = AI->getAllocatedType(); in moveDynamicAllocasToUnsafeStack()
DGCRootLowering.cpp164 ConstantPointerNull::get(cast<PointerType>(Root->getAllocatedType())), in InsertRootInitializers()
DShadowStackGCLowering.cpp161 EltTys.push_back(Roots[I].second->getAllocatedType()); in GetConcreteStackEntryType()
DStackProtector.cpp318 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) { in RequiresStackProtector()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemoryBuiltins.cpp633 if (!I.getAllocatedType()->isSized()) in visitAllocaInst()
636 APInt Size(IntTyBits, DL.getTypeAllocSize(I.getAllocatedType())); in visitAllocaInst()
918 if (!I.getAllocatedType()->isSized()) in visitAllocaInst()
925 DL.getTypeAllocSize(I.getAllocatedType())); in visitAllocaInst()
DStackSafetyAnalysis.cpp134 uint64_t Size = DL.getTypeAllocSize(AI->getAllocatedType()); in getStaticAllocaAllocationSize()
DInlineCost.cpp723 Type *Ty = I.getAllocatedType(); in visitAlloca()
733 Type *Ty = I.getAllocatedType(); in visitAlloca()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64StackTagging.cpp396 AI.getAllocatedType()->isSized() && AI.isStaticAlloca() && in isInterestingAlloca()
476 Info.AI->getAllocatedType(), in alignAndPadAlloca()
478 : Info.AI->getAllocatedType(); in alignAndPadAlloca()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstruction.cpp386 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() && in haveSameSpecialState()
DValue.cpp661 DerefBytes = DL.getTypeStoreSize(AI->getAllocatedType()); in getPointerDereferenceableBytes()
716 Type *AllocatedType = AI->getAllocatedType(); in getPointerAlignment()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DPromoteMemoryToRegister.cpp639 Values[i] = UndefValue::get(Allocas[i]->getAllocatedType()); in run()
853 PN = PHINode::Create(Allocas[AllocaNo]->getAllocatedType(), getNumPreds(BB), in QueuePhiNode()
DFunctionComparator.cpp537 if (int Res = cmpTypes(AI->getAllocatedType(), in cmpOperations()
538 cast<AllocaInst>(R)->getAllocatedType())) in cmpOperations()
DLocal.cpp1381 (AI->getAllocatedType() && AI->getAllocatedType()->isArrayTy()); in isArray()
1386 return AI->getAllocatedType() && AI->getAllocatedType()->isStructTy(); in isStructure()
DEvaluator.cpp471 Type *Ty = AI->getAllocatedType(); in EvaluateBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86WinEHState.cpp781 Value *StateField = Builder.CreateStructGEP(RegNode->getAllocatedType(), in addStateStores()
793 Value *StateField = Builder.CreateStructGEP(RegNode->getAllocatedType(), in insertStateNumberStore()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DInliner.cpp190 ArrayType *ATy = dyn_cast<ArrayType>(AI->getAllocatedType()); in mergeInlinedArrayAllocas()
235 unsigned TypeAlign = DL.getABITypeAlignment(AI->getAllocatedType()); in mergeInlinedArrayAllocas()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp766 Type *Ty = AI.getAllocatedType(); in getAllocaSizeInBytes()
1068 return (AI.getAllocatedType()->isSized() && in isInterestingAlloca()
1170 Type *AllocatedType = AI->getAllocatedType(); in sanitizeFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/
DCoroFrame.cpp444 Ty = AI->getAllocatedType(); in buildFrameType()
1199 auto ValueTy = Alloca->getAllocatedType(); in emitSetAndGetSwiftErrorValueAround()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DFunctionLoweringInfo.cpp136 Type *Ty = AI->getAllocatedType(); in set()

12