6894206: JVM needs a way to traverse method handle structures

We need a way to walk chained method handles in the JVM to call the right methods and to generate required bytecode adapters for the compilers.

Reviewed-by: kvn
This commit is contained in:
Christian Thalinger 2010-01-04 15:52:40 +01:00
parent 915d9602fe
commit 3a896a1408
8 changed files with 1241 additions and 58 deletions

View file

@ -1027,6 +1027,7 @@ class java_dyn_MethodType: AllStatic {
static oop form(oop mt);
static oop ptype(oop mt, int index);
static int ptype_count(oop mt);
static symbolOop as_signature(oop mt, bool intern_if_not_found, TRAPS);
static void print_signature(oop mt, outputStream* st);