src/share/vm/ci/ciMethod.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/ci/ciMethod.cpp	Thu Jan  7 15:24:24 2010
--- new/src/share/vm/ci/ciMethod.cpp	Thu Jan  7 15:24:24 2010

*** 1,7 **** --- 1,7 ---- /* ! * Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved. ! * Copyright 1999-2010 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 698,707 **** --- 698,713 ---- } #endif //ASSERT return flag; } + bool ciMethod::is_method_handle_adapter() const { + check_is_loaded(); + VM_ENTRY_MARK; + return get_methodOop()->is_method_handle_adapter(); + } + ciInstance* ciMethod::method_handle_type() { check_is_loaded(); VM_ENTRY_MARK; oop mtype = get_methodOop()->method_handle_type(); return CURRENT_THREAD_ENV->get_object(mtype)->as_instance();

src/share/vm/ci/ciMethod.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File