Lines Matching defs:lbl
116 void optimize(Environment env, Label lbl) {
117 lbl.pc = REACHED;
119 for (Instruction inst = lbl.next ; inst != null ; inst = inst.next) {
258 void balance(Label lbl, int depth) {
259 for (Instruction inst = lbl ; inst != null ; inst = inst.next) {
271 lbl = (Label)inst;
273 if (lbl.depth != depth) {
275 depth + "/" + lbl.depth +
280 lbl.pc = REACHED;
281 lbl.depth = depth;
759 void flowFields(Environment env, Label lbl, MemberDefinition locals[]) {
760 if (lbl.locals != null) {
762 MemberDefinition f[] = lbl.locals;
772 lbl.locals = new MemberDefinition[maxvar];
773 System.arraycopy(locals, 0, lbl.locals, 0, maxvar);
779 for (Instruction inst = lbl.next ; inst != null ; inst = inst.next) {