Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:numElements

496   uint64_t NumElements = Array->getSize().getZExtValue();
499 llvm::ConstantInt::get(Counter->getType(), NumElements);
1514 llvm::Value *numElements =
1517 EmitCXXAggrConstructorCall(ctor, numElements, arrayBegin,
1525 /// \param numElements the number of elements in the array;
1532 llvm::Value *numElements,
1538 // It's legal for numElements to be zero. This can happen both
1547 = dyn_cast<llvm::ConstantInt>(numElements);
1555 llvm::Value *iszero = Builder.CreateIsNull(numElements, "isempty");
1561 llvm::Value *arrayEnd = Builder.CreateInBoundsGEP(arrayBegin, numElements,