Lines Matching refs:opcode

544 		o1 = OP_RRR(opcode(AOR), p->from.reg, REGZERO, p->to.reg);  in asmout()
552 o1 = OP_IRR(opcode(AADD), v, r, p->to.reg); in asmout()
561 o1 = OP_RRR(opcode(p->as), p->reg, r, p->to.reg); in asmout()
563 o1 = OP_IRR(opcode(p->as), v, r, p->to.reg); in asmout()
572 o1 = OP_RRR(opcode(p->as+AEND), p->reg, r, p->from.reg); in asmout()
574 o1 = OP_IRR(opcode(p->as+AEND), v, r, p->from.reg); in asmout()
580 o2 = OP_IRR(opcode(AADD), (v&0x3ff), REGTMP, p->to.reg); in asmout()
584 o1 = OP_RRR(opcode(p->as), p->reg, p->from.reg, p->to.reg); in asmout()
589 o1 = OP_RRR(opcode(p->as+AEND), p->reg, p->to.reg, p->from.reg); in asmout()
647 o1 = OP_IRR(opcode(ASLL), v, p->from.reg, p->to.reg); in asmout()
648 o2 = OP_IRR(opcode(r), v, p->to.reg, p->to.reg); in asmout()
657 o2 = OP_RRR(opcode(AADD), r, REGTMP, REGTMP); in asmout()
658 o3 = OP_IRR(opcode(AADD), (v&0x3ff), REGTMP, p->to.reg); in asmout()
667 o2 = OP_RRR(opcode(AADD), r, REGTMP, REGTMP); in asmout()
668 o3 = OP_IRR(opcode(p->as), (v&0x3ff), REGTMP, p->to.reg); in asmout()
677 o2 = OP_RRR(opcode(AADD), r, REGTMP, REGTMP); in asmout()
678 o3 = OP_IRR(opcode(p->as+AEND), (v&0x3ff), REGTMP, p->from.reg); in asmout()
691 o1 = OP_IRR(opcode(p->as), v, r, p->to.reg); in asmout()
698 o1 = OP_RRR(opcode(p->as), p->from.reg, r, p->to.reg); in asmout()
707 o2 = OP_IRR(opcode(AADD), (v&0x3ff), REGTMP, REGTMP); in asmout()
708 o3 = OP_RRR(opcode(p->as), REGTMP, r, p->to.reg); in asmout()
712 o1 = OP_RRR(opcode(ASUBCC), p->to.reg, p->from.reg, REGZERO); in asmout()
717 o1 = OP_IRR(opcode(ASUBCC), v, p->from.reg, REGZERO); in asmout()
722 o1 = OP_IRR(opcode(AADD), v, NREG, REGTMP); in asmout()
723 o2 = OP_RRR(opcode(ASUBCC), p->to.reg, REGTMP, REGZERO); in asmout()
732 o2 = OP_RRR(opcode(p->as), REGTMP, r, p->to.reg); in asmout()
742 o1 = OP_IRR(opcode(AJMPL), v, p->to.reg, r); in asmout()
754 o1 = OP_BRA(opcode(r), v/4); in asmout()
795 o1 = opcode(p->as) | (p->from.reg<<14); in asmout()
801 o1 = OP_IRR(opcode(AJMPL), 0, p->from.reg, REGZERO); in asmout()
802 o2 = OP_IRR(opcode(ARETT), 0, p->to.reg, REGZERO); in asmout()
891 o2 = OP_RRR(opcode(AADD), r, REGTMP, REGTMP); in asmout()
902 o2 = OP_RRR(opcode(AADD), r, REGTMP, REGTMP); in asmout()
913 o2 = OP_RRR(opcode(AADD), r, REGTMP, REGTMP); in asmout()
924 o2 = OP_RRR(opcode(AADD), r, REGTMP, REGTMP); in asmout()
930 o1 = OP_RRR(opcode(AFMOVF), p->from.reg, 0, p->to.reg); in asmout()
931 o2 = OP_RRR(opcode(AFMOVF), p->from.reg+1, 0, p->to.reg+1); in asmout()
935 o1 = OP_RRR(opcode(p->as), p->to.reg, p->from.reg, 0); in asmout()
948 o1 = OP_IRR(opcode(ASRA), 31, r, REGTMP); in asmout()
950 o3 = OP_RRR(opcode(ADIV), p->from.reg, r, p->to.reg); in asmout()
958 o2 = OP_RRR(opcode(ADIVL), p->from.reg, r, p->to.reg); in asmout()
965 o1 = OP_IRR(opcode(ASRA), 31, r, REGTMP); in asmout()
967 o3 = OP_RRR(opcode(ADIV), p->from.reg, r, REGTMP); in asmout()
968 o4 = OP_RRR(opcode(AMUL), p->from.reg, REGTMP, REGTMP); in asmout()
969 o5 = OP_RRR(opcode(ASUB), REGTMP, r, p->to.reg); in asmout()
977 o2 = OP_RRR(opcode(ADIVL), p->from.reg, r, REGTMP); in asmout()
978 o3 = OP_RRR(opcode(AMUL), p->from.reg, REGTMP, REGTMP); in asmout()
979 o4 = OP_RRR(opcode(ASUB), REGTMP, r, p->to.reg); in asmout()
989 o1 = OP_BRA(opcode(r), v/4); in asmout()
1007 o1 = OP_RRR(opcode(p->as), p->from.reg, r, p->to.reg); in asmout()
1074 opcode(int a) in opcode() function