src/cpu/sparc/vm/templateTable_sparc.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot-dvm Cdiff src/cpu/sparc/vm/templateTable_sparc.cpp

src/cpu/sparc/vm/templateTable_sparc.cpp

Print this page
rev 423 : imported patch indy.patch

*** 3123,3132 **** --- 3123,3146 ---- __ call_from_interpreter(Rcall, Gargs, Rret); } + void TemplateTable::invokedynamic(int byte_no) { + transition(vtos, vtos); + + if (!InvokeDynamic) { + // We do not encounter this bytecode if !InvokeDynamic. + // See Rewriter::rewrite_invokedynamic. + __ stop("invokedynamic not enabled"); + return; + } + + __ stop("invokedynamic NYI"); + } + + //---------------------------------------------------------------------------------------------------- // Allocation void TemplateTable::_new() { transition(vtos, atos);
src/cpu/sparc/vm/templateTable_sparc.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File