Searched refs:getEntryAt (Results 1 - 7 of 7) sorted by relevance

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeWithCPIndex.java58 return cpCache.getEntryAt((int) (0xFFFF & cpCacheIndex)).getConstantPoolIndex();
/openjdk10/hotspot/test/compiler/jvmci/compilerToVM/
H A DGetSymbolTest.java114 Method getEntryAt = pool.getClass()
115 .getDeclaredMethod("getEntryAt", int.class);
116 getEntryAt.setAccessible(true);
117 entryPointer = (Long) getEntryAt.invoke(pool, i);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DConstantPoolCache.java79 public ConstantPoolCacheEntry getEntryAt(int i) { method in class:ConstantPoolCache
102 ConstantPoolCacheEntry entry = getEntryAt(i);
H A DConstantPool.java216 i = cache.getEntryAt(0xFFFF & which).getConstantPoolIndex();
284 return getCache().getEntryAt(cpCacheIndex);
316 int member_index = getCache().getEntryAt(cpc_index).getConstantPoolIndex();
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/jcore/
H A DByteCodeRewriter.java108 return (short) cpCache.getEntryAt(cpCacheIndex).getConstantPoolIndex();
111 return (short) cpCache.getEntryAt((int) (0xFFFF & bytes.swapShort((short)cpCacheIndex))).getConstantPoolIndex();
114 return (short) cpCache.getEntryAt((int) (0xFF & cpCacheIndex)).getConstantPoolIndex();
/openjdk10/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DHotSpotResolvedJavaMethodImpl.java341 long nameSymbol = constantPool.getEntryAt(nameIndex);
352 long nameSymbol = constantPool.getEntryAt(nameIndex);
H A DHotSpotConstantPool.java301 long getEntryAt(int index) { method in class:HotSpotConstantPool
533 return compilerToVM().getSymbol(getEntryAt(cpi));

Completed in 116 milliseconds