Home | History | Annotate | Download | only in bytecode

Lines Matching defs:ldc

347         LdcEntry ldc = copyCode(this.info, 0, len, this.getConstPool(),
349 return LdcEntry.doit(newCode, ldc, etable, destCa);
381 case LDC :
389 LdcEntry ldc = new LdcEntry();
390 ldc.where = i;
391 ldc.index = index;
392 ldc.next = ldcEntry;
393 ldcEntry = ldc;
432 static byte[] doit(byte[] code, LdcEntry ldc, ExceptionTable etable,
436 if (ldc != null)
437 code = CodeIterator.changeLdcToLdcW(code, etable, ca, ldc);
441 while (ldc != null) {
442 int where = ldc.where;
445 ByteArray.write16bit(ldc.index, code, where + 1);
446 ldc = ldc.next;