Lines Matching refs:opcode
47 int8 SetRoundingMode(const unsigned int opcode) in SetRoundingMode() argument
49 switch (opcode & MASK_ROUNDING_MODE) { in SetRoundingMode()
65 int8 SetRoundingPrecision(const unsigned int opcode) in SetRoundingPrecision() argument
68 switch (opcode & MASK_ROUNDING_PRECISION) { in SetRoundingPrecision()
97 unsigned int EmulateAll(unsigned int opcode) in EmulateAll() argument
102 printk("NWFPE: emulating opcode %08x\n", opcode); in EmulateAll()
104 code = opcode & 0x00000f00; in EmulateAll()
107 code = opcode & 0x0e000000; in EmulateAll()
109 if (opcode & 0x00000010) { in EmulateAll()
113 return EmulateCPRT(opcode); in EmulateAll()
117 return EmulateCPDO(opcode); in EmulateAll()
122 return EmulateCPDT(opcode); in EmulateAll()