Lines Matching defs:LowerBound
4430 // Idx = LowerBound ?: 0;
4431 if (auto *LowerBound = E->getLowerBound()) {
4433 EmitScalarExpr(LowerBound), IntPtrTy,
4434 LowerBound->getType()->hasSignedIntegerRepresentation());
4445 // Idx = LowerBound + Length - 1;
4450 auto *LowerBound = E->getLowerBound();
4452 if (LowerBound) {
4454 LowerBound->getIntegerConstantExpr(C)) {
4456 LowerBound = nullptr;
4461 else if (!LowerBound)
4464 if (Length || LowerBound) {
4466 LowerBound
4468 EmitScalarExpr(LowerBound), IntPtrTy,
4469 LowerBound->getType()->hasSignedIntegerRepresentation())
4480 if (Length && LowerBound) {