test/compiler/jvmci/common/patches/jdk.vm.ci/jdk/vm/ci/hotspot/CompilerToVMHelper.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File 8073191-work Sdiff test/compiler/jvmci/common/patches/jdk.vm.ci/jdk/vm/ci/hotspot

test/compiler/jvmci/common/patches/jdk.vm.ci/jdk/vm/ci/hotspot/CompilerToVMHelper.java

Print this page




 107             ConstantPool constantPool, int cpi, byte opcode) {
 108         return CTVM.lookupMethodInPool((HotSpotConstantPool) constantPool, cpi, opcode);
 109     }
 110 
 111     public static void resolveInvokeDynamicInPool(
 112             ConstantPool constantPool, int cpi) {
 113         CTVM.resolveInvokeDynamicInPool((HotSpotConstantPool) constantPool, cpi);
 114     }
 115 
 116     public static void resolveInvokeHandleInPool(
 117             ConstantPool constantPool, int cpi) {
 118         CTVM.resolveInvokeHandleInPool((HotSpotConstantPool) constantPool, cpi);
 119     }
 120 
 121     public static HotSpotResolvedObjectType resolveTypeInPool(
 122             ConstantPool constantPool, int cpi) {
 123         return CTVM.resolveTypeInPool((HotSpotConstantPool) constantPool, cpi);
 124     }
 125 
 126     public static HotSpotResolvedObjectType resolveFieldInPool(
 127             ConstantPool constantPool, int cpi, byte opcode, long[] info) {
 128         return CTVM.resolveFieldInPool((HotSpotConstantPool) constantPool, cpi, opcode, info);
 129     }
 130 
 131     public static int constantPoolRemapInstructionOperandFromCache(
 132             ConstantPool constantPool, int cpci) {
 133         return CTVM.constantPoolRemapInstructionOperandFromCache((HotSpotConstantPool) constantPool, cpci);
 134     }
 135 
 136     public static Object lookupAppendixInPool(
 137             ConstantPool constantPool, int cpi) {
 138         return CTVM.lookupAppendixInPool((HotSpotConstantPool) constantPool, cpi);
 139     }
 140 
 141     public static int installCode(TargetDescription target,
 142             HotSpotCompiledCode compiledCode, InstalledCode code, HotSpotSpeculationLog speculationLog) {
 143         return CTVM.installCode(target, compiledCode, code, speculationLog);
 144     }
 145 
 146     public static int getMetadata(TargetDescription target,
 147             HotSpotCompiledCode compiledCode, HotSpotMetaData metaData) {
 148         return CTVM.getMetadata(target, compiledCode, metaData);




 107             ConstantPool constantPool, int cpi, byte opcode) {
 108         return CTVM.lookupMethodInPool((HotSpotConstantPool) constantPool, cpi, opcode);
 109     }
 110 
 111     public static void resolveInvokeDynamicInPool(
 112             ConstantPool constantPool, int cpi) {
 113         CTVM.resolveInvokeDynamicInPool((HotSpotConstantPool) constantPool, cpi);
 114     }
 115 
 116     public static void resolveInvokeHandleInPool(
 117             ConstantPool constantPool, int cpi) {
 118         CTVM.resolveInvokeHandleInPool((HotSpotConstantPool) constantPool, cpi);
 119     }
 120 
 121     public static HotSpotResolvedObjectType resolveTypeInPool(
 122             ConstantPool constantPool, int cpi) {
 123         return CTVM.resolveTypeInPool((HotSpotConstantPool) constantPool, cpi);
 124     }
 125 
 126     public static HotSpotResolvedObjectType resolveFieldInPool(
 127             ConstantPool constantPool, int cpi, ResolvedJavaMethod method, byte opcode, long[] info) {
 128         return CTVM.resolveFieldInPool((HotSpotConstantPool) constantPool, cpi, (HotSpotResolvedJavaMethodImpl) method, opcode, info);
 129     }
 130 
 131     public static int constantPoolRemapInstructionOperandFromCache(
 132             ConstantPool constantPool, int cpci) {
 133         return CTVM.constantPoolRemapInstructionOperandFromCache((HotSpotConstantPool) constantPool, cpci);
 134     }
 135 
 136     public static Object lookupAppendixInPool(
 137             ConstantPool constantPool, int cpi) {
 138         return CTVM.lookupAppendixInPool((HotSpotConstantPool) constantPool, cpi);
 139     }
 140 
 141     public static int installCode(TargetDescription target,
 142             HotSpotCompiledCode compiledCode, InstalledCode code, HotSpotSpeculationLog speculationLog) {
 143         return CTVM.installCode(target, compiledCode, code, speculationLog);
 144     }
 145 
 146     public static int getMetadata(TargetDescription target,
 147             HotSpotCompiledCode compiledCode, HotSpotMetaData metaData) {
 148         return CTVM.getMetadata(target, compiledCode, metaData);


test/compiler/jvmci/common/patches/jdk.vm.ci/jdk/vm/ci/hotspot/CompilerToVMHelper.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File