Skip to content

Commit 69e390a

Browse files
committedFeb 9, 2022
8262721: Add Tests to verify single iteration loops are properly optimized
Reviewed-by: neliasso, chagedorn, kvn
1 parent f092bab commit 69e390a

File tree

1 file changed

+139
-0
lines changed

1 file changed

+139
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
/*
2+
* Copyright (c) 2022, Red Hat, Inc. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
package compiler.c2.irTests;
25+
26+
import compiler.lib.ir_framework.*;
27+
28+
/*
29+
* @test
30+
* @bug 8262721
31+
* @summary Add Tests to verify single iteration loops are properly optimized
32+
* @library /test/lib /
33+
* @run driver compiler.c2.irTests.TestFewIterationsCountedLoop
34+
*/
35+
36+
public class TestFewIterationsCountedLoop {
37+
38+
public static void main(String[] args) {
39+
TestFramework.runWithFlags("-XX:LoopUnrollLimit=0");
40+
TestFramework.run();
41+
}
42+
43+
static volatile int barrier;
44+
static final Object object = new Object();
45+
46+
@Test
47+
@IR(failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
48+
public static void singleIterationFor() {
49+
for (int i = 0; i < 1; i++) {
50+
barrier = 0x42; // something that can't be optimized out
51+
}
52+
}
53+
54+
@Test
55+
@IR(failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
56+
public static void singleIterationWhile() {
57+
int i = 0;
58+
while (i < 1) {
59+
barrier = 0x42;
60+
i++;
61+
}
62+
}
63+
64+
@Test
65+
@IR(failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
66+
@Warmup(1) // So C2 can't rely on profile data
67+
public static void singleIterationDoWhile() {
68+
int i = 0;
69+
do {
70+
synchronized(object) {} // so loop head is not cloned by ciTypeFlow
71+
barrier = 0x42;
72+
i++;
73+
} while (i < 1);
74+
}
75+
76+
@Test
77+
@IR(applyIf = { "LoopUnrollLimit", "0" }, counts = { IRNode.COUNTEDLOOP, "1" })
78+
@IR(applyIf = { "LoopUnrollLimit", "> 0" }, failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
79+
public static void twoIterationsFor() {
80+
for (int i = 0; i < 2; i++) {
81+
barrier = 0x42; // something that can't be optimized out
82+
}
83+
}
84+
85+
@Test
86+
@IR(applyIf = { "LoopUnrollLimit", "0" }, counts = { IRNode.COUNTEDLOOP, "1" })
87+
@IR(applyIf = { "LoopUnrollLimit", "> 0" }, failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
88+
public static void twoIterationsWhile() {
89+
int i = 0;
90+
while (i < 2) {
91+
barrier = 0x42;
92+
i++;
93+
}
94+
}
95+
96+
@Test
97+
@IR(applyIf = { "LoopUnrollLimit", "0" }, counts = { IRNode.COUNTEDLOOP, "1" })
98+
@IR(applyIf = { "LoopUnrollLimit", "> 0" }, failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
99+
public static void twoIterationsDoWhile() {
100+
int i = 0;
101+
do {
102+
synchronized(object) {} // so loop head is not cloned by ciTypeFlow
103+
barrier = 0x42;
104+
i++;
105+
} while (i < 2);
106+
}
107+
108+
@Test
109+
@IR(applyIf = { "LoopUnrollLimit", "0" }, counts = { IRNode.COUNTEDLOOP, "1" })
110+
@IR(applyIf = { "LoopUnrollLimit", "> 0" }, failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
111+
public static void threadIterationsFor() {
112+
for (int i = 0; i < 2; i++) {
113+
barrier = 0x42; // something that can't be optimized out
114+
}
115+
}
116+
117+
@Test
118+
@IR(applyIf = { "LoopUnrollLimit", "0" }, counts = { IRNode.COUNTEDLOOP, "1" })
119+
@IR(applyIf = { "LoopUnrollLimit", "> 0" }, failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
120+
public static void threeIterationsWhile() {
121+
int i = 0;
122+
while (i < 2) {
123+
barrier = 0x42;
124+
i++;
125+
}
126+
}
127+
128+
@Test
129+
@IR(applyIf = { "LoopUnrollLimit", "0" }, counts = { IRNode.COUNTEDLOOP, "1" })
130+
@IR(applyIf = { "LoopUnrollLimit", "> 0" }, failOn = { IRNode.COUNTEDLOOP, IRNode.LOOP })
131+
public static void threeIterationsDoWhile() {
132+
int i = 0;
133+
do {
134+
synchronized(object) {} // so loop head is not cloned by ciTypeFlow
135+
barrier = 0x42;
136+
i++;
137+
} while (i < 2);
138+
}
139+
}

0 commit comments

Comments
 (0)
Please sign in to comment.