Searched refs:method_size (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp45 // We put all oops and method_size first for better gc cache locality.
76 // | method_size | max_stack |
239 int method_size() const { return _method_size; } function in class:methodOopDesc
544 int object_size() const { return method_size(); }
546 bool object_is_parsable() const { return method_size() > 0; }
H A DmethodKlass.cpp234 st->print_cr(" - method size: %d", m->method_size());
H A DmethodOop.cpp1034 int new_method_size = newm->method_size();
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.cpp1057 float method_size = (size() - min_size) / MAX2(1, max_size - min_size); local
1059 if (method_size < 0.05) size_factor = 4; // 2 sigmas better than avg.
1060 else if (method_size < 0.15) size_factor = 2; // 1 sigma better than avg.
1061 else if (method_size < 0.5) size_factor = 1; // better than avg.
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp2685 static int method_size; // size of method objects in words member in class:ClassStatistics
2705 method_size += m->size();
2708 method_size += m->stackmap_data()->size();
2725 (method_size + debug_size) * oopSize, method_size * oopSize, debug_size * oopSize);
2735 int ClassStatistics::method_size = 0; member in class:ClassStatistics

Completed in 50 milliseconds