Lines Matching refs:enterBinop

237     private void enterBinop(String name,
254 private void enterBinop(String name,
257 enterBinop(
559 enterBinop("+", stringType, objectType, stringType, string_add);
560 enterBinop("+", objectType, stringType, stringType, string_add);
561 enterBinop("+", stringType, stringType, stringType, string_add);
562 enterBinop("+", stringType, intType, stringType, string_add);
563 enterBinop("+", stringType, longType, stringType, string_add);
564 enterBinop("+", stringType, floatType, stringType, string_add);
565 enterBinop("+", stringType, doubleType, stringType, string_add);
566 enterBinop("+", stringType, booleanType, stringType, string_add);
567 enterBinop("+", stringType, botType, stringType, string_add);
568 enterBinop("+", intType, stringType, stringType, string_add);
569 enterBinop("+", longType, stringType, stringType, string_add);
570 enterBinop("+", floatType, stringType, stringType, string_add);
571 enterBinop("+", doubleType, stringType, stringType, string_add);
572 enterBinop("+", booleanType, stringType, stringType, string_add);
573 enterBinop("+", botType, stringType, stringType, string_add);
576 enterBinop("+", botType, botType, botType, error);
577 enterBinop("+", botType, intType, botType, error);
578 enterBinop("+", botType, longType, botType, error);
579 enterBinop("+", botType, floatType, botType, error);
580 enterBinop("+", botType, doubleType, botType, error);
581 enterBinop("+", botType, booleanType, botType, error);
582 enterBinop("+", botType, objectType, botType, error);
583 enterBinop("+", intType, botType, botType, error);
584 enterBinop("+", longType, botType, botType, error);
585 enterBinop("+", floatType, botType, botType, error);
586 enterBinop("+", doubleType, botType, botType, error);
587 enterBinop("+", booleanType, botType, botType, error);
588 enterBinop("+", objectType, botType, botType, error);
590 enterBinop("+", doubleType, doubleType, doubleType, dadd);
591 enterBinop("+", floatType, floatType, floatType, fadd);
592 enterBinop("+", longType, longType, longType, ladd);
593 enterBinop("+", intType, intType, intType, iadd);
595 enterBinop("-", doubleType, doubleType, doubleType, dsub);
596 enterBinop("-", floatType, floatType, floatType, fsub);
597 enterBinop("-", longType, longType, longType, lsub);
598 enterBinop("-", intType, intType, intType, isub);
600 enterBinop("*", doubleType, doubleType, doubleType, dmul);
601 enterBinop("*", floatType, floatType, floatType, fmul);
602 enterBinop("*", longType, longType, longType, lmul);
603 enterBinop("*", intType, intType, intType, imul);
605 enterBinop("/", doubleType, doubleType, doubleType, ddiv);
606 enterBinop("/", floatType, floatType, floatType, fdiv);
607 enterBinop("/", longType, longType, longType, ldiv);
608 enterBinop("/", intType, intType, intType, idiv);
610 enterBinop("%", doubleType, doubleType, doubleType, dmod);
611 enterBinop("%", floatType, floatType, floatType, fmod);
612 enterBinop("%", longType, longType, longType, lmod);
613 enterBinop("%", intType, intType, intType, imod);
615 enterBinop("&", booleanType, booleanType, booleanType, iand);
616 enterBinop("&", longType, longType, longType, land);
617 enterBinop("&", intType, intType, intType, iand);
619 enterBinop("|", booleanType, booleanType, booleanType, ior);
620 enterBinop("|", longType, longType, longType, lor);
621 enterBinop("|", intType, intType, intType, ior);
623 enterBinop("^", booleanType, booleanType, booleanType, ixor);
624 enterBinop("^", longType, longType, longType, lxor);
625 enterBinop("^", intType, intType, intType, ixor);
627 enterBinop("<<", longType, longType, longType, lshll);
628 enterBinop("<<", intType, longType, intType, ishll);
629 enterBinop("<<", longType, intType, longType, lshl);
630 enterBinop("<<", intType, intType, intType, ishl);
632 enterBinop(">>", longType, longType, longType, lshrl);
633 enterBinop(">>", intType, longType, intType, ishrl);
634 enterBinop(">>", longType, intType, longType, lshr);
635 enterBinop(">>", intType, intType, intType, ishr);
637 enterBinop(">>>", longType, longType, longType, lushrl);
638 enterBinop(">>>", intType, longType, intType, iushrl);
639 enterBinop(">>>", longType, intType, longType, lushr);
640 enterBinop(">>>", intType, intType, intType, iushr);
642 enterBinop("<", doubleType, doubleType, booleanType, dcmpg, iflt);
643 enterBinop("<", floatType, floatType, booleanType, fcmpg, iflt);
644 enterBinop("<", longType, longType, booleanType, lcmp, iflt);
645 enterBinop("<", intType, intType, booleanType, if_icmplt);
647 enterBinop(">", doubleType, doubleType, booleanType, dcmpl, ifgt);
648 enterBinop(">", floatType, floatType, booleanType, fcmpl, ifgt);
649 enterBinop(">", longType, longType, booleanType, lcmp, ifgt);
650 enterBinop(">", intType, intType, booleanType, if_icmpgt);
652 enterBinop("<=", doubleType, doubleType, booleanType, dcmpg, ifle);
653 enterBinop("<=", floatType, floatType, booleanType, fcmpg, ifle);
654 enterBinop("<=", longType, longType, booleanType, lcmp, ifle);
655 enterBinop("<=", intType, intType, booleanType, if_icmple);
657 enterBinop(">=", doubleType, doubleType, booleanType, dcmpl, ifge);
658 enterBinop(">=", floatType, floatType, booleanType, fcmpl, ifge);
659 enterBinop(">=", longType, longType, booleanType, lcmp, ifge);
660 enterBinop(">=", intType, intType, booleanType, if_icmpge);
662 enterBinop("==", objectType, objectType, booleanType, if_acmpeq);
663 enterBinop("==", booleanType, booleanType, booleanType, if_icmpeq);
664 enterBinop("==", doubleType, doubleType, booleanType, dcmpl, ifeq);
665 enterBinop("==", floatType, floatType, booleanType, fcmpl, ifeq);
666 enterBinop("==", longType, longType, booleanType, lcmp, ifeq);
667 enterBinop("==", intType, intType, booleanType, if_icmpeq);
669 enterBinop("!=", objectType, objectType, booleanType, if_acmpne);
670 enterBinop("!=", booleanType, booleanType, booleanType, if_icmpne);
671 enterBinop("!=", doubleType, doubleType, booleanType, dcmpl, ifne);
672 enterBinop("!=", floatType, floatType, booleanType, fcmpl, ifne);
673 enterBinop("!=", longType, longType, booleanType, lcmp, ifne);
674 enterBinop("!=", intType, intType, booleanType, if_icmpne);
676 enterBinop("&&", booleanType, booleanType, booleanType, bool_and);
677 enterBinop("||", booleanType, booleanType, booleanType, bool_or);