Searched refs:isInvokedynamicIndex (Results 1 - 3 of 3) sorted by relevance

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeWithCPIndex.java41 if (ConstantPool.isInvokedynamicIndex(index)) {
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DConstantPool.java268 public static boolean isInvokedynamicIndex(int i) { return (i < 0); } method in class:ConstantPool
270 public static int decodeInvokedynamicIndex(int i) { Assert.that(isInvokedynamicIndex(i), ""); return ~i; }
276 Assert.that(isInvokedynamicIndex(index), "should be a invokedynamic index");
290 if (isInvokedynamicIndex(which)) {
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotConstantPool.java248 if (isInvokedynamicIndex(index)) {
258 private static boolean isInvokedynamicIndex(int index) { method in class:HotSpotConstantPool
266 assert isInvokedynamicIndex(i) : i;
707 if (isInvokedynamicIndex(cpi)) {

Completed in 91 milliseconds