Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:numElements

493   uint64_t NumElements = Array->getSize().getZExtValue();
496 llvm::ConstantInt::get(Counter->getType(), NumElements);
1113 llvm::Value *numElements =
1116 EmitCXXAggrConstructorCall(ctor, numElements, arrayBegin,
1124 /// \param numElements the number of elements in the array;
1133 llvm::Value *numElements,
1139 // It's legal for numElements to be zero. This can happen both
1148 = dyn_cast<llvm::ConstantInt>(numElements);
1156 llvm::Value *iszero = Builder.CreateIsNull(numElements, "isempty");
1162 llvm::Value *arrayEnd = Builder.CreateInBoundsGEP(arrayBegin, numElements,