blob: 79be913a67c28c70b65587e52b4f1b82e525ec75 [file] [log] [blame]
/*
* Copyright (C) 2018 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 annotations.ConstantMethodHandle;
import annotations.ConstantMethodType;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodType;
class Main {
private static String name = "default";
private static void unreachable() {
throw new Error("Unreachable");
}
private static class LocalClass {
public LocalClass() {}
private int field;
}
@ConstantMethodType(
returnType = String.class,
parameterTypes = {int.class, Integer.class, System.class})
private static MethodType methodType0() {
unreachable();
return null;
}
@ConstantMethodType(
returnType = void.class,
parameterTypes = {LocalClass.class})
private static MethodType methodType1() {
unreachable();
return null;
}
private static void repeatConstMethodType0(MethodType expected) {
System.out.print("repeatConstMethodType0(");
System.out.print(expected);
System.out.println(")");
for (int i = 0; i < 12000; ++i) {
MethodType actual = methodType0();
if (!actual.equals(expected)) {
System.out.print("Expected: ");
System.out.println(expected);
System.out.print("Actual: ");
System.out.println(actual);
unreachable();
}
}
}
private static void repeatConstMethodType1(MethodType expected) {
System.out.print("repeatConstMethodType1(");
System.out.print(expected);
System.out.println(")");
for (int i = 0; i < 12000; ++i) {
MethodType actual = methodType1();
if (!actual.equals(expected)) {
System.out.print("Expected: ");
System.out.println(expected);
System.out.print("Actual: ");
System.out.println(actual);
unreachable();
}
}
}
static void helloWorld(String who) {
System.out.print("Hello World! And Hello ");
System.out.println(who);
}
@ConstantMethodHandle(
kind = ConstantMethodHandle.INVOKE_STATIC,
owner = "Main",
fieldOrMethodName = "helloWorld",
descriptor = "(Ljava/lang/String;)V")
private static MethodHandle printHelloHandle() {
unreachable();
return null;
}
@ConstantMethodHandle(
kind = ConstantMethodHandle.STATIC_PUT,
owner = "Main",
fieldOrMethodName = "name",
descriptor = "Ljava/lang/String;")
private static MethodHandle setNameHandle() {
unreachable();
return null;
}
@ConstantMethodHandle(
kind = ConstantMethodHandle.STATIC_GET,
owner = "java/lang/Math",
fieldOrMethodName = "E",
descriptor = "D")
private static MethodHandle getMathE() {
unreachable();
return null;
}
@ConstantMethodHandle(
kind = ConstantMethodHandle.STATIC_PUT,
owner = "java/lang/Math",
fieldOrMethodName = "E",
descriptor = "D")
private static MethodHandle putMathE() {
unreachable();
return null;
}
public static void main(String[] args) throws Throwable {
System.out.println(methodType0());
repeatConstMethodType0(
MethodType.methodType(String.class, int.class, Integer.class, System.class));
repeatConstMethodType1(MethodType.methodType(void.class, LocalClass.class));
printHelloHandle().invokeExact("Zog");
printHelloHandle().invokeExact("Zorba");
setNameHandle().invokeExact("HoverFly");
System.out.print("name is ");
System.out.println(name);
System.out.println(getMathE().invoke());
try {
putMathE().invokeExact(Math.PI);
unreachable();
} catch (IllegalAccessError expected) {
System.out.println("Attempting to set Math.E raised IAE");
}
}
}