Lines Matching refs:decodeTablePTR
70 struct decodeInfo *decodeTablePTR = 0; in print_insn() local
85 for (i = 0, decodeTablePTR = decodeTable; i < xgate_num_opcodes; in print_insn()
86 i++, decodeTablePTR++, opcodePTR++) in print_insn()
103 decodeTablePTR->operMask = mask; in print_insn()
104 decodeTablePTR->operMasksRegisterBits = operandRegisterBits; in print_insn()
105 decodeTablePTR->opcodePTR = opcodePTR; in print_insn()
351 struct decodeInfo *decodeTablePTR = 0; in find_match() local
354 for (i = 0, decodeTablePTR = decodeTable; i < xgate_num_opcodes; in find_match()
355 i++, decodeTablePTR++) in find_match()
357 if ((raw_code & decodeTablePTR->operMask) in find_match()
358 == decodeTablePTR->opcodePTR->bin_opcode) in find_match()
361 if (decodeTablePTR->opcodePTR->cycles_min != 0) in find_match()
363 return decodeTablePTR; in find_match()