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

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java88 private int exception_table_length; field in class:Code
125 exception_table_length = file.readUnsignedShort();
126 exception_table = new CodeException[exception_table_length];
128 for(int i=0; i < exception_table_length; i++)
199 file.writeShort(exception_table_length);
200 for(int i=0; i < exception_table_length; i++)
266 + 8 * exception_table_length /* exception table */
305 exception_table_length = (exception_table == null)? 0 :
334 if(exception_table_length > 0) {
337 for(int i=0; i < exception_table_length;
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.cpp38 int exception_table_length,
53 if (exception_table_length > 0) {
55 extra_bytes += exception_table_length * sizeof(ExceptionTableElement);
163 int constMethodOopDesc::exception_table_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.hpp49 int exception_table_length,
H A DconstMethodOop.hpp247 int exception_table_length,
280 int exception_table_length() const;
H A DconstMethodKlass.cpp68 int exception_table_length,
76 exception_table_length,
92 exception_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.hpp292 int exception_table_length() const function in class:methodOopDesc
293 { return constMethod()->exception_table_length(); }
862 _length = m->exception_table_length();
H A DmethodOop.cpp1020 int exception_table_len = m->exception_table_length();
1069 assert(newm->exception_table_length() == exception_table_len, "check");
/openjdk7/hotspot/src/share/vm/memory/
H A DoopFactory.hpp90 int exception_table_length,
102 int exception_table_length,
H A DoopFactory.cpp143 int exception_table_length,
150 localvariable_table_length, exception_table_length,
159 int exception_table_length,
169 exception_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/prims/
H A DjvmtiClassFileReconstituter.cpp126 // JVMSpec| u2 exception_table_length;
131 // JVMSpec| } exception_table[exception_table_length];
195 int exception_table_length = exception_table.length(); local
200 2 + // exception_table_length
201 (2+2+2+2) * exception_table_length + // exception_table
211 write_u2(exception_table_length);
212 for (int index = 0; index < exception_table_length; index++) {
H A Djvm.cpp2273 return methodOop(method)->exception_table_length();
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.hpp160 int exception_table_length() const { check_is_loaded(); return _handler_count; } function in class:ciMethod
H A DciMethod.cpp82 _handler_count = h_m()->exception_table_length();
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1298 u4 exception_table_length,
1305 cfs->guarantee_more(8 * exception_table_length, CHECK_NULL); // start_pc, end_pc, handler_pc, catch_type_index
1308 for (unsigned int i = 0; i < exception_table_length; i++) {
1326 cfs->skip_u2_fast(exception_table_length * 4);
1881 u2 exception_table_length = 0; local
1967 cfs->guarantee_more(2, CHECK_(nullHandle)); // exception_table_length
1968 exception_table_length = cfs->get_u2_fast();
1969 if (exception_table_length > 0) {
1971 parse_exception_table(code_length, exception_table_length, cp, CHECK_(nullHandle));
1989 sizeof(exception_table_length)
1297 parse_exception_table(u4 code_length, u4 exception_table_length, constantPoolHandle cp, TRAPS) argument
[all...]
H A DclassFileParser.hpp190 u2* parse_exception_table(u4 code_length, u4 exception_table_length,
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp40 XHandlers::XHandlers(ciMethod* method) : _list(method->exception_table_length()) {
46 assert(s.count() == method->exception_table_length(), "exception table lengths inconsistent");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java1300 final char exception_table_length = nextChar();
1301 bp += exception_table_length * 8;

Completed in 461 milliseconds