Skip to content

Commit 82031d3

Browse files
author
Vicente Romero
committedDec 1, 2022
8297294: compiler/c2/irTests/TestMulNodeIdealization.java failed compilation
Reviewed-by: mcimadamore
1 parent 337ca10 commit 82031d3

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed
 

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

+4-5
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@
5757
import java.util.Collection;
5858
import java.util.Collections;
5959
import java.util.EnumSet;
60-
import java.util.HashMap;
61-
import java.util.HashSet;
60+
import java.util.LinkedHashMap;
6261
import java.util.LinkedHashSet;
6362
import java.util.Map;
6463
import java.util.Optional;
@@ -1264,7 +1263,7 @@ boolean apply(Warner warn) {
12641263
}
12651264

12661265
/** an incorporation cache keeps track of all executed incorporation-related operations */
1267-
Map<IncorporationBinaryOp, Boolean> incorporationCache = new HashMap<>();
1266+
Map<IncorporationBinaryOp, Boolean> incorporationCache = new LinkedHashMap<>();
12681267

12691268
protected static class BoundFilter implements Predicate<Type> {
12701269

@@ -1426,7 +1425,7 @@ Pair<List<Node>, Integer> computeTreeToLeafs(Node n) {
14261425
}
14271426

14281427
/** cache used to avoid redundant computation of tree costs */
1429-
final Map<Node, Pair<List<Node>, Integer>> treeCache = new HashMap<>();
1428+
final Map<Node, Pair<List<Node>, Integer>> treeCache = new LinkedHashMap<>();
14301429

14311430
/** constant value used to mark non-existent paths */
14321431
final Pair<List<Node>, Integer> noPath = new Pair<>(null, Integer.MAX_VALUE);
@@ -1754,7 +1753,7 @@ protected boolean removeDependency(Node n) {
17541753
* through all its dependencies.
17551754
*/
17561755
protected Set<Node> closure() {
1757-
Set<Node> closure = new HashSet<>();
1756+
Set<Node> closure = new LinkedHashSet<>();
17581757
closureInternal(closure);
17591758
return closure;
17601759
}

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
import java.util.Collections;
2929
import java.util.EnumSet;
30-
import java.util.HashMap;
3130
import java.util.LinkedHashMap;
3231
import java.util.LinkedHashSet;
3332
import java.util.Map;
@@ -551,7 +550,7 @@ public String toString() {
551550
* This is why the tree is used as the key of the map below. This map
552551
* stores a Type per AST.
553552
*/
554-
Map<JCTree, Type> captureTypeCache = new HashMap<>();
553+
Map<JCTree, Type> captureTypeCache = new LinkedHashMap<>();
555554

556555
Type cachedCapture(JCTree tree, Type t, boolean readOnly) {
557556
Type captured = captureTypeCache.get(tree);

0 commit comments

Comments
 (0)
Please sign in to comment.