blob: f29c139f63b943df6516f3176fb033bb26ef3d75 [file] [log] [blame]
Nicolas Geoffraycd9f8572017-01-16 15:08:56 +00001/*
2 * Copyright (C) 2017 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
17public class Main {
18 public static void main(String[] args) {
19 System.out.println($opt$noinline$foo(new Main()));
20 System.out.println($opt$noinline$foo(new SubMain()));
21 System.out.println($opt$noinline$foo(new SubSubMain()));
22 }
23
24
25 // Checker test to make sure the only inlined instruction is
26 // SubMain.bar.
27 /// CHECK-START: int Main.$opt$noinline$foo(Main) inliner (after)
28 /// CHECK-DAG: InvokeVirtual method_name:Main.foo
29 /// CHECK-DAG: <<Const:i\d+>> IntConstant 3
30 /// CHECK: begin_block
31 /// CHECK: BoundType klass:SubMain
32 /// CHECK: Return [<<Const>>]
33 /// CHECK-NOT: begin_block
34 /// CHECK: end_block
35 public static int $opt$noinline$foo(Main o) {
36 if (doThrow) { throw new Error(); }
37 // To exercise the bug on Jack, we need two getClass compares.
38 if (o.getClass() == Main.class || o.getClass() != SubMain.class) {
39 return o.foo();
40 } else {
41 // We used to wrongly bound the type of o to `Main` here and then realize that's
42 // impossible and mark this branch as dead.
43 return o.bar();
44 }
45 }
46
47 public int bar() {
48 return 1;
49 }
50
51 public int foo() {
52 return 2;
53 }
54
55 public static boolean doThrow = false;
56}
57
58class SubMain extends Main {
59 public int bar() {
60 return 3;
61 }
62
63 public int foo() {
64 return 4;
65 }
66}
67
68class SubSubMain extends SubMain {
69 public int bar() {
70 return 5;
71 }
72
73 public int foo() {
74 return 6;
75 }
76}