Lines Matching refs:length

123     public void visitInvalid(int opcode, int offset, int length) {
124 visitCommon(offset, length, true);
128 public void visitNoArgs(int opcode, int offset, int length, Type type) {
132 visitCommon(offset, length, false);
137 visitCommon(offset, length, false);
138 visitThrowing(offset, length, false);
164 visitCommon(offset, length, true);
165 visitThrowing(offset, length, true);
174 visitCommon(offset, length, true);
176 visitThrowing(offset, length, true);
181 visitCommon(offset, length, true);
188 public void visitLocal(int opcode, int offset, int length,
191 visitCommon(offset, length, false);
194 visitCommon(offset, length, true);
199 public void visitConstant(int opcode, int offset, int length,
201 visitCommon(offset, length, true);
211 visitThrowing(offset, length, true);
216 public void visitBranch(int opcode, int offset, int length,
220 visitCommon(offset, length, false);
235 int next = offset + length;
236 visitCommon(offset, length, true);
247 public void visitSwitch(int opcode, int offset, int length,
249 visitCommon(offset, length, false);
261 public void visitNewarray(int offset, int length, CstType type,
263 visitCommon(offset, length, true);
264 visitThrowing(offset, length, true);
390 * @param length length of the instruction, in bytes
395 private void visitCommon(int offset, int length, boolean nextIsLive) {
404 addWorkIfNecessary(offset + length, false);
413 Bits.set(blockSet, offset + length);
423 * @param length length of the instruction, in bytes
428 private void visitThrowing(int offset, int length, boolean nextIsLive) {
429 int next = offset + length;