Searched refs:checked_exceptions_length (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.cpp39 int checked_exceptions_length) {
44 if (checked_exceptions_length > 0) {
46 extra_bytes += checked_exceptions_length * sizeof(CheckedExceptionElement);
136 int constMethodOopDesc::checked_exceptions_length() const { function in class:constMethodOopDesc
35 object_size(int code_size, int compressed_line_number_size, int local_variable_table_length, int exception_table_length, int checked_exceptions_length) argument
H A DconstMethodKlass.hpp50 int checked_exceptions_length,
H A DconstMethodOop.hpp248 int checked_exceptions_length);
272 int checked_exceptions_length() const;
H A DconstMethodKlass.cpp69 int checked_exceptions_length,
77 checked_exceptions_length);
89 cm->set_inlined_tables_length(checked_exceptions_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 DmethodKlass.cpp255 st->print_cr(" - checked ex length: %d", m->checked_exceptions_length());
256 if (m->checked_exceptions_length() > 0) {
260 for (int i = 0; i < m->checked_exceptions_length(); i++) {
H A DmethodOop.hpp440 int checked_exceptions_length() const function in class:methodOopDesc
441 { return constMethod()->checked_exceptions_length(); }
H A DmethodOop.cpp489 int length = this_oop->checked_exceptions_length();
1018 int checked_exceptions_len = m->checked_exceptions_length();
1068 assert(newm->checked_exceptions_length() == checked_exceptions_len, "check");
/openjdk7/hotspot/src/share/vm/memory/
H A DoopFactory.hpp91 int checked_exceptions_length,
103 int checked_exceptions_length,
H A DoopFactory.cpp144 int checked_exceptions_length,
151 checked_exceptions_length, is_conc_safe,
160 int checked_exceptions_length,
170 checked_exceptions_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/prims/
H A DjvmtiClassFileReconstituter.cpp239 int checked_exceptions_length = const_method->checked_exceptions_length(); local
242 2 * checked_exceptions_length; // exception_index_table
246 write_u2(checked_exceptions_length);
247 for (int index = 0; index < checked_exceptions_length; index++) {
H A DjvmtiRedefineClasses.cpp2469 int cext_length = method->checked_exceptions_length();
H A Djvm.cpp2218 int length = methodOop(method)->checked_exceptions_length();
2233 return methodOop(method)->checked_exceptions_length();
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1604 u2* ClassFileParser::parse_checked_exceptions(u2* checked_exceptions_length, argument
1608 cfs->guarantee_more(2, CHECK_NULL); // checked_exceptions_length
1609 *checked_exceptions_length = cfs->get_u2_fast();
1610 unsigned int size = (*checked_exceptions_length) * sizeof(CheckedExceptionElement) / sizeof(u2);
1618 u2 len = *checked_exceptions_length;
1631 guarantee_property(method_attribute_length == (sizeof(*checked_exceptions_length) +
1884 u2 checked_exceptions_length = 0; local
2101 parse_checked_exceptions(&checked_exceptions_length,
2179 checked_exceptions_length,
2240 if (checked_exceptions_length >
[all...]
H A DclassFileParser.hpp198 u2* parse_checked_exceptions(u2* checked_exceptions_length, u4 method_attribute_length,

Completed in 98 milliseconds