Lines Matching defs:il

50   private InstructionList il;
63 * actual code is contained in the `il' parameter, which may further
78 * @param il instruction list associated with this method, may be null only for
84 InstructionList il, ConstantPoolGen cp) {
91 setInstructionList(il);
99 start = il.getStart();
100 end = il.getEnd();
182 end = il.getEnd();
184 end = il.findHandle(end_pc);
188 addExceptionHandler(il.findHandle(ce.getStartPC()), end,
189 il.findHandle(ce.getHandlerPC()), c_type);
202 addLineNumber(il.findHandle(l.getStartPC()), l.getLineNumber());
211 InstructionHandle start = il.findHandle(l.getStartPC());
212 InstructionHandle end = il.findHandle(l.getStartPC() + l.getLength());
216 start = il.getStart();
220 end = il.getEnd();
231 InstructionHandle start = il.findHandle(l.getStartPC());
232 InstructionHandle end = il.findHandle(l.getStartPC() + l.getLength());
235 start = il.getStart();
238 end = il.getEnd();
362 lg[i].setStart(il.getStart());
365 lg[i].setEnd(il.getEnd());
387 lg[i].setStart(il.getStart());
390 lg[i].setEnd(il.getEnd());
687 if(il != null)
688 byte_code = il.getByteCode();
719 if((il != null) && !isAbstract()) {
765 if(il != null) {
769 for(InstructionHandle ih = il.getStart(); ih != null; ih = next) {
774 il.delete(ih);
820 public InstructionList getInstructionList() { return il; }
821 public void setInstructionList(InstructionList il) { this.il = il; }
831 if(il != null)
832 max_stack = getMaxStack(cp, il, getExceptionHandlers());
841 if(il != null) {
848 for(InstructionHandle ih = il.getStart(); ih != null; ih = ih.getNext()) {
919 public static int getMaxStack(ConstantPoolGen cp, InstructionList il, CodeExceptionGen[] et) {
934 InstructionHandle ih = il.getStart();