Lines Matching defs:currentBlock

402     private Label currentBlock;
667 // update currentBlock
668 // Label currentBlock = this.currentBlock;
669 if (currentBlock != null) {
671 currentBlock.frame.execute(opcode, 0, null, null);
690 // Label currentBlock = this.currentBlock;
691 if (currentBlock != null) {
693 currentBlock.frame.execute(opcode, operand, null, null);
713 // Label currentBlock = this.currentBlock;
714 if (currentBlock != null) {
716 currentBlock.frame.execute(opcode, var, null, null);
721 currentBlock.status |= Label.RET;
724 currentBlock.inputStackTop = stackSize;
772 // Label currentBlock = this.currentBlock;
773 if (currentBlock != null) {
775 currentBlock.frame.execute(opcode, code.length, cw, i);
797 // Label currentBlock = this.currentBlock;
798 if (currentBlock != null) {
800 currentBlock.frame.execute(opcode, 0, cw, i);
840 // Label currentBlock = this.currentBlock;
841 if (currentBlock != null) {
843 currentBlock.frame.execute(opcode, 0, cw, i);
888 // Label currentBlock = this.currentBlock;
889 if (currentBlock != null) {
891 currentBlock.frame.execute(opcode, 0, null, null);
906 currentBlock.status |= Label.JSR;
963 if (currentBlock != null) {
980 // updates currentBlock
985 if (currentBlock != null) {
986 if (label.position == currentBlock.position) {
988 currentBlock.status |= (label.status & Label.TARGET);
989 label.frame = currentBlock.frame;
996 currentBlock = label;
1006 currentBlock = previousBlock;
1013 if (currentBlock != null) {
1015 currentBlock.outputStackMax = maxStackSize;
1019 currentBlock = label;
1033 // Label currentBlock = this.currentBlock;
1034 if (currentBlock != null) {
1036 currentBlock.frame.execute(Opcodes.LDC, 0, cw, i);
1065 if (currentBlock != null) {
1067 currentBlock.frame.execute(Opcodes.IINC, var, null, null);
1102 // updates currentBlock
1121 // updates currentBlock
1126 // Label currentBlock = this.currentBlock;
1127 if (currentBlock != null) {
1129 currentBlock.frame.execute(Opcodes.LOOKUPSWITCH, 0, null, null);
1153 // Label currentBlock = this.currentBlock;
1154 if (currentBlock != null) {
1156 currentBlock.frame.execute(Opcodes.MULTIANEWARRAY, dims, cw, i);
1509 * Adds a successor to the {@link #currentBlock currentBlock} block.
1519 // ...and adds it to the successor list of the currentBlock block
1520 b.next = currentBlock.successors;
1521 currentBlock.successors = b;
1537 currentBlock.outputStackMax = maxStackSize;
1539 currentBlock = null;