comparison jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/CompilerToVM.java @ 24151:26a414946c56 jvmci-0.29

Get host class of VM anonymous class (JDK-8182310)
author Doug Simon <doug.simon@oracle.com>
date Fri, 30 Jun 2017 17:09:57 +0200
parents 11f0412408cd
children a86e69d2d92e
comparison
equal deleted inserted replaced
24150:95d0e0762de5 24151:26a414946c56
629 * if its type is {@code ccstr} or {@code ccstrlist}, a {@link Double} if its type is 629 * if its type is {@code ccstr} or {@code ccstrlist}, a {@link Double} if its type is
630 * {@code double}, a {@link Boolean} if its type is {@code bool} otherwise a 630 * {@code double}, a {@link Boolean} if its type is {@code bool} otherwise a
631 * {@link Long} 631 * {@link Long}
632 */ 632 */
633 native Object getFlagValue(String name); 633 native Object getFlagValue(String name);
634
635 /**
636 * Gets the host class for {@code type}.
637 */
638 native HotSpotResolvedObjectTypeImpl getHostClass(HotSpotResolvedObjectTypeImpl type);
634 } 639 }