summaryrefslogtreecommitdiff
path: root/test/727-checker-unresolved-class/src2/resolved/PackagePrivateSubclassOfUnresolvedClass.java
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2020-09-02 12:03:14 +0100
committer Vladimir Marko <vmarko@google.com> 2020-09-24 09:39:00 +0000
commit5437e6fa3c5a1865e4146356d05e0a48764a5e3b (patch)
treed2394e4504afd4aa1cecc8a75511b7be1c3ab1ff /test/727-checker-unresolved-class/src2/resolved/PackagePrivateSubclassOfUnresolvedClass.java
parent59a122afb0d2af069a055de7437c736480782e41 (diff)
Add tests for accessing referrer's class.
Prepare for improving codegen for accessing referrer's class from unresolved compiling class by improving test coverage. The disabled CHECK statements show the intended results. Test: Additional tests in 727-checker-unresolved-class. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Bug: 161898207 Change-Id: I7473d2693060b843670ea81f5f0e7bbb3c2d9031
Diffstat (limited to 'test/727-checker-unresolved-class/src2/resolved/PackagePrivateSubclassOfUnresolvedClass.java')
-rw-r--r--test/727-checker-unresolved-class/src2/resolved/PackagePrivateSubclassOfUnresolvedClass.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/727-checker-unresolved-class/src2/resolved/PackagePrivateSubclassOfUnresolvedClass.java b/test/727-checker-unresolved-class/src2/resolved/PackagePrivateSubclassOfUnresolvedClass.java
new file mode 100644
index 0000000000..ce94cce551
--- /dev/null
+++ b/test/727-checker-unresolved-class/src2/resolved/PackagePrivateSubclassOfUnresolvedClass.java
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2020 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 resolved;
+
+import getters.GetPackagePrivateSubclassOfUnresolvedClass;
+import unresolved.UnresolvedPublicClass;
+
+class PackagePrivateSubclassOfUnresolvedClass extends UnresolvedPublicClass {
+ public static void $noinline$main() {
+ $noinline$testReferrersClass();
+ $noinline$testInlinedReferrersClass();
+ $noinline$testInlinedReferrersClassFromSamePackage();
+
+ System.out.println("PackagePrivateSubclassOfUnresolvedClass passed");
+ }
+
+ /// CHECK-START: void resolved.PackagePrivateSubclassOfUnresolvedClass.$noinline$testReferrersClass() builder (after)
+ // CHECK: LoadClass class_name:resolved.PackagePrivateSubclassOfUnresolvedClass needs_access_check:false
+ static void $noinline$testReferrersClass() {
+ Class<?> c = PackagePrivateSubclassOfUnresolvedClass.class;
+ }
+
+ /// CHECK-START: void resolved.PackagePrivateSubclassOfUnresolvedClass.$noinline$testInlinedReferrersClass() inliner (after)
+ // CHECK: LoadClass class_name:resolved.PackagePrivateSubclassOfUnresolvedClass needs_access_check:true
+ static void $noinline$testInlinedReferrersClass() {
+ try {
+ // TODO: Make $inline$ and enable CHECK above when we relax the verifier. b/28313047
+ Class<?> c = GetPackagePrivateSubclassOfUnresolvedClass.get();
+ throw new Error("Unreachable");
+ } catch (IllegalAccessError expected) {}
+ }
+
+ /// CHECK-START: void resolved.PackagePrivateSubclassOfUnresolvedClass.$noinline$testInlinedReferrersClassFromSamePackage() inliner (after)
+ // CHECK: LoadClass class_name:resolved.PackagePrivateSubclassOfUnresolvedClass needs_access_check:false
+ static void $noinline$testInlinedReferrersClassFromSamePackage() {
+ Class<?> c = GetPackagePrivateSubclassOfUnresolvedClassFromSamePackage.get();
+ }
+}