< prev index next >

src/hotspot/share/memory/oopFactory.hpp

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

*** 68,75 **** --- 68,77 ---- static objArrayOop new_objArray(Klass* klass, int length, TRAPS); // Helpers that return handles static objArrayHandle new_objArray_handle(Klass* klass, int length, TRAPS); static typeArrayHandle new_byteArray_handle(int length, TRAPS); + static typeArrayHandle new_intArray_handle(int length, TRAPS); + static typeArrayHandle new_typeArray_handle(BasicType type, int length, TRAPS); }; #endif // SHARE_VM_MEMORY_OOPFACTORY_HPP
< prev index next >