diff src/share/vm/classfile/classFileParser.hpp @ 1913:3b2dea75431e

6984311: JSR 292 needs optional bootstrap method parameters Summary: Allow CONSTANT_InvokeDynamic nodes to have any number of extra operands. Reviewed-by: twisti
author jrose
date Sat, 30 Oct 2010 13:08:23 -0700
parents d2e35ffae982
children f95d63e2154a
line wrap: on
line diff
--- a/src/share/vm/classfile/classFileParser.hpp	Sat Oct 30 12:19:07 2010 -0700
+++ b/src/share/vm/classfile/classFileParser.hpp	Sat Oct 30 13:08:23 2010 -0700
@@ -56,6 +56,9 @@
 
   constantPoolHandle parse_constant_pool(TRAPS);
 
+  static int start_operand_group(GrowableArray<int>* &operands, int op_count, TRAPS);
+  static void store_operand_array(GrowableArray<int>* operands, constantPoolHandle cp, TRAPS);
+
   // Interface parsing
   objArrayHandle parse_interfaces(constantPoolHandle cp,
                                   int length,