comparison src/share/vm/interpreter/templateInterpreterGenerator.hpp @ 710:e5b0439ef4ae

6655638: dynamic languages need method handles Summary: initial implementation, with known omissions (x86/64, sparc, compiler optim., c-oops, C++ interp.) Reviewed-by: kvn, twisti, never
author jrose
date Wed, 08 Apr 2009 10:56:49 -0700
parents 98cb887364d3
children be93aad57795
comparison
equal deleted inserted replaced
709:1d037ecd7960 710:e5b0439ef4ae
1 /* 1 /*
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
46 address generate_klass_exception_handler(const char* name) { 46 address generate_klass_exception_handler(const char* name) {
47 return generate_exception_handler_common(name, NULL, true); 47 return generate_exception_handler_common(name, NULL, true);
48 } 48 }
49 address generate_exception_handler_common(const char* name, const char* message, bool pass_oop); 49 address generate_exception_handler_common(const char* name, const char* message, bool pass_oop);
50 address generate_ClassCastException_handler(); 50 address generate_ClassCastException_handler();
51 address generate_WrongMethodType_handler();
51 address generate_ArrayIndexOutOfBounds_handler(const char* name); 52 address generate_ArrayIndexOutOfBounds_handler(const char* name);
52 address generate_continuation_for(TosState state); 53 address generate_continuation_for(TosState state);
53 address generate_return_entry_for(TosState state, int step); 54 address generate_return_entry_for(TosState state, int step);
54 address generate_earlyret_entry_for(TosState state); 55 address generate_earlyret_entry_for(TosState state);
55 address generate_deopt_entry_for(TosState state, int step); 56 address generate_deopt_entry_for(TosState state, int step);