Lines Matching refs:codeLength
63 private int codeLength; field in CodeAttributeComposer
109 codeLength = 0; in reset()
155 codeFragmentOffsets[level] = codeLength; in beginCodeFragment()
172 println("["+codeLength+"] <- ", instruction.toString(oldInstructionOffset)); in appendInstruction()
176 int newCodeLength = codeLength + instruction.length(codeLength); in appendInstruction()
181 oldInstructionOffsets[codeLength] = oldInstructionOffset; in appendInstruction()
189 instruction.write(code, codeLength); in appendInstruction()
192 instructionOffsetMap[level][oldInstructionOffset] = codeLength; in appendInstruction()
195 codeLength = newCodeLength; in appendInstruction()
209 println("["+codeLength+"] <- ", "[" + oldInstructionOffset + "] (label)"); in appendLabel()
213 instructionOffsetMap[level][oldInstructionOffset] = codeLength; in appendLabel()
273 while (instructionOffset < codeLength) in endCodeFragment()
302 maximumCodeLength += codeLength - codeFragmentOffsets[level] - in endCodeFragment()
353 if (codeAttribute.u4codeLength < codeLength) in visitCodeAttribute()
355 codeAttribute.code = new byte[codeLength]; in visitCodeAttribute()
359 codeAttribute.u4codeLength = codeLength; in visitCodeAttribute()
360 System.arraycopy(code, 0, codeAttribute.code, 0, codeLength); in visitCodeAttribute()
613 System.arraycopy(code, 0, newCode, 0, codeLength); in ensureCodeLength()
617 System.arraycopy(oldInstructionOffsets, 0, newOldInstructionOffsets, 0, codeLength); in ensureCodeLength()
642 newInstructionOffset > codeLength) in remapBranchOffset()
644 …ion("Invalid instruction offset ["+newInstructionOffset +"] in code with length ["+codeLength+"]"); in remapBranchOffset()
721 int codeLength) in removeEmptyLineNumbers() argument
729 if (startPC < codeLength && in removeEmptyLineNumbers()