Lines Matching defs:ArraySize
77 llvm::Value *ArraySize) {
78 auto Alloca = CreateTempAlloca(Ty, Name, ArraySize);
87 llvm::Value *ArraySize,
89 auto Alloca = CreateTempAllocaWithoutCast(Ty, Align, Name, ArraySize);
100 // When ArraySize is nullptr, alloca is inserted at AllocaInsertPt,
103 if (!ArraySize)
114 /// block if \p ArraySize is nullptr, otherwise inserts it at the current
118 llvm::Value *ArraySize) {
120 if (ArraySize)
121 Alloca = Builder.CreateAlloca(Ty, ArraySize, Name);
124 ArraySize, Name, &*AllocaInsertPt);
157 /*ArraySize=*/nullptr, Alloca);
687 llvm::Value *ArraySize) {
746 if (ArraySize)
747 Size = Builder.CreateMul(Size, ArraySize);
4488 // Idx = ArraySize - 1;