src/share/vm/ci/ciEnv.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 7092712 Cdiff src/share/vm/ci/ciEnv.hpp

src/share/vm/ci/ciEnv.hpp

Print this page

        

*** 151,161 **** int field_index); ciMethod* get_method_by_index_impl(constantPoolHandle cpool, int method_index, Bytecodes::Code bc, ciInstanceKlass* loading_klass); ciMethod* get_fake_invokedynamic_method_impl(constantPoolHandle cpool, ! int index, Bytecodes::Code bc); // Helper methods bool check_klass_accessibility(ciKlass* accessing_klass, klassOop resolved_klassOop); methodOop lookup_method(instanceKlass* accessor, --- 151,162 ---- int field_index); ciMethod* get_method_by_index_impl(constantPoolHandle cpool, int method_index, Bytecodes::Code bc, ciInstanceKlass* loading_klass); ciMethod* get_fake_invokedynamic_method_impl(constantPoolHandle cpool, ! int index, Bytecodes::Code bc, ! ciInstanceKlass* accessor); // Helper methods bool check_klass_accessibility(ciKlass* accessing_klass, klassOop resolved_klassOop); methodOop lookup_method(instanceKlass* accessor,
*** 190,201 **** // Get a ciMethod representing either an unfound method or // a method with an unloaded holder. Ensures uniqueness of // the result. ciMethod* get_unloaded_method(ciInstanceKlass* holder, ciSymbol* name, ! ciSymbol* signature) { ! return _factory->get_unloaded_method(holder, name, signature); } // Get a ciKlass representing an unloaded klass. // Ensures uniqueness of the result. ciKlass* get_unloaded_klass(ciKlass* accessing_klass, --- 191,203 ---- // Get a ciMethod representing either an unfound method or // a method with an unloaded holder. Ensures uniqueness of // the result. ciMethod* get_unloaded_method(ciInstanceKlass* holder, ciSymbol* name, ! ciSymbol* signature, ! ciInstanceKlass* accessor) { ! return _factory->get_unloaded_method(holder, name, signature, accessor); } // Get a ciKlass representing an unloaded klass. // Ensures uniqueness of the result. ciKlass* get_unloaded_klass(ciKlass* accessing_klass,
src/share/vm/ci/ciEnv.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File