• Home
  • Raw
  • Download

Lines Matching full:ca

428                 CodeAttribute ca = (CodeAttribute)cattr.copy(cp, map);  in setBody0()  local
429 destInfo.setCodeAttribute(ca); in setBody0()
547 CodeAttribute ca = methodInfo.getCodeAttribute(); in addLocalVariable() local
548 if (ca == null) in addLocalVariable()
551 LocalVariableAttribute va = (LocalVariableAttribute)ca.getAttribute( in addLocalVariable()
555 ca.getAttributes().add(va); in addLocalVariable()
558 int maxLocals = ca.getMaxLocals(); in addLocalVariable()
560 va.addEntry(0, ca.getCodeLength(), in addLocalVariable()
562 ca.setMaxLocals(maxLocals + Descriptor.dataSize(desc)); in addLocalVariable()
607 CodeAttribute ca = methodInfo.getCodeAttribute(); in addParameter2() local
608 if (ca != null) { in addParameter2()
620 ca.insertLocalVar(where, size); in addParameter2()
623 ca.getAttribute(LocalVariableAttribute.tag); in addParameter2()
627 StackMapTable smt = (StackMapTable)ca.getAttribute(StackMapTable.tag); in addParameter2()
631 StackMap sm = (StackMap)ca.getAttribute(StackMap.tag); in addParameter2()
693 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertBefore() local
694 if (ca == null) in insertBefore()
697 CodeIterator iterator = ca.iterator(); in insertBefore()
702 jv.recordParamNames(ca, nvars); in insertBefore()
703 jv.recordLocalVariables(ca, 0); in insertBefore()
710 if (stack > ca.getMaxStack()) in insertBefore()
711 ca.setMaxStack(stack); in insertBefore()
713 if (locals > ca.getMaxLocals()) in insertBefore()
714 ca.setMaxLocals(locals); in insertBefore()
764 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertAfter() local
765 if (ca == null) in insertAfter()
768 CodeIterator iterator = ca.iterator(); in insertAfter()
769 int retAddr = ca.getMaxLocals(); in insertAfter()
771 b.setStackDepth(ca.getMaxStack() + 1); in insertAfter()
776 jv.recordParamNames(ca, nvars); in insertAfter()
779 jv.recordLocalVariables(ca, 0); in insertAfter()
787 ca.setMaxStack(b.getMaxStack()); in insertAfter()
788 ca.setMaxLocals(b.getMaxLocals()); in insertAfter()
794 ca.getExceptionTable().add(getStartPosOfBody(ca), gapPos, gapPos, 0); in insertAfter()
928 CodeAttribute ca = methodInfo.getCodeAttribute();
929 CodeIterator iterator = ca.iterator();
931 ca.getMaxStack(), ca.getMaxLocals());
932 b.setStackDepth(ca.getMaxStack());
952 ca.setMaxStack(b.getMaxStack());
953 ca.setMaxLocals(b.getMaxLocals());
1009 CodeAttribute ca = methodInfo.getCodeAttribute(); in addCatch() local
1010 CodeIterator iterator = ca.iterator(); in addCatch()
1011 Bytecode b = new Bytecode(cp, ca.getMaxStack(), ca.getMaxLocals()); in addCatch()
1024 if (stack > ca.getMaxStack()) in addCatch()
1025 ca.setMaxStack(stack); in addCatch()
1027 if (locals > ca.getMaxLocals()) in addCatch()
1028 ca.setMaxLocals(locals); in addCatch()
1032 ca.getExceptionTable().add(getStartPosOfBody(ca), len, len, in addCatch()
1049 int getStartPosOfBody(CodeAttribute ca) throws CannotCompileException { in getStartPosOfBody() argument
1101 CodeAttribute ca = methodInfo.getCodeAttribute(); in insertAt() local
1102 if (ca == null) in insertAt()
1106 = (LineNumberAttribute)ca.getAttribute(LineNumberAttribute.tag); in insertAt()
1118 CodeIterator iterator = ca.iterator(); in insertAt()
1121 jv.recordLocalVariables(ca, index); in insertAt()
1124 jv.setMaxLocals(ca.getMaxLocals()); in insertAt()
1129 ca.setMaxLocals(locals); in insertAt()
1134 if (stack > ca.getMaxStack()) in insertAt()
1135 ca.setMaxStack(stack); in insertAt()