Lines Matching refs:length

126     public void visitInvalid(int opcode, int offset, int length) {
127 visitCommon(offset, length, true);
132 public void visitNoArgs(int opcode, int offset, int length, Type type) {
136 visitCommon(offset, length, false);
141 visitCommon(offset, length, false);
142 visitThrowing(offset, length, false);
168 visitCommon(offset, length, true);
169 visitThrowing(offset, length, true);
178 visitCommon(offset, length, true);
180 visitThrowing(offset, length, true);
185 visitCommon(offset, length, true);
193 public void visitLocal(int opcode, int offset, int length,
196 visitCommon(offset, length, false);
199 visitCommon(offset, length, true);
205 public void visitConstant(int opcode, int offset, int length,
207 visitCommon(offset, length, true);
218 visitThrowing(offset, length, true);
224 public void visitBranch(int opcode, int offset, int length,
228 visitCommon(offset, length, false);
243 int next = offset + length;
244 visitCommon(offset, length, true);
256 public void visitSwitch(int opcode, int offset, int length,
258 visitCommon(offset, length, false);
271 public void visitNewarray(int offset, int length, CstType type,
273 visitCommon(offset, length, true);
274 visitThrowing(offset, length, true);
400 * @param length length of the instruction, in bytes
405 private void visitCommon(int offset, int length, boolean nextIsLive) {
414 addWorkIfNecessary(offset + length, false);
423 Bits.set(blockSet, offset + length);
433 * @param length length of the instruction, in bytes
438 private void visitThrowing(int offset, int length, boolean nextIsLive) {
439 int next = offset + length;