blob: 2cfb04d652543d1ea80de58aa6f57d4aeb4709d5 [file] [log] [blame]
Nicolas Geoffray57902602015-04-21 14:28:41 +01001/*
Roland Levillain6a92a032015-07-23 12:15:01 +01002 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Nicolas Geoffray57902602015-04-21 14:28:41 +010016
17
18public class Main {
19
David Brazdila06d66a2015-05-28 11:14:54 +010020 /// CHECK-START: void Main.loop1(boolean) liveness (after)
21 /// CHECK: ParameterValue liveness:2 ranges:{[2,22)} uses:[17,22]
22 /// CHECK: Goto liveness:20
Nicolas Geoffray57902602015-04-21 14:28:41 +010023 public static void loop1(boolean incoming) {
24 while (incoming) {}
25 }
26
David Brazdila06d66a2015-05-28 11:14:54 +010027 /// CHECK-START: void Main.loop2(boolean) liveness (after)
28 /// CHECK: ParameterValue liveness:4 ranges:{[4,44)} uses:[35,40,44]
29 /// CHECK: Goto liveness:38
30 /// CHECK: Goto liveness:42
Nicolas Geoffray57902602015-04-21 14:28:41 +010031 public static void loop2(boolean incoming) {
32 while (true) {
33 System.out.println("foo");
34 while (incoming) {}
35 }
36 }
37
David Brazdila06d66a2015-05-28 11:14:54 +010038 /// CHECK-START: void Main.loop3(boolean) liveness (after)
Mark Mendellc4701932015-04-10 13:18:51 -040039 /// CHECK: ParameterValue liveness:4 ranges:{[4,60)} uses:[56,60]
40 /// CHECK: Goto liveness:58
Nicolas Geoffray57902602015-04-21 14:28:41 +010041
Mark Mendellc4701932015-04-10 13:18:51 -040042 // CHECK-START: void Main.loop3(boolean) liveness (after)
43 // CHECK-NOT: Goto liveness:50
Nicolas Geoffray57902602015-04-21 14:28:41 +010044 public static void loop3(boolean incoming) {
45 // 'incoming' only needs a use at the outer loop's back edge.
46 while (System.currentTimeMillis() != 42) {
47 while (Runtime.getRuntime() != null) {}
48 System.out.println(incoming);
49 }
50 }
51
Mark Mendellc4701932015-04-10 13:18:51 -040052 // CHECK-START: void Main.loop4(boolean) liveness (after)
53 // CHECK: ParameterValue liveness:4 ranges:{[4,22)} uses:[22]
Nicolas Geoffray57902602015-04-21 14:28:41 +010054
Mark Mendellc4701932015-04-10 13:18:51 -040055 // CHECK-START: void Main.loop4(boolean) liveness (after)
56 // CHECK-NOT: Goto liveness:18
Nicolas Geoffray57902602015-04-21 14:28:41 +010057 public static void loop4(boolean incoming) {
58 // 'incoming' has no loop use, so should not have back edge uses.
59 System.out.println(incoming);
60 while (System.currentTimeMillis() != 42) {
61 while (Runtime.getRuntime() != null) {}
62 }
63 }
64
David Brazdila06d66a2015-05-28 11:14:54 +010065 /// CHECK-START: void Main.loop5(boolean) liveness (after)
Nicolas Geoffray78f4fa72015-06-12 09:35:05 +010066 /// CHECK: ParameterValue liveness:4 ranges:{[4,54)} uses:[37,46,50,54]
67 /// CHECK: Goto liveness:48
68 /// CHECK: Goto liveness:52
Nicolas Geoffray57902602015-04-21 14:28:41 +010069 public static void loop5(boolean incoming) {
70 // 'incoming' must have a use at both back edges.
71 while (Runtime.getRuntime() != null) {
72 while (incoming) {
73 System.out.println(incoming);
74 }
75 }
76 }
77
David Brazdila06d66a2015-05-28 11:14:54 +010078 /// CHECK-START: void Main.loop6(boolean) liveness (after)
Nicolas Geoffray78f4fa72015-06-12 09:35:05 +010079 /// CHECK: ParameterValue liveness:4 ranges:{[4,50)} uses:[26,50]
80 /// CHECK: Goto liveness:48
Nicolas Geoffray57902602015-04-21 14:28:41 +010081
David Brazdila06d66a2015-05-28 11:14:54 +010082 /// CHECK-START: void Main.loop6(boolean) liveness (after)
83 /// CHECK-NOT: Goto liveness:24
Nicolas Geoffray57902602015-04-21 14:28:41 +010084 public static void loop6(boolean incoming) {
85 // 'incoming' must have a use only at the first loop's back edge.
86 while (true) {
87 System.out.println(incoming);
88 while (Runtime.getRuntime() != null) {}
89 }
90 }
91
David Brazdila06d66a2015-05-28 11:14:54 +010092 /// CHECK-START: void Main.loop7(boolean) liveness (after)
Nicolas Geoffray78f4fa72015-06-12 09:35:05 +010093 /// CHECK: ParameterValue liveness:4 ranges:{[4,54)} uses:[36,45,50,54]
94 /// CHECK: Goto liveness:48
95 /// CHECK: Goto liveness:52
Nicolas Geoffray57902602015-04-21 14:28:41 +010096 public static void loop7(boolean incoming) {
97 // 'incoming' must have a use at both back edges.
98 while (Runtime.getRuntime() != null) {
99 System.out.println(incoming);
100 while (incoming) {}
101 }
102 }
103
David Brazdila06d66a2015-05-28 11:14:54 +0100104 /// CHECK-START: void Main.loop8() liveness (after)
Nicolas Geoffray78f4fa72015-06-12 09:35:05 +0100105 /// CHECK: StaticFieldGet liveness:14 ranges:{[14,48)} uses:[39,44,48]
106 /// CHECK: Goto liveness:42
107 /// CHECK: Goto liveness:46
Nicolas Geoffray57902602015-04-21 14:28:41 +0100108 public static void loop8() {
109 // 'incoming' must have a use at both back edges.
110 boolean incoming = field;
111 while (Runtime.getRuntime() != null) {
112 while (incoming) {}
113 }
114 }
115
David Brazdila06d66a2015-05-28 11:14:54 +0100116 /// CHECK-START: void Main.loop9() liveness (after)
Nicolas Geoffray78f4fa72015-06-12 09:35:05 +0100117 /// CHECK: StaticFieldGet liveness:26 ranges:{[26,40)} uses:[35,40]
118 /// CHECK: Goto liveness:42
Nicolas Geoffray57902602015-04-21 14:28:41 +0100119 public static void loop9() {
120 while (Runtime.getRuntime() != null) {
121 // 'incoming' must only have a use in the inner loop.
122 boolean incoming = field;
123 while (incoming) {}
124 }
125 }
126
127 public static void main(String[] args) {
128 }
129
130 static boolean field;
131}