Searched defs:new_method (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DoopFactory.cpp156 methodOop oopFactory::new_method(int byte_code_size, AccessFlags access_flags, function in class:oopFactory
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.cpp521 // to refer to new_method.
523 methodOop new_method, bool * trace_name_printed) {
530 _f2 = (intptr_t)new_method;
540 new_method->name()->as_C_string(),
541 new_method->signature()->as_C_string()));
558 _f1 = new_method;
568 new_method->name()->as_C_string(),
569 new_method->signature()->as_C_string()));
668 // old_methods, replace it with the corresponding new_method.
693 methodOop new_method local
522 adjust_method_entry(methodOop old_method, methodOop new_method, bool * trace_name_printed) argument
[all...]
H A DklassVtable.cpp620 methodOop new_method = new_methods[j]; local
629 put_method_at(new_method, index);
640 new_method->name()->as_C_string(),
641 new_method->signature()->as_C_string()));
1000 methodOop new_method = new_methods[j]; local
1009 ime->initialize(new_method);
1020 new_method->name()->as_C_string(),
1021 new_method->signature()->as_C_string()));
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.cpp153 void JvmtiEnvThreadState::compare_and_set_current_location(methodOop new_method, argument
156 int new_bci = new_location - new_method->code_base();
160 jmethodID new_method_id = new_method->jmethod_id();
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) {
48 check_stack_and_locals_size(old_method, new_method)));
53 _new_cp = new_method->constants();
55 BytecodeStream s_new(new_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_method))
82 _new_cp = new_method
433 check_stack_and_locals_size(methodOop old_method, methodOop new_method) argument
[all...]
H A DjvmtiRedefineClasses.cpp1431 methodHandle new_method; local
1432 rewrite_cp_refs_in_method(method, &new_method, CHECK_false);
1433 if (!new_method.is_null()) {
1435 methods->obj_at_put(i, new_method());
2688 methodOop new_method = _matching_new_methods[j]; local
2698 if (MethodComparator::methods_EMCP(old_method, new_method)) {
2927 methodOop new_method = strip_and_search_for_new_native(old_method); local
2928 if (new_method != NULL) {
2932 new_method->set_native_function(old_method->native_function(),
2988 methodOop new_method; local
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.hpp44 inline void set_method(methodOop new_method) { argument
45 _method = new_method;
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp408 ciMethod* new_method = new (arena()) ciMethod(holder, name, signature, accessor); local
410 init_ident_of(new_method);
411 _unloaded_methods->append(new_method);
413 return new_method;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp699 oop Reflection::new_method(methodHandle method, bool intern_name, bool for_constant_pool_access, TRAPS) { function in class:Reflection
764 assert(method()->is_initializer(), "should call new_method instead");

Completed in 104 milliseconds