Lines Matching refs:optable_special
605 tic4x_hash_opcode_special (tic4x_inst_t **optable_special, in tic4x_hash_opcode_special() argument
611 if (optable_special[i] != NULL in tic4x_hash_opcode_special()
612 && optable_special[i]->opcode == inst->opcode) in tic4x_hash_opcode_special()
615 optable_special[i] = (tic4x_inst_t *) inst; in tic4x_hash_opcode_special()
620 if (optable_special[i] == NULL) in tic4x_hash_opcode_special()
623 optable_special[i] = (tic4x_inst_t *) inst; in tic4x_hash_opcode_special()
637 tic4x_inst_t **optable_special, in tic4x_hash_opcode() argument
667 tic4x_hash_opcode_special (optable_special, optable[j]); in tic4x_hash_opcode()
670 tic4x_hash_opcode_special (optable_special, inst); in tic4x_hash_opcode()
689 static tic4x_inst_t **optable_special = NULL; in tic4x_disassemble() local
703 optable_special = xcalloc (sizeof (tic4x_inst_t *), TIC4X_SPESOP_SIZE); in tic4x_disassemble()
708 tic4x_hash_opcode (optable, optable_special, &tic4x_insts[i], in tic4x_disassemble()
715 if (optable_special[i] != NULL) in tic4x_disassemble()
716 optable[optable_special[i]->opcode >> (32 - TIC4X_HASH_SIZE)] = NULL; in tic4x_disassemble()
735 if (optable_special[i] != NULL in tic4x_disassemble()
736 && optable_special[i]->opcode == instruction) in tic4x_disassemble()
738 (*info->fprintf_func)(info->stream, "%s", optable_special[i]->name); in tic4x_disassemble()