Skip to content

Commit 0c2def0

Browse files
committedFeb 14, 2024
8325653: Erroneous exhaustivity analysis for primitive patterns
Reviewed-by: vromero
1 parent d003996 commit 0c2def0

File tree

3 files changed

+35
-20
lines changed

3 files changed

+35
-20
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1297,24 +1297,12 @@ public void analyzeTree(Env<AttrContext> env, JCTree tree, TreeMaker make) {
12971297

12981298
private boolean isBpCovered(Type componentType, PatternDescription newNested) {
12991299
if (newNested instanceof BindingPattern bp) {
1300-
var seltype = types.erasure(componentType);
1300+
Type seltype = types.erasure(componentType);
1301+
Type pattype = types.erasure(bp.type);
13011302

1302-
if (seltype.isPrimitive()) {
1303-
if (types.isSameType(bp.type, types.boxedClass(seltype).type)) {
1304-
return true;
1305-
}
1306-
1307-
// if the target is unconditionally exact to the pattern, target is covered
1308-
if (types.isUnconditionallyExact(seltype, bp.type)) {
1309-
return true;
1310-
}
1311-
} else if (seltype.isReference() && bp.type.isPrimitive() && types.isCastable(seltype, bp.type)) {
1312-
return true;
1313-
} else {
1314-
if (types.isSubtype(seltype, types.erasure(bp.type))) {
1315-
return true;
1316-
}
1317-
}
1303+
return seltype.isPrimitive() ?
1304+
types.isUnconditionallyExact(seltype, pattype) :
1305+
(bp.type.isPrimitive() && types.isUnconditionallyExact(types.unboxedType(seltype), bp.type)) || types.isSubtype(seltype, pattype);
13181306
}
13191307
return false;
13201308
}

‎test/langtools/tools/javac/patterns/PrimitivePatternsSwitchErrors.java

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* @test /nodynamiccopyright/
3-
* @bug 8304487
3+
* @bug 8304487 8325653
44
* @summary Compiler Implementation for Primitive types in patterns, instanceof, and switch (Preview)
55
* @enablePreview
66
* @compile/fail/ref=PrimitivePatternsSwitchErrors.out -XDrawDiagnostics -XDshould-stop.at=FLOW PrimitivePatternsSwitchErrors.java
@@ -217,4 +217,28 @@ void nullAndPrimitive() {
217217
default -> System.out.println("any other integral value");
218218
}
219219
}
220+
221+
public static int nonExhaustive4() {
222+
Number n = Byte.valueOf((byte) 42);
223+
return switch (n) { // Error - not exhaustive
224+
case byte b when b == 42 -> 1;
225+
case byte b -> -1 ;
226+
};
227+
}
228+
229+
public static int nonExhaustive5() {
230+
Object n = 42;
231+
return switch (n) { // Error - not exhaustive
232+
case int b when b == 42 -> 1;
233+
case int b -> -1 ;
234+
};
235+
}
236+
237+
public static int nonExhaustive6() {
238+
Object n = 42;
239+
return switch (n) { // Error - not exhaustive
240+
case byte b -> -1 ;
241+
case int b -> -2 ;
242+
};
243+
}
220244
}

‎test/langtools/tools/javac/patterns/PrimitivePatternsSwitchErrors.out

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ PrimitivePatternsSwitchErrors.java:44:16: compiler.err.not.exhaustive
3232
PrimitivePatternsSwitchErrors.java:52:16: compiler.err.not.exhaustive
3333
PrimitivePatternsSwitchErrors.java:201:16: compiler.err.not.exhaustive
3434
PrimitivePatternsSwitchErrors.java:207:9: compiler.err.not.exhaustive.statement
35+
PrimitivePatternsSwitchErrors.java:223:16: compiler.err.not.exhaustive
36+
PrimitivePatternsSwitchErrors.java:231:16: compiler.err.not.exhaustive
37+
PrimitivePatternsSwitchErrors.java:239:16: compiler.err.not.exhaustive
3538
- compiler.note.preview.filename: PrimitivePatternsSwitchErrors.java, DEFAULT
3639
- compiler.note.preview.recompile
37-
34 errors
40+
37 errors

0 commit comments

Comments
 (0)
Please sign in to comment.