Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:NumElements

498   uint64_t NumElements = Array->getSize().getZExtValue();
501 llvm::ConstantInt::get(Counter->getType(), NumElements);
1526 llvm::Value *numElements =
1529 EmitCXXAggrConstructorCall(ctor, numElements, arrayBegin,
1537 /// \param numElements the number of elements in the array;
1544 llvm::Value *numElements,
1550 // It's legal for numElements to be zero. This can happen both
1559 = dyn_cast<llvm::ConstantInt>(numElements);
1567 llvm::Value *iszero = Builder.CreateIsNull(numElements, "isempty");
1573 llvm::Value *arrayEnd = Builder.CreateInBoundsGEP(arrayBegin, numElements,