Searched refs:old_method (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DmethodComparator.hpp47 static int check_stack_and_locals_size(methodOop old_method, methodOop new_method);
55 static bool methods_EMCP(methodOop old_method, methodOop new_method);
57 static bool methods_switchable(methodOop old_method, methodOop new_method, BciMap &bci_map);
H A DmethodComparator.cpp41 bool MethodComparator::methods_EMCP(methodOop old_method, methodOop new_method) { argument
42 if (old_method->code_size() != new_method->code_size())
44 if (check_stack_and_locals_size(old_method, new_method) != 0) {
47 old_method->name()->as_C_string(),
48 check_stack_and_locals_size(old_method, new_method)));
52 _old_cp = old_method->constants();
54 BytecodeStream s_old(old_method);
72 bool MethodComparator::methods_switchable(methodOop old_method, methodOop new_method, argument
74 if (old_method->code_size() > new_method->code_size())
78 if (! check_stack_and_locals_size(old_method, new_metho
433 check_stack_and_locals_size(methodOop old_method, methodOop new_method) argument
[all...]
H A DjvmtiRedefineClasses.cpp2669 methodOop old_method = _matching_old_methods[j]; local
2670 jmethodID jmid = old_method->find_jmethod_id_or_null();
2687 methodOop old_method = _matching_old_methods[j]; local
2694 != old_method) {
2698 if (MethodComparator::methods_EMCP(old_method, new_method)) {
2772 old_method->set_is_obsolete();
2778 // u2 old_num = old_method->method_idnum();
2779 old_method->set_method_idnum(num);
2786 old_method->name()->as_C_string(),
2787 old_method
2792 methodOop old_method = _deleted_methods[i]; local
2924 methodOop old_method = old_methods[j]; local
2987 methodOop old_method; local
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.cpp520 // If this constantPoolCacheEntry refers to old_method then update it
522 bool ConstantPoolCacheEntry::adjust_method_entry(methodOop old_method, argument
527 if (f2_as_vfinal_method() == old_method) {
528 // match old_method so need an update
535 Klass::cast(old_method->method_holder())->external_name()));
557 if ((oop)_f1 == old_method) {
563 Klass::cast(old_method->method_holder())->external_name()));
692 methodOop old_method = old_methods[j]; local
695 if (entry_at(i)->adjust_method_entry(old_method, new_method,
697 // current old_method matche
[all...]
H A DklassVtable.cpp619 methodOop old_method = old_methods[j]; local
623 // by using: old_method->vtable_index()
628 if (unchecked_method_at(index) == old_method) {
635 Klass::cast(old_method->method_holder())->external_name()));
999 methodOop old_method = old_methods[j]; local
1006 // old_method references.
1008 if (ime->method() == old_method) {
1015 Klass::cast(old_method->method_holder())->external_name()));
H A DcpCacheOop.hpp359 // If this constantPoolCacheEntry refers to old_method then update it
364 bool adjust_method_entry(methodOop old_method, methodOop new_method,
H A DinstanceKlass.cpp2598 methodOop old_method = (methodOop) old_methods->obj_at(i); local
2599 methodHandle old_method_h(old_method);
2691 methodOop old_method = (methodOop) old_methods->obj_at(i); local
2692 Symbol* m_name = old_method->name();
2693 Symbol* m_signature = old_method->signature();
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp691 methodOop old_method = (methodOop) old_methods->obj_at(i); local
692 nmethod *nm = old_method->code();

Completed in 1277 milliseconds