1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
import java.util.List;
import org.checkerframework.common.value.qual.IntRange;
// Because the analysis of loops isn't precise enough, the Value Checker issues
// warnings on this test case. So, suppress those warnings, but run the tests
// to make sure that dataflow reaches a fixed point.
// The expected errors in comments are the errors that should be issued if dataflow were precise
// enough.
@SuppressWarnings("value")
public class WidenedUpperBound {
void increment() {
int forIndex;
for (forIndex = 0; forIndex < 4323; forIndex++) {
@IntRange(from = 0, to = 4322) int x = forIndex;
}
//// ::error: (assignment.type.incompatible)
@IntRange(from = 0, to = 4322) int x = forIndex;
@IntRange(from = 4323) int y = forIndex;
int whileIndex = 0;
while (whileIndex < 1234) {
@IntRange(from = 0, to = 1233) int z = whileIndex;
whileIndex++;
}
//// ::error: (assignment.type.incompatible)
@IntRange(from = 0, to = 1233) int a = whileIndex;
@IntRange(from = 1234) int b = whileIndex;
int doWhileIndex = 0;
do {
@IntRange(from = 0, to = 2344) int c = doWhileIndex;
doWhileIndex++;
} while (doWhileIndex < 2345);
//// ::error: (assignment.type.incompatible)
@IntRange(from = 0, to = 2344) int d = doWhileIndex;
@IntRange(from = 2345) int e = doWhileIndex;
}
void decrement() {
int forIndex;
for (forIndex = 4323; forIndex > 0; forIndex--) {
@IntRange(from = 1, to = 4323) int x = forIndex;
}
//// ::error: (assignment.type.incompatible)
@IntRange(from = 1, to = 4323) int x = forIndex;
@IntRange(to = 0) int y = forIndex;
int whileIndex = 1234;
while (whileIndex > 0) {
@IntRange(from = 1, to = 1234) int z = whileIndex;
whileIndex--;
}
//// ::error: (assignment.type.incompatible)
@IntRange(from = 1, to = 1234) int a = whileIndex;
@IntRange(to = 0) int b = whileIndex;
int doWhileIndex = 2344;
do {
@IntRange(from = 1, to = 2344) int c = doWhileIndex;
doWhileIndex--;
} while (doWhileIndex > 0);
//// ::error: (assignment.type.incompatible)
@IntRange(from = 1, to = 2344) int d = doWhileIndex;
@IntRange(to = 0) int e = doWhileIndex;
}
static void test1() {
for (int i = 40; i > 0; i--) {
@IntRange(from = 1, to = 40) int x = i;
}
}
static void test1Explicit() {
for (@IntRange(from = 1, to = 40) int i = 40; i > 0; i--) {
@IntRange(from = 1, to = 40) int x = i;
}
}
static void test2() {
for (int i = 0; i < 18; i++) {
@IntRange(from = 0, to = 17) int x = i;
}
}
static void test2Explicit() {
for (@IntRange(from = 0, to = 17) int i = 0; i < 18; i++) {
@IntRange(from = 0, to = 17) int x = i;
}
}
static void test3() {
for (int i = 0; i < 18; i++) {
@IntRange(from = 0, to = 17) int x = i;
}
}
static void evenOdd(int param) {
for (int i = 0; i < 12; i++) {
if (i % 2 == 0) {
@IntRange(from = 0, to = 11) int z = i;
}
@IntRange(from = 0, to = 11) int x = i;
}
for (int i = 0; i < 12; i++) {
if (param == 0) {
@IntRange(from = 0, to = 11) int z = i;
}
@IntRange(from = 0, to = 11) int x = i;
}
}
static void evenOdd2(int param) {
for (int i = 0; i < 300; i++) {
if (i % 2 == 0) {
@IntRange(from = 0, to = 299) int z = i;
}
@IntRange(from = 0, to = 299) int x = i;
}
for (int i = 0; i < 399; i++) {
if (param == 0) {
@IntRange(from = 0, to = 398) int z = i;
}
@IntRange(from = 0, to = 398) int x = i;
}
}
void ifBlock(int param) {
int x = 10;
if (x < param) {
x = param;
}
int z = 40;
if (z < param) {
param = 40;
}
}
void doWhile() {
int d = 0;
do {
@IntRange(from = 0, to = 399) int x = d;
if (d % 2 == 0) {
@IntRange(from = 0, to = 399) int y = d;
}
d++;
} while (d < 399);
@IntRange(from = 399) int z = d;
}
void doWhileMax() {
int d = 0;
do {
@IntRange(from = 0) int x = d;
if (d % 2 == 0) {
@IntRange(from = 0) int y = d;
}
d++;
} while (d < Integer.MAX_VALUE);
@IntRange(from = 399) int z = d;
}
void whileLoop() {
int i = 0;
while (i < 399) {
@IntRange(from = 0, to = 399) int x = i;
if (i % 2 == 0) {
@IntRange(from = 0, to = 399) int y = i;
}
i++;
}
@IntRange(from = 399) int z = i;
}
static void testMax() {
for (int i = 0; i < Integer.MAX_VALUE; i++) {
@IntRange(from = 0, to = Integer.MAX_VALUE - 1) int x = i;
}
}
void exceptionLoop(List<Object> list) {
int x = 0;
for (short z = 0; z < list.size(); z++) {
x = z;
if (z == 100) {
break;
}
}
@IntRange(from = 0, to = 127) int result = x;
}
}
|