Searched refs:localvariable_table_length (Results 1 - 17 of 17) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DoopFactory.hpp89 int localvariable_table_length,
101 int localvariable_table_length,
H A DoopFactory.cpp142 int localvariable_table_length,
150 localvariable_table_length, exception_table_length,
158 int localvariable_table_length,
168 localvariable_table_length,
140 new_constMethod(int byte_code_size, int compressed_line_number_size, int localvariable_table_length, int exception_table_length, int checked_exceptions_length, bool is_conc_safe, TRAPS) argument
156 new_method(int byte_code_size, AccessFlags access_flags, int compressed_line_number_size, int localvariable_table_length, int exception_table_length, int checked_exceptions_length, bool is_conc_safe, TRAPS) argument
/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodKlass.hpp48 int localvariable_table_length,
H A DconstMethodKlass.cpp67 int localvariable_table_length,
75 localvariable_table_length,
91 localvariable_table_length,
65 allocate(int byte_code_size, int compressed_line_number_size, int localvariable_table_length, int exception_table_length, int checked_exceptions_length, bool is_conc_safe, TRAPS) argument
H A DconstMethodOop.cpp150 int constMethodOopDesc::localvariable_table_length() const { function in class:constMethodOopDesc
H A DmethodKlass.cpp275 st->print_cr(" - localvar length: %d", m->localvariable_table_length());
276 if (m->localvariable_table_length() > 0) {
280 for (int i = 0; i < m->localvariable_table_length(); i++) {
H A DconstMethodOop.hpp276 int localvariable_table_length() const;
H A DmethodOop.hpp448 int localvariable_table_length() const function in class:methodOopDesc
449 { return constMethod()->localvariable_table_length(); }
H A DmethodOop.cpp1019 int localvariable_len = m->localvariable_table_length();
1070 assert(newm->localvariable_table_length() == localvariable_len, "check");
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp427 int localvariable_table_length = method()->localvariable_table_length(); local
428 if (localvariable_table_length > 0) {
430 for (int i = 0; i < localvariable_table_length; i++) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.cpp175 local_variable_table_length = method->localvariable_table_length();
409 assert(method->localvariable_table_length() == num_entries, "just checking");
412 for (int j=0; j<method->localvariable_table_length(); j++) {
H A DjvmtiImpl.cpp656 jint num_entries = method_oop->localvariable_table_length();
H A DjvmtiEnv.cpp2837 jint num_entries = method_oop->localvariable_table_length();
H A DjvmtiRedefineClasses.cpp2506 int lvt_length = method->localvariable_table_length();
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1473 u2* localvariable_table_length,
1478 *localvariable_table_length = cfs->get_u2(CHECK_NULL);
1479 unsigned int size = (*localvariable_table_length) * sizeof(Classfile_LVT_Element) / sizeof(u2);
1482 guarantee_property(code_attribute_length == (sizeof(*localvariable_table_length) + size * sizeof(u2)),
1491 for(int i = 0; i < (*localvariable_table_length); i++) {
1894 u2* localvariable_table_length; local
2019 localvariable_table_length = NEW_RESOURCE_ARRAY_IN_THREAD(
2031 REALLOC_RESOURCE_ARRAY(u2, localvariable_table_length, lvt_cnt, max_lvt_cnt);
2039 &localvariable_table_length[lvt_cnt],
2042 total_lvt_length += localvariable_table_length[lvt_cn
1469 parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length, constantPoolHandle cp, u2* localvariable_table_length, bool isLVTT, TRAPS) argument
[all...]
H A DclassFileParser.hpp196 constantPoolHandle cp, u2* localvariable_table_length,
H A Dverifier.cpp1747 int localvariable_table_length = _method()->localvariable_table_length();
1748 if (localvariable_table_length > 0) {
1750 for (int i = 0; i < localvariable_table_length; i++) {

Completed in 95 milliseconds