< prev index next >

src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/JavaCallSiteRelocationSymbol.java

Print this page
rev 47466 : 8132547: [AOT] support invokedynamic instructions
Reviewed-by: iveresov, kvn

*** 122,131 **** --- 122,132 ---- * Returns the name of the resolve method for this particular call. */ private static String getResolveSymbolName(CompiledMethodInfo mi, Call call) { String resolveSymbolName; if (CallInfo.isStaticCall(call)) { + assert mi.hasMark(call, MarkId.INVOKESTATIC); resolveSymbolName = BinaryContainer.getResolveStaticEntrySymbolName(); } else if (CallInfo.isSpecialCall(call)) { resolveSymbolName = BinaryContainer.getResolveOptVirtualEntrySymbolName(); } else if (CallInfo.isOptVirtualCall(mi, call)) { resolveSymbolName = BinaryContainer.getResolveOptVirtualEntrySymbolName();
< prev index next >