Lines Matching defs:ArraySize
90 llvm::Value *ArraySize) {
91 auto Alloca = CreateTempAlloca(Ty, Name, ArraySize);
100 llvm::Value *ArraySize,
102 auto Alloca = CreateTempAllocaWithoutCast(Ty, Align, Name, ArraySize);
113 // When ArraySize is nullptr, alloca is inserted at AllocaInsertPt,
116 if (!ArraySize)
127 /// block if \p ArraySize is nullptr, otherwise inserts it at the current
131 llvm::Value *ArraySize) {
133 if (ArraySize)
134 Alloca = Builder.CreateAlloca(Ty, ArraySize, Name);
138 ArraySize, Name, AllocaInsertPt->getIterator());
171 /*ArraySize=*/nullptr, Alloca);
725 llvm::Value *ArraySize) {
785 if (ArraySize)
786 Size = Builder.CreateMul(Size, ArraySize);
4583 // Idx = ArraySize - 1;