Lines Matching refs:pc

117         lbl.pc = REACHED;
120 switch (inst.pc) {
123 inst.pc = REACHED;
134 if (inst.pc == REACHED) {
135 inst.pc = NOTREACHED;
188 td.getEndLabel().pc = NEEDED;
207 if (inst.pc != NOTREACHED) {
210 inst.pc = NOTREACHED;
215 first.pc = NOTREACHED;
272 if (inst.pc == REACHED) {
280 lbl.pc = REACHED;
404 int pc = 0, nexceptions = 0;
406 inst.pc = pc;
408 if (pc<65536 && (pc+sz)>=65536) {
411 pc += sz;
421 out.writeInt(maxpc = pc);
446 //System.out.println("EXCEPTION: " + env.getSource() + ", pc=" + inst.pc + ", end=" + td.getEndLabel().pc + ", hdl=" + cd.getLabel().pc + ", tp=" + cd.getType());
447 out.writeShort(inst.pc);
448 out.writeShort(td.getEndLabel().pc);
449 out.writeShort(cd.getLabel().pc);
479 TableLot.addElement(new Cover(CT_FIKT_METHOD, whereField, inst.pc));
481 TableLot.addElement(new Cover(CT_METHOD, whereField, inst.pc));
494 TableLot.addElement(new Cover(CT_BLOCK, inst.where, inst.pc));
521 TableLot.addElement(new Cover(CT_BRANCH_TRUE, inst.where, inst.pc));
522 TableLot.addElement(new Cover(CT_BRANCH_FALSE, inst.where, inst.pc));
524 TableLot.addElement(new Cover(CT_BRANCH_FALSE, inst.where, inst.pc));
525 TableLot.addElement(new Cover(CT_BRANCH_TRUE, inst.where, inst.pc));
557 TableLot.addElement(new Cover(CT_CASE, sw.whereCase(new Integer(i)), inst.pc));
561 TableLot.addElement(new Cover(CT_SWITH_WO_DEF, inst.where, inst.pc));
564 TableLot.addElement(new Cover(CT_CASE, sw.whereCase("default"), inst.pc));
574 TableLot.addElement(new Cover(CT_CASE, sw.whereCase(v), inst.pc));
578 TableLot.addElement(new Cover(CT_SWITH_WO_DEF, inst.where, inst.pc));
581 TableLot.addElement(new Cover(CT_CASE, sw.whereCase("default"), inst.pc));
747 out.writeShort(inst.pc);
749 //System.out.println("pc = " + inst.pc + ", ln = " + ln);
845 * is used to determine which variables are alive at each pc.
895 int pc = (inst.next != null) ? inst.next.pc : inst.pc;
897 lvtab.define(locals[v.slot], v.slot, pcs[v.slot], pc);
899 pcs[v.slot] = pc;
908 lvtab.define(locals[i], i, pcs[i], inst.pc);
912 int pc = inst.pc;
921 pcs[i] = pc;