< prev index next >

src/share/vm/prims/methodHandles.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2008, 2013, Oracle and/or its affiliates. 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. --- 1,7 ---- /* ! * Copyright (c) 2008, 2014, Oracle and/or its affiliates. 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.
*** 226,254 **** MethodHandlesAdapterGenerator(CodeBuffer* code) : StubCodeGenerator(code, PrintMethodHandleStubs) {} void generate(); }; - //------------------------------------------------------------------------------ - // MemberNameTable - // - - class MemberNameTable : public GrowableArray<jweak> { - public: - MemberNameTable(int methods_cnt); - ~MemberNameTable(); - void add_member_name(int index, jweak mem_name_ref); - oop get_member_name(int index); - - #if INCLUDE_JVMTI - public: - // RedefineClasses() API support: - // If a MemberName refers to old_method then update it - // to refer to new_method. - void adjust_method_entries(Method** old_methods, Method** new_methods, - int methods_length, bool *trace_name_printed); - private: - oop find_member_name_by_method(Method* old_method); - #endif // INCLUDE_JVMTI - }; - #endif // SHARE_VM_PRIMS_METHODHANDLES_HPP --- 226,231 ----
< prev index next >