Lines Matching defs:LowerBound
3934 // Idx = LowerBound ?: 0;
3935 if (auto *LowerBound = E->getLowerBound()) {
3937 EmitScalarExpr(LowerBound), IntPtrTy,
3938 LowerBound->getType()->hasSignedIntegerRepresentation());
3949 // Idx = LowerBound + Length - 1;
3954 auto *LowerBound = E->getLowerBound();
3956 if (LowerBound) {
3957 if (Optional<llvm::APSInt> LB = LowerBound->getIntegerConstantExpr(C)) {
3959 LowerBound = nullptr;
3964 else if (!LowerBound)
3967 if (Length || LowerBound) {
3969 LowerBound
3971 EmitScalarExpr(LowerBound), IntPtrTy,
3972 LowerBound->getType()->hasSignedIntegerRepresentation())
3983 if (Length && LowerBound) {