Home | History | Annotate | Download | only in parser

Lines Matching refs:opcode

170 static char *opcode2str(uint16_t opcode)
172 switch (opcode) {
386 uint8_t opcode = LMP_U8(frm);
389 printf("op code %d (%s)\n", opcode, opcode2str(opcode));
394 uint8_t opcode = LMP_U8(frm);
398 printf("op code %d (%s)\n", opcode, opcode2str(opcode));
800 uint16_t opcode = LMP_U8(frm) + (LMP_U8(frm) << 7);
803 printf("op code %d/%d (%s)\n", opcode & 0x7f, opcode >> 7, opcode2str(opcode));
808 uint16_t opcode = LMP_U8(frm) + (LMP_U8(frm) << 7);
812 printf("op code %d/%d (%s)\n", opcode & 0x7f, opcode >> 7, opcode2str(opcode));
1131 uint16_t opcode;
1137 opcode = (tmp & 0xfe) >> 1;
1138 if (opcode > 123) {
1140 opcode += tmp << 7;
1144 opcode2str(opcode), tid ? 's' : 'm');
1146 if (opcode > 123)
1147 printf("op code %d/%d", opcode & 0x7f, opcode >> 7);
1149 printf("op code %d", opcode);
1161 switch (opcode) {