Searched refs:start_pc (Results 1 - 25 of 38) sorted by relevance

12

/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 DLocalVariableGen.java114 * both a start_pc+length ending at the last instruction and
115 * start_pc+length ending at first index beyond the end of the code are
122 int start_pc = start.getPosition();
123 int length = end.getPosition() - start_pc;
131 return new LocalVariable(start_pc, length, name_index,
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/langtools/src/share/classes/com/sun/tools/classfile/
H A DCharacterRangeTable_attribute.java73 start_pc = cr.readUnsignedShort();
84 public final int start_pc; field in class:CharacterRangeTable_attribute.Entry
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 DCode_attribute.java148 start_pc = cr.readUnsignedShort();
154 public final int start_pc; field in class:Code_attribute.Exception_data
H A DClassWriter.java373 out.writeShort(entry.start_pc);
393 out.writeShort(exception_data.start_pc);
448 out.writeShort(entry.start_pc);
460 out.writeShort(entry.start_pc);
475 out.writeShort(entry.start_pc);
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DLocalVariableTableWriter.java54 return (pc == entry.start_pc);
59 return (pc == entry.start_pc + entry.length);
92 put(entry.start_pc, entry);
93 put(entry.start_pc + entry.length, entry);
H A DLocalVariableTypeTableWriter.java55 return (pc == entry.start_pc);
60 return (pc == entry.start_pc + entry.length);
93 put(entry.start_pc, entry);
94 put(entry.start_pc + entry.length, entry);
H A DSourceWriter.java116 int start_pc = e.start_pc;
118 SortedSet<Integer> pcLines = map.get(start_pc);
121 map.put(start_pc, pcLines);
H A DTryBlockWriter.java49 return (pc == entry.start_pc);
88 put(entry.start_pc, entry);
H A DAttributeWriter.java180 e.start_pc, e.end_pc,
185 e.start_pc, e.end_pc,
354 println("line " + entry.line_number + ": " + entry.start_pc);
367 entry.start_pc, entry.length, entry.index,
381 entry.start_pc, entry.length, entry.index,
H A DCodeWriter.java217 handler.start_pc, handler.end_pc, handler.handler_pc));
/openjdk7/langtools/test/tools/javac/multicatch/
H A DPos05.java103 ea.exception_table[i].start_pc != firstExceptionTable.start_pc ||
/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodOop.hpp104 u2 start_pc; member in class:VALUE_OBJ_CLASS_SPEC
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/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...]
H A DClassWriter.java1021 Assert.check(var.start_pc >= 0
1022 && var.start_pc <= code.cp);
1023 databuf.appendChar(var.start_pc);
1025 && (var.start_pc + var.length) <= code.cp);
1051 databuf.appendChar(var.start_pc);
/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/runtime/
H A Drelocator.cpp397 if (table.start_pc(index) > bci) {
398 table.set_start_pc(index, table.start_pc(index) + delta);

Completed in 82 milliseconds

12