Searched defs:start_pc (Results 1 - 18 of 18) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DLineNumberTable_attribute.java67 start_pc = cr.readUnsignedShort();
75 public final int start_pc; field in class:LineNumberTable_attribute.Entry
H A DLocalVariableTable_attribute.java67 start_pc = cr.readUnsignedShort();
78 public final int start_pc; field in class:LocalVariableTable_attribute.Entry
H A DLocalVariableTypeTable_attribute.java67 start_pc = cr.readUnsignedShort();
78 public final int start_pc; field in class:LocalVariableTypeTable_attribute.Entry
H A DCharacterRangeTable_attribute.java73 start_pc = cr.readUnsignedShort();
84 public final int start_pc; field in class:CharacterRangeTable_attribute.Entry
H A DCode_attribute.java148 start_pc = cr.readUnsignedShort();
154 public final int start_pc; field in class:Code_attribute.Exception_data
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DLineNumber.java73 private int start_pc; // Program Counter (PC) corresponds to line field in class:LineNumber
94 * @param start_pc Program Counter (PC) corresponds to
97 public LineNumber(int start_pc, int line_number) argument
99 this.start_pc = start_pc;
122 file.writeShort(start_pc);
134 public final int getStartPC() { return start_pc; }
144 * @param start_pc.
146 public final void setStartPC(int start_pc) { argument
147 this.start_pc
[all...]
H A DCodeException.java75 private int start_pc; // Range in the code the exception handler is field in class:CodeException
76 private int end_pc; // active. start_pc is inclusive, end_pc exclusive
103 * @param start_pc Range in the code the exception handler is active,
104 * start_pc is inclusive while
112 public CodeException(int start_pc, int end_pc, int handler_pc, argument
115 this.start_pc = start_pc;
139 file.writeShort(start_pc);
164 public final int getStartPC() { return start_pc; }
188 * @param start_pc star
190 setStartPC(int start_pc) argument
[all...]
H A DLocalVariable.java74 private int start_pc; // Range in which the variable is valid field in class:LocalVariable
107 * @param start_pc Range in which the variable
114 public LocalVariable(int start_pc, int length, int name_index, argument
118 this.start_pc = start_pc;
145 file.writeShort(start_pc);
200 public final int getStartPC() { return start_pc; }
236 * @param start_pc Specify range where the local variable is valid.
238 public final void setStartPC(int start_pc) { argument
239 this.start_pc
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DCodeExceptionGen.java79 private InstructionHandle start_pc; field in class:CodeExceptionGen
88 * @param start_pc Start of handled region (inclusive)
93 public CodeExceptionGen(InstructionHandle start_pc, InstructionHandle end_pc, argument
95 setStartPC(start_pc);
111 return new CodeException(start_pc.getPosition(),
118 * @param start_pc Start of handled region (inclusive)
120 public final void setStartPC(InstructionHandle start_pc) { argument
121 BranchInstruction.notifyTargetChanging(this.start_pc, this);
122 this.start_pc = start_pc;
[all...]
H A DMethodGen.java480 * @param start_pc Start of region (inclusive)
487 public CodeExceptionGen addExceptionHandler(InstructionHandle start_pc, argument
491 if((start_pc == null) || (end_pc == null) || (handler_pc == null))
494 CodeExceptionGen c = new CodeExceptionGen(start_pc, end_pc,
/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.hpp104 u2 start_pc; member in class:VALUE_OBJ_CLASS_SPEC
H A DgenerateOopMap.cpp1194 int start_pc = exct.start_pc(i); local
1199 if (start_pc <= bci && bci < end_pc) {
2084 excps.start_pc(i), excps.end_pc(i), excps.handler_pc(i));
H A DmethodOop.hpp873 u2 start_pc(int idx) const { function in class:ExceptionTable
875 return _table[idx].start_pc;
880 _table[idx].start_pc = value;
/openjdk7/jdk/src/share/javavm/export/
H A Djvm.h748 jint start_pc; member in struct:__anon578
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h793 jint start_pc; member in struct:__anon371
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java1740 newlv.start_pc = lv.start_pc;
1828 char start_pc = Character.MAX_VALUE; field in class:Code.LocalVar
1838 return "" + sym + " in register " + ((int)reg) + " starts at pc=" + ((int)start_pc) + " length=" + ((int)length);
1886 if (v.start_pc == Character.MAX_VALUE)
1887 v.start_pc = (char)cp;
1897 lvar[adr].start_pc != Character.MAX_VALUE) {
1899 char length = (char)(curPc() - v.start_pc);
1905 v.start_pc = Character.MAX_VALUE;
1915 if (v.start_pc !
[all...]
/openjdk7/jdk/src/share/demo/jvmti/java_crw_demo/
H A Djava_crw_demo.c1626 ByteOffset start_pc; local
1629 start_pc = readU2(ci);
1631 if ( start_pc == 0 ) {
1634 new_start_pc = method_code_map(mi, start_pc);
1655 ByteOffset start_pc; local
1662 start_pc = readU2(ci);
1665 if ( start_pc == 0 ) {
1668 new_start_pc = method_code_map(mi, start_pc);
1670 end_pc = start_pc + length;
1931 ByteOffset start_pc; local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp1305 cfs->guarantee_more(8 * exception_table_length, CHECK_NULL); // start_pc, end_pc, handler_pc, catch_type_index
1309 u2 start_pc = cfs->get_u2_fast(); local
1313 guarantee_property((start_pc < end_pc) && (end_pc <= code_length),
1337 // Each entry is a u2 start_pc, and a u2 line_number
1357 u2 bci = cfs->get_u2_fast(); // start_pc
1492 u2 start_pc = cfs->get_u2_fast(); local
1498 u4 end_pc = (u4)start_pc + (u4)length;
1500 if (start_pc >= code_length) {
1502 "Invalid start_pc %u in %s in class file %s",
1503 start_pc, tbl_nam
[all...]

Completed in 114 milliseconds