Searched refs:code_length (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java85 private int code_length; // Length of code in bytes field in class:Code
118 code_length = file.readInt();
119 code = new byte[code_length]; // Read byte code
196 file.writeInt(code_length);
197 file.write(code, 0, code_length);
264 + code_length /*byte-code*/
297 code_length = (code == null)? 0 : code.length;
331 ", code_length = " + code_length + ")\n" +
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryCode.java57 // JVM 4.7.4 CodeAttribute.code_length
58 int code_length = in.readInt();
59 this.code = new byte[code_length];
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java61 code_length = cr.readInt();
62 code = new byte[code_length];
140 public final int code_length; field in class:Code_attribute
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp159 code_array(), code_length(),
310 while (bci < code_length()) {
559 int length = MAX2(code_length() + delta, code_length() * (100+code_slop_pct()) / 100);
562 if (delta == 0 && code_length() <= MAX_METHOD_LENGTH) {
574 memcpy(new_code_array, code_array(), code_length());
577 memcpy(new_code_array, method()->code_base(), code_length());
592 if (delta > 0 && code_length() + delta > code_array_length()) {
612 memmove(addr_at(next_bci + delta), addr_at(next_bci), code_length() - next_bci);
613 set_code_length(code_length()
[all...]
H A Drelocator.hpp85 int code_length() const { return _code_length; } function in class:Relocator
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.hpp260 char* generate_code_data(methodHandle m, u4 code_length, TRAPS);
261 void verify_exception_handler_table(u4 code_length, char* code_data,
263 void verify_local_variable_table(u4 code_length, char* code_data, TRAPS);
292 RawBytecodeStream* bcs, u4 code_length, char* code_data,
301 StackMapFrame* current_frame, u4 code_length, bool* this_uninit,
305 RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
H A DclassFileParser.hpp190 u2* parse_exception_table(u4 code_length, u4 exception_table_length,
193 u4 code_attribute_length, u4 code_length,
195 u2* parse_localvariable_table(u4 code_length, u2 max_locals, u4 code_attribute_length,
200 void parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index,
H A Dverifier.cpp598 u4 code_length = m->code_size();
601 char* code_data = generate_code_data(m, code_length, CHECK_VERIFY(this));
603 int ex_min = code_length;
608 code_length, code_data, ex_min, ex_max, CHECK_VERIFY(this));
613 verify_local_variable_table(code_length, code_data, CHECK_VERIFY(this));
618 StackMapReader reader(this, &stream, code_data, code_length, THREAD);
620 code_data, code_length, CHECK_VERIFY(this));
1487 &bcs, code_length, code_data, &current_frame,
1551 &bcs, code_length, &current_frame,
1557 &bcs, code_length,
[all...]
H A DclassFileParser.cpp1297 u2* ClassFileParser::parse_exception_table(u4 code_length, argument
1313 guarantee_property((start_pc < end_pc) && (end_pc <= code_length),
1316 guarantee_property(handler_pc < code_length,
1332 u4 code_attribute_length, u4 code_length,
1359 guarantee_property(bci < code_length,
1469 u2* ClassFileParser::parse_localvariable_table(u4 code_length, argument
1500 if (start_pc >= code_length) {
1505 if (end_pc > code_length) {
1544 void ClassFileParser::parse_type_array(u2 array_length, u4 code_length, u4* u1_index, u4* u2_index, argument
1564 offset < code_length,
1331 parse_linenumber_table( u4 code_attribute_length, u4 code_length, CompressedLineNumberWriteStream** write_stream, TRAPS) argument
1879 u4 code_length = 0; local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DLocalVariableTableWriter.java105 int pc = codeAttr.code_length;
H A DLocalVariableTypeTableWriter.java106 int pc = codeAttr.code_length;
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp286 const int code_length = method->code_size(); local
289 for (int bci = 0; bci < code_length; bci += bc_length) {
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c256 jint code_length; member in struct:context_type
342 int code_length, unsigned char* code);
939 int code_length, unsigned char* code)
955 context->code_length = code_length;
962 code_data = NEW(int, code_length);
988 for (i = 0, offset = 0; offset < code_length; i++) {
989 int length = instruction_length(&code[offset], code + code_length);
993 if (next_offset > code_length)
1020 for (inumber = 0, offset = 0; offset < code_length; inumbe
938 verify_method(context_type *context, jclass cb, int method_index, int code_length, unsigned char* code) argument
1568 int code_length = context->code_length; local
1690 int code_length = context->code_length; local
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiRedefineClasses.cpp1459 int code_length = method->code_size(); local
1462 for (int bci = 0; bci < code_length; bci += bc_length) {
1528 code_length = method->code_size();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java1298 final int code_length = nextInt();
1299 bp += code_length;

Completed in 70 milliseconds