Lines Matching defs:opcode
14 unsigned int SingleCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd);
15 unsigned int DoubleCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd);
16 unsigned int ExtendedCPDO(struct roundingData *roundData, const unsigned int opcode, FPREG * rFd);
18 unsigned int EmulateCPDO(const unsigned int opcode)
27 nDest = getDestinationSize(opcode);
31 roundData.mode = SetRoundingMode(opcode);
32 roundData.precision = SetRoundingPrecision(opcode);
40 if (MONADIC_INSTRUCTION(opcode))
43 nType = fpa11->fType[getFn(opcode)];
45 if (!CONSTANT_FM(opcode)) {
46 register unsigned int Fm = getFm(opcode);
52 rFd = &fpa11->fpreg[getFd(opcode)];
56 nRc = SingleCPDO(&roundData, opcode, rFd);
59 nRc = DoubleCPDO(&roundData, opcode, rFd);
63 nRc = ExtendedCPDO(&roundData, opcode, rFd);
78 fpa11->fType[getFd(opcode)] = nDest;