Lines Matching defs:codeLength

67     private int codeLength;
121 codeLength = 0;
167 codeFragmentOffsets[level] = codeLength;
191 println("["+codeLength+"] <- ", instruction.toString(oldInstructionOffset));
195 int newCodeLength = codeLength + instruction.length(codeLength);
200 oldInstructionOffsets[codeLength] = oldInstructionOffset;
203 instructionOffsetMap[level][oldInstructionOffset] = codeLength;
210 codeLength,
212 //instruction.write(code, codeLength);
215 codeLength = newCodeLength;
229 println("["+codeLength+"] <- ", "[" + oldInstructionOffset + "] (label)");
233 ensureCodeLength(codeLength + 1);
236 oldInstructionOffsets[codeLength] = oldInstructionOffset;
239 instructionOffsetMap[level][oldInstructionOffset] = codeLength;
273 println("["+codeLength+"] <- ", instruction.toString());
277 int newCodeLength = codeLength + instruction.length(codeLength);
286 codeLength,
288 //instruction.write(code, codeLength);
291 codeLength = newCodeLength;
346 while (instructionOffset < codeLength)
364 //instruction.write(code, codeLength);
376 maximumCodeLength += codeLength - codeFragmentOffsets[level] -
427 if (codeAttribute.u4codeLength < codeLength)
429 codeAttribute.code = new byte[codeLength];
433 codeAttribute.u4codeLength = codeLength;
434 System.arraycopy(code, 0, codeAttribute.code, 0, codeLength);
715 newInstructionOffset > codeLength)
717 throw new IllegalArgumentException("Invalid instruction offset ["+newInstructionOffset +"] in code with length ["+codeLength+"]");
768 newInstructionOffset < codeLength;
803 int codeLength)
811 if (startPC < codeLength &&