/src/capstonenext/arch/TMS320C64x/TMS320C64xInstPrinter.c
| Line | Count | Source (jump to first uncovered line) | 
| 1 |  | /* Capstone Disassembly Engine */ | 
| 2 |  | /* TMS320C64x Backend by Fotis Loukos <me@fotisl.com> 2016 */ | 
| 3 |  |  | 
| 4 |  | #ifdef CAPSTONE_HAS_TMS320C64X | 
| 5 |  |  | 
| 6 |  | #ifdef _MSC_VER | 
| 7 |  | // Disable security warnings for strcpy | 
| 8 |  | #ifndef _CRT_SECURE_NO_WARNINGS | 
| 9 |  | #define _CRT_SECURE_NO_WARNINGS | 
| 10 |  | #endif | 
| 11 |  |  | 
| 12 |  | // Banned API Usage : strcpy is a Banned API as listed in dontuse.h for | 
| 13 |  | // security purposes. | 
| 14 |  | #pragma warning(disable:28719) | 
| 15 |  | #endif | 
| 16 |  |  | 
| 17 |  | #include <ctype.h> | 
| 18 |  | #include <string.h> | 
| 19 |  |  | 
| 20 |  | #include "TMS320C64xInstPrinter.h" | 
| 21 |  | #include "../../MCInst.h" | 
| 22 |  | #include "../../utils.h" | 
| 23 |  | #include "../../SStream.h" | 
| 24 |  | #include "../../MCRegisterInfo.h" | 
| 25 |  | #include "../../MathExtras.h" | 
| 26 |  | #include "TMS320C64xMapping.h" | 
| 27 |  |  | 
| 28 |  | #include "capstone/tms320c64x.h" | 
| 29 |  |  | 
| 30 |  | static const char *getRegisterName(unsigned RegNo); | 
| 31 |  | static void printOperand(MCInst *MI, unsigned OpNo, SStream *O); | 
| 32 |  | static void printMemOperand(MCInst *MI, unsigned OpNo, SStream *O); | 
| 33 |  | static void printMemOperand2(MCInst *MI, unsigned OpNo, SStream *O); | 
| 34 |  | static void printRegPair(MCInst *MI, unsigned OpNo, SStream *O); | 
| 35 |  |  | 
| 36 |  | void TMS320C64x_post_printer(csh ud, cs_insn *insn, char *insn_asm, MCInst *mci) | 
| 37 | 41.6k | { | 
| 38 | 41.6k |   SStream ss; | 
| 39 | 41.6k |   char *p, *p2, tmp[8]; | 
| 40 | 41.6k |   unsigned int unit = 0; | 
| 41 | 41.6k |   int i; | 
| 42 | 41.6k |   cs_tms320c64x *tms320c64x; | 
| 43 |  |  | 
| 44 | 41.6k |   if (mci->csh->detail_opt) { | 
| 45 | 41.6k |     tms320c64x = &mci->flat_insn->detail->tms320c64x; | 
| 46 |  |  | 
| 47 | 41.6k |     for (i = 0; i < insn->detail->groups_count; i++) { | 
| 48 | 41.6k |       switch(insn->detail->groups[i]) { | 
| 49 | 13.3k |         case TMS320C64X_GRP_FUNIT_D: | 
| 50 | 13.3k |           unit = TMS320C64X_FUNIT_D; | 
| 51 | 13.3k |           break; | 
| 52 | 8.23k |         case TMS320C64X_GRP_FUNIT_L: | 
| 53 | 8.23k |           unit = TMS320C64X_FUNIT_L; | 
| 54 | 8.23k |           break; | 
| 55 | 2.96k |         case TMS320C64X_GRP_FUNIT_M: | 
| 56 | 2.96k |           unit = TMS320C64X_FUNIT_M; | 
| 57 | 2.96k |           break; | 
| 58 | 15.8k |         case TMS320C64X_GRP_FUNIT_S: | 
| 59 | 15.8k |           unit = TMS320C64X_FUNIT_S; | 
| 60 | 15.8k |           break; | 
| 61 | 1.34k |         case TMS320C64X_GRP_FUNIT_NO: | 
| 62 | 1.34k |           unit = TMS320C64X_FUNIT_NO; | 
| 63 | 1.34k |           break; | 
| 64 | 41.6k |       } | 
| 65 | 41.6k |       if (unit != 0) | 
| 66 | 41.6k |         break; | 
| 67 | 41.6k |     } | 
| 68 | 41.6k |     tms320c64x->funit.unit = unit; | 
| 69 |  |  | 
| 70 | 41.6k |     SStream_Init(&ss); | 
| 71 | 41.6k |     if (tms320c64x->condition.reg != TMS320C64X_REG_INVALID) | 
| 72 | 24.2k |       SStream_concat(&ss, "[%c%s]|", (tms320c64x->condition.zero == 1) ? '!' : '|', cs_reg_name(ud, tms320c64x->condition.reg)); | 
| 73 |  |  | 
| 74 | 41.6k |     p = strchr(insn_asm, '\t'); | 
| 75 | 41.6k |     if (p != NULL) | 
| 76 | 40.5k |       *p++ = '\0'; | 
| 77 |  |  | 
| 78 | 41.6k |     SStream_concat0(&ss, insn_asm); | 
| 79 | 41.6k |     if ((p != NULL) && (((p2 = strchr(p, '[')) != NULL) || ((p2 = strchr(p, '(')) != NULL))) { | 
| 80 | 44.6k |       while ((p2 > p) && ((*p2 != 'a') && (*p2 != 'b'))) | 
| 81 | 33.7k |         p2--; | 
| 82 | 10.8k |       if (p2 == p) { | 
| 83 | 0 |         strcpy(insn_asm, "Invalid!"); | 
| 84 | 0 |         return; | 
| 85 | 0 |       } | 
| 86 | 10.8k |       if (*p2 == 'a') | 
| 87 | 6.20k |         strcpy(tmp, "1T"); | 
| 88 | 4.62k |       else | 
| 89 | 4.62k |         strcpy(tmp, "2T"); | 
| 90 | 30.8k |     } else { | 
| 91 | 30.8k |       tmp[0] = '\0'; | 
| 92 | 30.8k |     } | 
| 93 | 41.6k |     switch(tms320c64x->funit.unit) { | 
| 94 | 13.3k |       case TMS320C64X_FUNIT_D: | 
| 95 | 13.3k |         SStream_concat(&ss, ".D%s%u", tmp, tms320c64x->funit.side); | 
| 96 | 13.3k |         break; | 
| 97 | 8.23k |       case TMS320C64X_FUNIT_L: | 
| 98 | 8.23k |         SStream_concat(&ss, ".L%s%u", tmp, tms320c64x->funit.side); | 
| 99 | 8.23k |         break; | 
| 100 | 2.96k |       case TMS320C64X_FUNIT_M: | 
| 101 | 2.96k |         SStream_concat(&ss, ".M%s%u", tmp, tms320c64x->funit.side); | 
| 102 | 2.96k |         break; | 
| 103 | 15.8k |       case TMS320C64X_FUNIT_S: | 
| 104 | 15.8k |         SStream_concat(&ss, ".S%s%u", tmp, tms320c64x->funit.side); | 
| 105 | 15.8k |         break; | 
| 106 | 41.6k |     } | 
| 107 | 41.6k |     if (tms320c64x->funit.crosspath > 0) | 
| 108 | 10.0k |       SStream_concat0(&ss, "X"); | 
| 109 |  |  | 
| 110 | 41.6k |     if (p != NULL) | 
| 111 | 40.5k |       SStream_concat(&ss, "\t%s", p); | 
| 112 |  |  | 
| 113 | 41.6k |     if (tms320c64x->parallel != 0) | 
| 114 | 18.6k |       SStream_concat0(&ss, "\t||"); | 
| 115 |  |  | 
| 116 |  |     /* insn_asm is a buffer from an SStream, so there should be enough space */ | 
| 117 | 41.6k |     strcpy(insn_asm, ss.buffer); | 
| 118 | 41.6k |   } | 
| 119 | 41.6k | } | 
| 120 |  |  | 
| 121 |  | #define PRINT_ALIAS_INSTR | 
| 122 |  | #include "TMS320C64xGenAsmWriter.inc" | 
| 123 |  |  | 
| 124 |  | #define GET_INSTRINFO_ENUM | 
| 125 |  | #include "TMS320C64xGenInstrInfo.inc" | 
| 126 |  |  | 
| 127 |  | static void printOperand(MCInst *MI, unsigned OpNo, SStream *O) | 
| 128 | 74.3k | { | 
| 129 | 74.3k |   MCOperand *Op = MCInst_getOperand(MI, OpNo); | 
| 130 | 74.3k |   unsigned reg; | 
| 131 |  |  | 
| 132 | 74.3k |   if (MCOperand_isReg(Op)) { | 
| 133 | 54.4k |     reg = MCOperand_getReg(Op); | 
| 134 | 54.4k |     if ((MCInst_getOpcode(MI) == TMS320C64x_MVC_s1_rr) && (OpNo == 1)) { | 
| 135 | 746 |       switch(reg) { | 
| 136 | 193 |         case TMS320C64X_REG_EFR: | 
| 137 | 193 |           SStream_concat0(O, "EFR"); | 
| 138 | 193 |           break; | 
| 139 | 314 |         case TMS320C64X_REG_IFR: | 
| 140 | 314 |           SStream_concat0(O, "IFR"); | 
| 141 | 314 |           break; | 
| 142 | 239 |         default: | 
| 143 | 239 |           SStream_concat0(O, getRegisterName(reg)); | 
| 144 | 239 |           break; | 
| 145 | 746 |       } | 
| 146 | 53.7k |     } else { | 
| 147 | 53.7k |       SStream_concat0(O, getRegisterName(reg)); | 
| 148 | 53.7k |     } | 
| 149 |  |  | 
| 150 | 54.4k |     if (MI->csh->detail_opt) { | 
| 151 | 54.4k |       MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_REG; | 
| 152 | 54.4k |       MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].reg = reg; | 
| 153 | 54.4k |       MI->flat_insn->detail->tms320c64x.op_count++; | 
| 154 | 54.4k |     } | 
| 155 | 54.4k |   } else if (MCOperand_isImm(Op)) { | 
| 156 | 19.8k |     int64_t Imm = MCOperand_getImm(Op); | 
| 157 |  |  | 
| 158 | 19.8k |     if (Imm >= 0) { | 
| 159 | 16.0k |       if (Imm > HEX_THRESHOLD) | 
| 160 | 9.70k |         SStream_concat(O, "0x%"PRIx64, Imm); | 
| 161 | 6.33k |       else | 
| 162 | 6.33k |         SStream_concat(O, "%"PRIu64, Imm); | 
| 163 | 16.0k |     } else { | 
| 164 | 3.79k |       if (Imm < -HEX_THRESHOLD) | 
| 165 | 2.92k |         SStream_concat(O, "-0x%"PRIx64, -Imm); | 
| 166 | 868 |       else | 
| 167 | 868 |         SStream_concat(O, "-%"PRIu64, -Imm); | 
| 168 | 3.79k |     } | 
| 169 |  |  | 
| 170 | 19.8k |     if (MI->csh->detail_opt) { | 
| 171 | 19.8k |       MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS320C64X_OP_IMM; | 
| 172 | 19.8k |       MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].imm = Imm; | 
| 173 | 19.8k |       MI->flat_insn->detail->tms320c64x.op_count++; | 
| 174 | 19.8k |     } | 
| 175 | 19.8k |   } | 
| 176 | 74.3k | } | 
| 177 |  |  | 
| 178 |  | static void printMemOperand(MCInst *MI, unsigned OpNo, SStream *O) | 
| 179 | 6.20k | { | 
| 180 | 6.20k |   MCOperand *Op = MCInst_getOperand(MI, OpNo); | 
| 181 | 6.20k |   int64_t Val = MCOperand_getImm(Op); | 
| 182 | 6.20k |   unsigned scaled, base, offset, mode, unit; | 
| 183 | 6.20k |   cs_tms320c64x *tms320c64x; | 
| 184 | 6.20k |   char st, nd; | 
| 185 |  |  | 
| 186 | 6.20k |   scaled = (Val >> 19) & 1; | 
| 187 | 6.20k |   base = (Val >> 12) & 0x7f; | 
| 188 | 6.20k |   offset = (Val >> 5) & 0x7f; | 
| 189 | 6.20k |   mode = (Val >> 1) & 0xf; | 
| 190 | 6.20k |   unit = Val & 1; | 
| 191 |  |  | 
| 192 | 6.20k |   if (scaled) { | 
| 193 | 5.71k |     st = '['; | 
| 194 | 5.71k |     nd = ']'; | 
| 195 | 5.71k |   } else { | 
| 196 | 492 |     st = '('; | 
| 197 | 492 |     nd = ')'; | 
| 198 | 492 |   } | 
| 199 |  |  | 
| 200 | 6.20k |   switch(mode) { | 
| 201 | 840 |     case 0: | 
| 202 | 840 |       SStream_concat(O, "*-%s%c%u%c", getRegisterName(base), st, offset, nd); | 
| 203 | 840 |       break; | 
| 204 | 422 |     case 1: | 
| 205 | 422 |       SStream_concat(O, "*+%s%c%u%c", getRegisterName(base), st, offset, nd); | 
| 206 | 422 |       break; | 
| 207 | 395 |     case 4: | 
| 208 | 395 |       SStream_concat(O, "*-%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd); | 
| 209 | 395 |       break; | 
| 210 | 95 |     case 5: | 
| 211 | 95 |       SStream_concat(O, "*+%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd); | 
| 212 | 95 |       break; | 
| 213 | 284 |     case 8: | 
| 214 | 284 |       SStream_concat(O, "*--%s%c%u%c", getRegisterName(base), st, offset, nd); | 
| 215 | 284 |       break; | 
| 216 | 2.09k |     case 9: | 
| 217 | 2.09k |       SStream_concat(O, "*++%s%c%u%c", getRegisterName(base), st, offset, nd); | 
| 218 | 2.09k |       break; | 
| 219 | 461 |     case 10: | 
| 220 | 461 |       SStream_concat(O, "*%s--%c%u%c", getRegisterName(base), st, offset, nd); | 
| 221 | 461 |       break; | 
| 222 | 563 |     case 11: | 
| 223 | 563 |       SStream_concat(O, "*%s++%c%u%c", getRegisterName(base), st, offset, nd); | 
| 224 | 563 |       break; | 
| 225 | 103 |     case 12: | 
| 226 | 103 |       SStream_concat(O, "*--%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd); | 
| 227 | 103 |       break; | 
| 228 | 253 |     case 13: | 
| 229 | 253 |       SStream_concat(O, "*++%s%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd); | 
| 230 | 253 |       break; | 
| 231 | 365 |     case 14: | 
| 232 | 365 |       SStream_concat(O, "*%s--%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd); | 
| 233 | 365 |       break; | 
| 234 | 327 |     case 15: | 
| 235 | 327 |       SStream_concat(O, "*%s++%c%s%c", getRegisterName(base), st, getRegisterName(offset), nd); | 
| 236 | 327 |       break; | 
| 237 | 6.20k |   } | 
| 238 |  |  | 
| 239 | 6.20k |   if (MI->csh->detail_opt) { | 
| 240 | 6.20k |     tms320c64x = &MI->flat_insn->detail->tms320c64x; | 
| 241 |  |  | 
| 242 | 6.20k |     tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM; | 
| 243 | 6.20k |     tms320c64x->operands[tms320c64x->op_count].mem.base = base; | 
| 244 | 6.20k |     tms320c64x->operands[tms320c64x->op_count].mem.disp = offset; | 
| 245 | 6.20k |     tms320c64x->operands[tms320c64x->op_count].mem.unit = unit + 1; | 
| 246 | 6.20k |     tms320c64x->operands[tms320c64x->op_count].mem.scaled = scaled; | 
| 247 | 6.20k |     switch(mode) { | 
| 248 | 840 |       case 0: | 
| 249 | 840 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; | 
| 250 | 840 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW; | 
| 251 | 840 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO; | 
| 252 | 840 |         break; | 
| 253 | 422 |       case 1: | 
| 254 | 422 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; | 
| 255 | 422 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW; | 
| 256 | 422 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO; | 
| 257 | 422 |         break; | 
| 258 | 395 |       case 4: | 
| 259 | 395 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER; | 
| 260 | 395 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW; | 
| 261 | 395 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO; | 
| 262 | 395 |         break; | 
| 263 | 95 |       case 5: | 
| 264 | 95 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER; | 
| 265 | 95 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW; | 
| 266 | 95 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO; | 
| 267 | 95 |         break; | 
| 268 | 284 |       case 8: | 
| 269 | 284 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; | 
| 270 | 284 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW; | 
| 271 | 284 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE; | 
| 272 | 284 |         break; | 
| 273 | 2.09k |       case 9: | 
| 274 | 2.09k |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; | 
| 275 | 2.09k |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW; | 
| 276 | 2.09k |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE; | 
| 277 | 2.09k |         break; | 
| 278 | 461 |       case 10: | 
| 279 | 461 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; | 
| 280 | 461 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW; | 
| 281 | 461 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST; | 
| 282 | 461 |         break; | 
| 283 | 563 |       case 11: | 
| 284 | 563 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; | 
| 285 | 563 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW; | 
| 286 | 563 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST; | 
| 287 | 563 |         break; | 
| 288 | 103 |       case 12: | 
| 289 | 103 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER; | 
| 290 | 103 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW; | 
| 291 | 103 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE; | 
| 292 | 103 |         break; | 
| 293 | 253 |       case 13: | 
| 294 | 253 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER; | 
| 295 | 253 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW; | 
| 296 | 253 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_PRE; | 
| 297 | 253 |         break; | 
| 298 | 365 |       case 14: | 
| 299 | 365 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER; | 
| 300 | 365 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_BW; | 
| 301 | 365 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST; | 
| 302 | 365 |         break; | 
| 303 | 327 |       case 15: | 
| 304 | 327 |         tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_REGISTER; | 
| 305 | 327 |         tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW; | 
| 306 | 327 |         tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_POST; | 
| 307 | 327 |         break; | 
| 308 | 6.20k |     } | 
| 309 | 6.20k |     tms320c64x->op_count++; | 
| 310 | 6.20k |   } | 
| 311 | 6.20k | } | 
| 312 |  |  | 
| 313 |  | static void printMemOperand2(MCInst *MI, unsigned OpNo, SStream *O) | 
| 314 | 4.62k | { | 
| 315 | 4.62k |   MCOperand *Op = MCInst_getOperand(MI, OpNo); | 
| 316 | 4.62k |   int64_t Val = MCOperand_getImm(Op); | 
| 317 | 4.62k |   uint16_t offset; | 
| 318 | 4.62k |   unsigned basereg; | 
| 319 | 4.62k |   cs_tms320c64x *tms320c64x; | 
| 320 |  |  | 
| 321 | 4.62k |   basereg = Val & 0x7f; | 
| 322 | 4.62k |   offset = (Val >> 7) & 0x7fff; | 
| 323 | 4.62k |   SStream_concat(O, "*+%s[0x%x]", getRegisterName(basereg), offset); | 
| 324 |  |  | 
| 325 | 4.62k |   if (MI->csh->detail_opt) { | 
| 326 | 4.62k |     tms320c64x = &MI->flat_insn->detail->tms320c64x; | 
| 327 |  |  | 
| 328 | 4.62k |     tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM; | 
| 329 | 4.62k |     tms320c64x->operands[tms320c64x->op_count].mem.base = basereg; | 
| 330 | 4.62k |     tms320c64x->operands[tms320c64x->op_count].mem.unit = 2; | 
| 331 | 4.62k |     tms320c64x->operands[tms320c64x->op_count].mem.disp = offset; | 
| 332 | 4.62k |     tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; | 
| 333 | 4.62k |     tms320c64x->operands[tms320c64x->op_count].mem.direction = TMS320C64X_MEM_DIR_FW; | 
| 334 | 4.62k |     tms320c64x->operands[tms320c64x->op_count].mem.modify = TMS320C64X_MEM_MOD_NO; | 
| 335 | 4.62k |     tms320c64x->op_count++; | 
| 336 | 4.62k |   } | 
| 337 | 4.62k | } | 
| 338 |  |  | 
| 339 |  | static void printRegPair(MCInst *MI, unsigned OpNo, SStream *O) | 
| 340 | 12.4k | { | 
| 341 | 12.4k |   MCOperand *Op = MCInst_getOperand(MI, OpNo); | 
| 342 | 12.4k |   unsigned reg = MCOperand_getReg(Op); | 
| 343 | 12.4k |   cs_tms320c64x *tms320c64x; | 
| 344 |  |  | 
| 345 | 12.4k |   SStream_concat(O, "%s:%s", getRegisterName(reg + 1), getRegisterName(reg)); | 
| 346 |  |  | 
| 347 | 12.4k |   if (MI->csh->detail_opt) { | 
| 348 | 12.4k |     tms320c64x = &MI->flat_insn->detail->tms320c64x; | 
| 349 |  |  | 
| 350 | 12.4k |     tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_REGPAIR; | 
| 351 | 12.4k |     tms320c64x->operands[tms320c64x->op_count].reg = reg; | 
| 352 | 12.4k |     tms320c64x->op_count++; | 
| 353 | 12.4k |   } | 
| 354 | 12.4k | } | 
| 355 |  |  | 
| 356 |  | static bool printAliasInstruction(MCInst *MI, SStream *O, MCRegisterInfo *MRI) | 
| 357 | 41.6k | { | 
| 358 | 41.6k |   unsigned opcode = MCInst_getOpcode(MI); | 
| 359 | 41.6k |   MCOperand *op; | 
| 360 |  |  | 
| 361 | 41.6k |   switch(opcode) { | 
| 362 |  |     /* ADD.Dx -i, x, y -> SUB.Dx x, i, y */ | 
| 363 | 137 |     case TMS320C64x_ADD_d2_rir: | 
| 364 |  |     /* ADD.L -i, x, y -> SUB.L x, i, y */ | 
| 365 | 357 |     case TMS320C64x_ADD_l1_irr: | 
| 366 | 1.05k |     case TMS320C64x_ADD_l1_ipp: | 
| 367 |  |     /* ADD.S -i, x, y -> SUB.S x, i, y */ | 
| 368 | 1.42k |     case TMS320C64x_ADD_s1_irr: | 
| 369 | 1.42k |       if ((MCInst_getNumOperands(MI) == 3) && | 
| 370 | 1.42k |         MCOperand_isReg(MCInst_getOperand(MI, 0)) && | 
| 371 | 1.42k |         MCOperand_isReg(MCInst_getOperand(MI, 1)) && | 
| 372 | 1.42k |         MCOperand_isImm(MCInst_getOperand(MI, 2)) && | 
| 373 | 1.42k |         (MCOperand_getImm(MCInst_getOperand(MI, 2)) < 0)) { | 
| 374 |  |  | 
| 375 | 583 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_SUB); | 
| 376 | 583 |         op = MCInst_getOperand(MI, 2); | 
| 377 | 583 |         MCOperand_setImm(op, -MCOperand_getImm(op)); | 
| 378 |  |  | 
| 379 | 583 |         SStream_concat0(O, "SUB\t"); | 
| 380 | 583 |         printOperand(MI, 1, O); | 
| 381 | 583 |         SStream_concat0(O, ", "); | 
| 382 | 583 |         printOperand(MI, 2, O); | 
| 383 | 583 |         SStream_concat0(O, ", "); | 
| 384 | 583 |         printOperand(MI, 0, O); | 
| 385 |  |  | 
| 386 | 583 |         return true; | 
| 387 | 583 |       } | 
| 388 | 841 |       break; | 
| 389 | 41.6k |   } | 
| 390 | 41.0k |   switch(opcode) { | 
| 391 |  |     /* ADD.D 0, x, y -> MV.D x, y */ | 
| 392 | 333 |     case TMS320C64x_ADD_d1_rir: | 
| 393 |  |     /* OR.D x, 0, y -> MV.D x, y */ | 
| 394 | 571 |     case TMS320C64x_OR_d2_rir: | 
| 395 |  |     /* ADD.L 0, x, y -> MV.L x, y */ | 
| 396 | 782 |     case TMS320C64x_ADD_l1_irr: | 
| 397 | 1.10k |     case TMS320C64x_ADD_l1_ipp: | 
| 398 |  |     /* OR.L 0, x, y -> MV.L x, y */ | 
| 399 | 1.18k |     case TMS320C64x_OR_l1_irr: | 
| 400 |  |     /* ADD.S 0, x, y -> MV.S x, y */ | 
| 401 | 1.40k |     case TMS320C64x_ADD_s1_irr: | 
| 402 |  |     /* OR.S 0, x, y -> MV.S x, y */ | 
| 403 | 1.48k |     case TMS320C64x_OR_s1_irr: | 
| 404 | 1.48k |       if ((MCInst_getNumOperands(MI) == 3) && | 
| 405 | 1.48k |         MCOperand_isReg(MCInst_getOperand(MI, 0)) && | 
| 406 | 1.48k |         MCOperand_isReg(MCInst_getOperand(MI, 1)) && | 
| 407 | 1.48k |         MCOperand_isImm(MCInst_getOperand(MI, 2)) && | 
| 408 | 1.48k |         (MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) { | 
| 409 |  |  | 
| 410 | 104 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_MV); | 
| 411 | 104 |         MI->size--; | 
| 412 |  |  | 
| 413 | 104 |         SStream_concat0(O, "MV\t"); | 
| 414 | 104 |         printOperand(MI, 1, O); | 
| 415 | 104 |         SStream_concat0(O, ", "); | 
| 416 | 104 |         printOperand(MI, 0, O); | 
| 417 |  |  | 
| 418 | 104 |         return true; | 
| 419 | 104 |       } | 
| 420 | 1.37k |       break; | 
| 421 | 41.0k |   } | 
| 422 | 40.9k |   switch(opcode) { | 
| 423 |  |     /* XOR.D -1, x, y -> NOT.D x, y */ | 
| 424 | 209 |     case TMS320C64x_XOR_d2_rir: | 
| 425 |  |     /* XOR.L -1, x, y -> NOT.L x, y */ | 
| 426 | 307 |     case TMS320C64x_XOR_l1_irr: | 
| 427 |  |     /* XOR.S -1, x, y -> NOT.S x, y */ | 
| 428 | 715 |     case TMS320C64x_XOR_s1_irr: | 
| 429 | 715 |       if ((MCInst_getNumOperands(MI) == 3) && | 
| 430 | 715 |         MCOperand_isReg(MCInst_getOperand(MI, 0)) && | 
| 431 | 715 |         MCOperand_isReg(MCInst_getOperand(MI, 1)) && | 
| 432 | 715 |         MCOperand_isImm(MCInst_getOperand(MI, 2)) && | 
| 433 | 715 |         (MCOperand_getImm(MCInst_getOperand(MI, 2)) == -1)) { | 
| 434 |  |  | 
| 435 | 90 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_NOT); | 
| 436 | 90 |         MI->size--; | 
| 437 |  |  | 
| 438 | 90 |         SStream_concat0(O, "NOT\t"); | 
| 439 | 90 |         printOperand(MI, 1, O); | 
| 440 | 90 |         SStream_concat0(O, ", "); | 
| 441 | 90 |         printOperand(MI, 0, O); | 
| 442 |  |  | 
| 443 | 90 |         return true; | 
| 444 | 90 |       } | 
| 445 | 625 |       break; | 
| 446 | 40.9k |   } | 
| 447 | 40.8k |   switch(opcode) { | 
| 448 |  |     /* MVK.D 0, x -> ZERO.D x */ | 
| 449 | 409 |     case TMS320C64x_MVK_d1_rr: | 
| 450 |  |     /* MVK.L 0, x -> ZERO.L x */ | 
| 451 | 554 |     case TMS320C64x_MVK_l2_ir: | 
| 452 | 554 |       if ((MCInst_getNumOperands(MI) == 2) && | 
| 453 | 554 |         MCOperand_isReg(MCInst_getOperand(MI, 0)) && | 
| 454 | 554 |         MCOperand_isImm(MCInst_getOperand(MI, 1)) && | 
| 455 | 554 |         (MCOperand_getImm(MCInst_getOperand(MI, 1)) == 0)) { | 
| 456 |  |  | 
| 457 | 415 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO); | 
| 458 | 415 |         MI->size--; | 
| 459 |  |  | 
| 460 | 415 |         SStream_concat0(O, "ZERO\t"); | 
| 461 | 415 |         printOperand(MI, 0, O); | 
| 462 |  |  | 
| 463 | 415 |         return true; | 
| 464 | 415 |       } | 
| 465 | 139 |       break; | 
| 466 | 40.8k |   } | 
| 467 | 40.4k |   switch(opcode) { | 
| 468 |  |     /* SUB.L x, x, y -> ZERO.L y */ | 
| 469 | 176 |     case TMS320C64x_SUB_l1_rrp_x1: | 
| 470 |  |     /* SUB.S x, x, y -> ZERO.S y */ | 
| 471 | 271 |     case TMS320C64x_SUB_s1_rrr: | 
| 472 | 271 |       if ((MCInst_getNumOperands(MI) == 3) && | 
| 473 | 271 |         MCOperand_isReg(MCInst_getOperand(MI, 0)) && | 
| 474 | 271 |         MCOperand_isReg(MCInst_getOperand(MI, 1)) && | 
| 475 | 271 |         MCOperand_isReg(MCInst_getOperand(MI, 2)) && | 
| 476 | 271 |         (MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) { | 
| 477 |  |  | 
| 478 | 18 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_ZERO); | 
| 479 | 18 |         MI->size -= 2; | 
| 480 |  |  | 
| 481 | 18 |         SStream_concat0(O, "ZERO\t"); | 
| 482 | 18 |         printOperand(MI, 0, O); | 
| 483 |  |  | 
| 484 | 18 |         return true; | 
| 485 | 18 |       } | 
| 486 | 253 |       break; | 
| 487 | 40.4k |   } | 
| 488 | 40.4k |   switch(opcode) { | 
| 489 |  |     /* SUB.L 0, x, y -> NEG.L x, y */ | 
| 490 | 70 |     case TMS320C64x_SUB_l1_irr: | 
| 491 | 178 |     case TMS320C64x_SUB_l1_ipp: | 
| 492 |  |     /* SUB.S 0, x, y -> NEG.S x, y */ | 
| 493 | 262 |     case TMS320C64x_SUB_s1_irr: | 
| 494 | 262 |       if ((MCInst_getNumOperands(MI) == 3) && | 
| 495 | 262 |         MCOperand_isReg(MCInst_getOperand(MI, 0)) && | 
| 496 | 262 |         MCOperand_isReg(MCInst_getOperand(MI, 1)) && | 
| 497 | 262 |         MCOperand_isImm(MCInst_getOperand(MI, 2)) && | 
| 498 | 262 |         (MCOperand_getImm(MCInst_getOperand(MI, 2)) == 0)) { | 
| 499 |  |  | 
| 500 | 28 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_NEG); | 
| 501 | 28 |         MI->size--; | 
| 502 |  |  | 
| 503 | 28 |         SStream_concat0(O, "NEG\t"); | 
| 504 | 28 |         printOperand(MI, 1, O); | 
| 505 | 28 |         SStream_concat0(O, ", "); | 
| 506 | 28 |         printOperand(MI, 0, O); | 
| 507 |  |  | 
| 508 | 28 |         return true; | 
| 509 | 28 |       } | 
| 510 | 234 |       break; | 
| 511 | 40.4k |   } | 
| 512 | 40.4k |   switch(opcode) { | 
| 513 |  |     /* PACKLH2.L x, x, y -> SWAP2.L x, y */ | 
| 514 | 458 |     case TMS320C64x_PACKLH2_l1_rrr_x2: | 
| 515 |  |     /* PACKLH2.S x, x, y -> SWAP2.S x, y */ | 
| 516 | 566 |     case TMS320C64x_PACKLH2_s1_rrr: | 
| 517 | 566 |       if ((MCInst_getNumOperands(MI) == 3) && | 
| 518 | 566 |         MCOperand_isReg(MCInst_getOperand(MI, 0)) && | 
| 519 | 566 |         MCOperand_isReg(MCInst_getOperand(MI, 1)) && | 
| 520 | 566 |         MCOperand_isReg(MCInst_getOperand(MI, 2)) && | 
| 521 | 566 |         (MCOperand_getReg(MCInst_getOperand(MI, 1)) == MCOperand_getReg(MCInst_getOperand(MI, 2)))) { | 
| 522 |  |  | 
| 523 | 96 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_SWAP2); | 
| 524 | 96 |         MI->size--; | 
| 525 |  |  | 
| 526 | 96 |         SStream_concat0(O, "SWAP2\t"); | 
| 527 | 96 |         printOperand(MI, 1, O); | 
| 528 | 96 |         SStream_concat0(O, ", "); | 
| 529 | 96 |         printOperand(MI, 0, O); | 
| 530 |  |  | 
| 531 | 96 |         return true; | 
| 532 | 96 |       } | 
| 533 | 470 |       break; | 
| 534 | 40.4k |   } | 
| 535 | 40.3k |   switch(opcode) { | 
| 536 |  |     /* NOP 16 -> IDLE */ | 
| 537 |  |     /* NOP 1 -> NOP */ | 
| 538 | 1.34k |     case TMS320C64x_NOP_n: | 
| 539 | 1.34k |       if ((MCInst_getNumOperands(MI) == 1) && | 
| 540 | 1.34k |         MCOperand_isImm(MCInst_getOperand(MI, 0)) && | 
| 541 | 1.34k |         (MCOperand_getReg(MCInst_getOperand(MI, 0)) == 16)) { | 
| 542 |  |  | 
| 543 | 211 |         MCInst_setOpcodePub(MI, TMS320C64X_INS_IDLE); | 
| 544 | 211 |         MI->size--; | 
| 545 |  |  | 
| 546 | 211 |         SStream_concat0(O, "IDLE"); | 
| 547 |  |  | 
| 548 | 211 |         return true; | 
| 549 | 211 |       } | 
| 550 | 1.12k |       if ((MCInst_getNumOperands(MI) == 1) && | 
| 551 | 1.12k |         MCOperand_isImm(MCInst_getOperand(MI, 0)) && | 
| 552 | 1.12k |         (MCOperand_getReg(MCInst_getOperand(MI, 0)) == 1)) { | 
| 553 |  |  | 
| 554 | 883 |         MI->size--; | 
| 555 |  |  | 
| 556 | 883 |         SStream_concat0(O, "NOP"); | 
| 557 |  |  | 
| 558 | 883 |         return true; | 
| 559 | 883 |       } | 
| 560 | 246 |       break; | 
| 561 | 40.3k |   } | 
| 562 |  |  | 
| 563 | 39.2k |   return false; | 
| 564 | 40.3k | } | 
| 565 |  |  | 
| 566 |  | void TMS320C64x_printInst(MCInst *MI, SStream *O, void *Info) | 
| 567 | 41.6k | { | 
| 568 | 41.6k |   if (!printAliasInstruction(MI, O, Info)) | 
| 569 | 39.2k |     printInstruction(MI, O, Info); | 
| 570 | 41.6k | } | 
| 571 |  |  | 
| 572 |  | #endif |