Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:numElements

502   uint64_t NumElements = Array->getSize().getZExtValue();
505 llvm::ConstantInt::get(Counter->getType(), NumElements);
1513 llvm::Value *numElements =
1516 EmitCXXAggrConstructorCall(ctor, numElements, arrayBegin,
1524 /// \param numElements the number of elements in the array;
1531 llvm::Value *numElements,
1537 // It's legal for numElements to be zero. This can happen both
1546 = dyn_cast<llvm::ConstantInt>(numElements);
1554 llvm::Value *iszero = Builder.CreateIsNull(numElements, "isempty");
1560 llvm::Value *arrayEnd = Builder.CreateInBoundsGEP(arrayBegin, numElements,