diff options
5 files changed, 100 insertions, 0 deletions
diff --git a/test/537-checker-inline-and-unverified/expected.txt b/test/537-checker-inline-and-unverified/expected.txt new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/test/537-checker-inline-and-unverified/expected.txt diff --git a/test/537-checker-inline-and-unverified/info.txt b/test/537-checker-inline-and-unverified/info.txt new file mode 100644 index 0000000000..ec12327408 --- /dev/null +++ b/test/537-checker-inline-and-unverified/info.txt @@ -0,0 +1 @@ +Checks that unverified methods are not inlined. diff --git a/test/537-checker-inline-and-unverified/src/Main.java b/test/537-checker-inline-and-unverified/src/Main.java new file mode 100644 index 0000000000..bdc14b027c --- /dev/null +++ b/test/537-checker-inline-and-unverified/src/Main.java @@ -0,0 +1,59 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import other.InaccessibleClass; + +public class Main { + public static void main(String[] args) { + try { + testNoInline(); + } catch (IllegalAccessError e) { + // expected + } + testInline(); + } + + /// CHECK-START: void Main.testNoInline() inliner (before) + /// CHECK: InvokeStaticOrDirect method_name:Main.$opt$noinline$testNoInline + + /// CHECK-START: void Main.testNoInline() inliner (after) + /// CHECK: InvokeStaticOrDirect method_name:Main.$opt$noinline$testNoInline + public static void testNoInline() { + $opt$noinline$testNoInline(); + } + + /// CHECK-START: void Main.testInline() inliner (before) + /// CHECK: InvokeStaticOrDirect method_name:Main.$opt$inline$testInline + + /// CHECK-START: void Main.testInline() inliner (after) + /// CHECK-NOT: InvokeStaticOrDirect + public static void testInline() { + $opt$inline$testInline(); + } + + public static boolean $opt$noinline$testNoInline() { + try { + return null instanceof InaccessibleClass; + } catch (IllegalAccessError e) { + // expected + } + return false; + } + + public static boolean $opt$inline$testInline() { + return null instanceof Main; + } +} diff --git a/test/537-checker-inline-and-unverified/src/other/InaccessibleClass.java b/test/537-checker-inline-and-unverified/src/other/InaccessibleClass.java new file mode 100644 index 0000000000..de2e1d7830 --- /dev/null +++ b/test/537-checker-inline-and-unverified/src/other/InaccessibleClass.java @@ -0,0 +1,20 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package other; + +public class InaccessibleClass { +} diff --git a/test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java b/test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java new file mode 100644 index 0000000000..ff11d7adc9 --- /dev/null +++ b/test/537-checker-inline-and-unverified/src2/other/InaccessibleClass.java @@ -0,0 +1,20 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package other; + +/* package */ class InaccessibleClass { +} |