hotspot/test/compiler/jvmci/common/patches/jdk.vm.ci/jdk/vm/ci/hotspot/CompilerToVMHelper.java
changeset 39421 a9652c919db8
parent 38686 6c51f29cbc5d
child 39423 0f8dc3693499
equal deleted inserted replaced
39420:987528901b83 39421:a9652c919db8
   122             ConstantPool constantPool, int cpi) {
   122             ConstantPool constantPool, int cpi) {
   123         return CTVM.resolveTypeInPool((HotSpotConstantPool) constantPool, cpi);
   123         return CTVM.resolveTypeInPool((HotSpotConstantPool) constantPool, cpi);
   124     }
   124     }
   125 
   125 
   126     public static HotSpotResolvedObjectType resolveFieldInPool(
   126     public static HotSpotResolvedObjectType resolveFieldInPool(
   127             ConstantPool constantPool, int cpi, byte opcode, long[] info) {
   127             ConstantPool constantPool, int cpi, ResolvedJavaMethod method, byte opcode, long[] info) {
   128         return CTVM.resolveFieldInPool((HotSpotConstantPool) constantPool, cpi, opcode, info);
   128         return CTVM.resolveFieldInPool((HotSpotConstantPool) constantPool, cpi, (HotSpotResolvedJavaMethodImpl) method, opcode, info);
   129     }
   129     }
   130 
   130 
   131     public static int constantPoolRemapInstructionOperandFromCache(
   131     public static int constantPoolRemapInstructionOperandFromCache(
   132             ConstantPool constantPool, int cpci) {
   132             ConstantPool constantPool, int cpci) {
   133         return CTVM.constantPoolRemapInstructionOperandFromCache((HotSpotConstantPool) constantPool, cpci);
   133         return CTVM.constantPoolRemapInstructionOperandFromCache((HotSpotConstantPool) constantPool, cpci);