Home | History | Annotate | Download | only in rop

Lines Matching refs:start

30     /** {@code >= 0;} bytecode offset (inclusive) of the start of the block */
31 private final int start;
33 /** {@code > start;} bytecode offset (exclusive) of the end of the block */
46 * @param start {@code >= 0;} bytecode offset (inclusive) of the start
48 * @param end {@code > start;} bytecode offset (exclusive) of the end
55 public ByteBlock(int label, int start, int end, IntList successors,
61 if (start < 0) {
62 throw new IllegalArgumentException("start < 0");
65 if (end <= start) {
66 throw new IllegalArgumentException("end <= start");
87 this.start = start;
96 return '{' + Hex.u2(label) + ": " + Hex.u2(start) + ".." +
110 * Gets the bytecode offset (inclusive) of the start of this block.
112 * @return {@code >= 0;} the start offset
115 return start;