blob: 334792e475cd531d452121ee9223653d754f3664 [file] [log] [blame]
Nicolas Geoffray57902602015-04-21 14:28:41 +01001/*
2* 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*/
16
17
18public class Main {
19
20 // CHECK-START: void Main.loop1(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010021 // 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
27 // CHECK-START: void Main.loop2(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010028 // CHECK: ParameterValue liveness:2 ranges:[ 2-42 ] uses:[ 33 38 42 ]
29 // CHECK: Goto liveness:36
30 // CHECK: Goto liveness:40
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
38 // CHECK-START: void Main.loop3(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010039 // CHECK: ParameterValue liveness:2 ranges:[ 2-60 ] uses:[ 56 60 ]
40 // CHECK: Goto liveness:58
Nicolas Geoffray57902602015-04-21 14:28:41 +010041
42 // CHECK-START: void Main.loop3(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010043 // CHECK-NOT: Goto liveness:54
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
52 // CHECK-START: void Main.loop4(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010053 // CHECK: ParameterValue liveness:2 ranges:[ 2-22 ] uses:[ 22 ]
Nicolas Geoffray57902602015-04-21 14:28:41 +010054
55 // CHECK-START: void Main.loop4(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010056 // CHECK-NOT: Goto liveness:20
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
65 // CHECK-START: void Main.loop5(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010066 // CHECK: ParameterValue liveness:2 ranges:[ 2-50 ] uses:[ 33 42 46 50 ]
67 // CHECK: Goto liveness:44
68 // CHECK: Goto liveness:48
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
78 // CHECK-START: void Main.loop6(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010079 // CHECK ParameterValue liveness:2 ranges:[ 2-46 ] uses:[ 24 46 ]
80 // CHECK: Goto liveness:44
Nicolas Geoffray57902602015-04-21 14:28:41 +010081
82 // CHECK-START: void Main.loop6(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010083 // CHECK-NOT: Goto liveness:22
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
92 // CHECK-START: void Main.loop7(boolean) liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +010093 // CHECK: ParameterValue liveness:2 ranges:[ 2-50 ] uses:[ 32 41 46 50 ]
94 // CHECK: Goto liveness:44
95 // CHECK: Goto liveness:48
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
104 // CHECK-START: void Main.loop8() liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +0100105 // CHECK: StaticFieldGet liveness:12 ranges:[ 12-44 ] uses:[ 35 40 44 ]
106 // CHECK: Goto liveness:38
107 // CHECK: Goto liveness:42
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
116 // CHECK-START: void Main.loop9() liveness (after)
David Brazdilc74652862015-05-13 17:50:09 +0100117 // CHECK: StaticFieldGet liveness:22 ranges:[ 22-36 ] uses:[ 31 36 ]
118 // CHECK: Goto liveness:38
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}