Searched defs:localvariable_table_length (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.cpp150 int constMethodOopDesc::localvariable_table_length() const { function in class:constMethodOopDesc
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 DmethodOop.hpp448 int localvariable_table_length() const function in class:methodOopDesc
449 { return constMethod()->localvariable_table_length(); }
/openjdk7/hotspot/src/share/vm/memory/
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/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/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...]

Completed in 59 milliseconds