Lines Matching refs:where

46     Expression(int op, long where, Type type) {
47 super(op, where);
144 env.error(where, "invalid.type.expr");
149 * Convert an expresion to a type in a context where a qualified
155 env.error(where, "invalid.type.expr");
207 env.error(where, "invalid.lhs.assignment");
248 env.error(where, "invalid.arg", opNames[outside.op]);
250 env.error(where, "invalid.lhs.assignment");
379 // happen in cases where isConstant() is able to classify
424 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
435 asm.add(true, where, opc_ldc, new Integer(0));
436 asm.add(true, where, opc_goto, l2);
438 asm.add(true, where, opc_ldc, new Integer(1));
453 asm.add(where, opc_pop2);
457 asm.add(where, opc_pop);
503 asm.add(where, opc_invokestatic, f1);
517 asm.add(where, opc_invokestatic, f2);
524 asm.add(where, opc_invokestatic, f);
543 asm.add(where, opc_new, sbClass); // create the class
544 asm.add(where, opc_dup);
555 asm.add(where, opc_invokespecial, f);
572 asm.add(where, opc_invokevirtual, f);
587 asm.add(where, opc_dup);
590 asm.add(where, opc_dup_x1);
593 asm.add(where, opc_dup_x2);
601 asm.add(where, opc_dup2);
604 asm.add(where, opc_dup2_x1);
607 asm.add(where, opc_dup2_x2);
629 asm.add(where, opc_i2b);
635 asm.add(where, opc_i2c);
641 asm.add(where, opc_i2s);
652 asm.add(where, opc_l2i);
655 asm.add(where, opc_f2i);
658 asm.add(where, opc_d2i);
668 asm.add(where, opc_i2l);
673 asm.add(where, opc_f2l);
676 asm.add(where, opc_d2l);
686 asm.add(where, opc_i2f);
689 asm.add(where, opc_l2f);
694 asm.add(where, opc_d2f);
704 asm.add(where, opc_i2d);
707 asm.add(where, opc_l2d);
710 asm.add(where, opc_f2d);
725 asm.add(where, opc_checkcast, env.getClassDeclaration(t));
743 asm.add(where, opc_checkcast, t);