Lines Matching defs:LowerBound
4525 // Idx = LowerBound ?: 0;
4526 if (auto *LowerBound = E->getLowerBound()) {
4528 EmitScalarExpr(LowerBound), IntPtrTy,
4529 LowerBound->getType()->hasSignedIntegerRepresentation());
4540 // Idx = LowerBound + Length - 1;
4545 auto *LowerBound = E->getLowerBound();
4547 if (LowerBound) {
4549 LowerBound->getIntegerConstantExpr(C)) {
4551 LowerBound = nullptr;
4556 else if (!LowerBound)
4559 if (Length || LowerBound) {
4561 LowerBound
4563 EmitScalarExpr(LowerBound), IntPtrTy,
4564 LowerBound->getType()->hasSignedIntegerRepresentation())
4575 if (Length && LowerBound) {