< prev index next >

src/hotspot/share/interpreter/interpreterRuntime.cpp

Print this page
rev 52749 : Bootstrap method consolidation
* clean up and simplify JDK support code for BSM invocation
* simplify JVM bootstrap handshake: use BootstrapCallInfo only
* remove unused JVM paths and data fields
* move bootstrap argument processing from MethodHandleNatives to ConstantPool
* remove ConstantGroup; merge argument access into BootstrapCallInfo
* adjust BSM argument access: remove copyArguments, add argumentRef API
* add metadata-free BSM modes, including symbolic arguments from CP

*** 979,991 **** void InterpreterRuntime::resolve_invokedynamic(JavaThread* thread) { Thread* THREAD = thread; LastFrameAccessor last_frame(thread); const Bytecodes::Code bytecode = Bytecodes::_invokedynamic; - //TO DO: consider passing BCI to Java. - // int caller_bci = last_frame.method()->bci_from(last_frame.bcp()); - // resolve method CallInfo info; constantPoolHandle pool(thread, last_frame.method()->constants()); int index = last_frame.get_index_u4(bytecode); { --- 979,988 ----
< prev index next >