math.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * arch/sparc/math-emu/math.c
  3.  *
  4.  * Copyright (C) 1998 Peter Maydell (pmaydell@chiark.greenend.org.uk)
  5.  * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
  6.  * Copyright (C) 1999 David S. Miller (davem@redhat.com)
  7.  *
  8.  * This is a good place to start if you're trying to understand the
  9.  * emulation code, because it's pretty simple. What we do is
  10.  * essentially analyse the instruction to work out what the operation
  11.  * is and which registers are involved. We then execute the appropriate
  12.  * FXXXX function. [The floating point queue introduces a minor wrinkle;
  13.  * see below...]
  14.  * The fxxxxx.c files each emulate a single insn. They look relatively
  15.  * simple because the complexity is hidden away in an unholy tangle
  16.  * of preprocessor macros.
  17.  *
  18.  * The first layer of macros is single.h, double.h, quad.h. Generally
  19.  * these files define macros for working with floating point numbers
  20.  * of the three IEEE formats. FP_ADD_D(R,A,B) is for adding doubles,
  21.  * for instance. These macros are usually defined as calls to more
  22.  * generic macros (in this case _FP_ADD(D,2,R,X,Y) where the number
  23.  * of machine words required to store the given IEEE format is passed
  24.  * as a parameter. [double.h and co check the number of bits in a word
  25.  * and define FP_ADD_D & co appropriately].
  26.  * The generic macros are defined in op-common.h. This is where all
  27.  * the grotty stuff like handling NaNs is coded. To handle the possible
  28.  * word sizes macros in op-common.h use macros like _FP_FRAC_SLL_##wc()
  29.  * where wc is the 'number of machine words' parameter (here 2).
  30.  * These are defined in the third layer of macros: op-1.h, op-2.h
  31.  * and op-4.h. These handle operations on floating point numbers composed
  32.  * of 1,2 and 4 machine words respectively. [For example, on sparc64
  33.  * doubles are one machine word so macros in double.h eventually use
  34.  * constructs in op-1.h, but on sparc32 they use op-2.h definitions.]
  35.  * soft-fp.h is on the same level as op-common.h, and defines some
  36.  * macros which are independent of both word size and FP format.
  37.  * Finally, sfp-machine.h is the machine dependent part of the
  38.  * code: it defines the word size and what type a word is. It also
  39.  * defines how _FP_MUL_MEAT_t() maps to _FP_MUL_MEAT_n_* : op-n.h
  40.  * provide several possible flavours of multiply algorithm, most
  41.  * of which require that you supply some form of asm or C primitive to
  42.  * do the actual multiply. (such asm primitives should be defined
  43.  * in sfp-machine.h too). udivmodti4.c is the same sort of thing.
  44.  *
  45.  * There may be some errors here because I'm working from a
  46.  * SPARC architecture manual V9, and what I really want is V8...
  47.  * Also, the insns which can generate exceptions seem to be a
  48.  * greater subset of the FPops than for V9 (for example, FCMPED
  49.  * has to be emulated on V8). So I think I'm going to have
  50.  * to emulate them all just to be on the safe side...
  51.  *
  52.  * Emulation routines originate from soft-fp package, which is
  53.  * part of glibc and has appropriate copyrights in it (allegedly).
  54.  *
  55.  * NB: on sparc int == long == 4 bytes, long long == 8 bytes.
  56.  * Most bits of the kernel seem to go for long rather than int,
  57.  * so we follow that practice...
  58.  */
  59. /* TODO:
  60.  * fpsave() saves the FP queue but fpload() doesn't reload it.
  61.  * Therefore when we context switch or change FPU ownership
  62.  * we have to check to see if the queue had anything in it and
  63.  * emulate it if it did. This is going to be a pain.
  64.  */
  65. #include <linux/types.h>
  66. #include <linux/sched.h>
  67. #include <linux/mm.h>
  68. #include <asm/uaccess.h>
  69. #include "sfp-util.h"
  70. #include <math-emu/soft-fp.h>
  71. #include <math-emu/single.h>
  72. #include <math-emu/double.h>
  73. #include <math-emu/quad.h>
  74. #define FLOATFUNC(x) extern int x(void *,void *,void *)
  75. /* The Vn labels indicate what version of the SPARC architecture gas thinks
  76.  * each insn is. This is from the binutils source :->
  77.  */
  78. /* quadword instructions */
  79. #define FSQRTQ 0x02b /* v8 */
  80. #define FADDQ 0x043 /* v8 */
  81. #define FSUBQ 0x047 /* v8 */
  82. #define FMULQ 0x04b /* v8 */
  83. #define FDIVQ 0x04f /* v8 */
  84. #define FDMULQ 0x06e /* v8 */
  85. #define FQTOS 0x0c7 /* v8 */
  86. #define FQTOD 0x0cb /* v8 */
  87. #define FITOQ 0x0cc /* v8 */
  88. #define FSTOQ 0x0cd /* v8 */
  89. #define FDTOQ 0x0ce /* v8 */
  90. #define FQTOI 0x0d3 /* v8 */
  91. #define FCMPQ 0x053 /* v8 */
  92. #define FCMPEQ 0x057 /* v8 */
  93. /* single/double instructions (subnormal): should all work */
  94. #define FSQRTS 0x029 /* v7 */
  95. #define FSQRTD 0x02a /* v7 */
  96. #define FADDS 0x041 /* v6 */
  97. #define FADDD 0x042 /* v6 */
  98. #define FSUBS 0x045 /* v6 */
  99. #define FSUBD 0x046 /* v6 */
  100. #define FMULS 0x049 /* v6 */
  101. #define FMULD 0x04a /* v6 */
  102. #define FDIVS 0x04d /* v6 */
  103. #define FDIVD 0x04e /* v6 */
  104. #define FSMULD 0x069 /* v6 */
  105. #define FDTOS 0x0c6 /* v6 */
  106. #define FSTOD 0x0c9 /* v6 */
  107. #define FSTOI 0x0d1 /* v6 */
  108. #define FDTOI 0x0d2 /* v6 */
  109. #define FABSS 0x009 /* v6 */
  110. #define FCMPS 0x051 /* v6 */
  111. #define FCMPES 0x055 /* v6 */
  112. #define FCMPD 0x052 /* v6 */
  113. #define FCMPED 0x056 /* v6 */
  114. #define FMOVS 0x001 /* v6 */
  115. #define FNEGS 0x005 /* v6 */
  116. #define FITOS 0x0c4 /* v6 */
  117. #define FITOD 0x0c8 /* v6 */
  118. #define FSR_TEM_SHIFT 23UL
  119. #define FSR_TEM_MASK (0x1fUL << FSR_TEM_SHIFT)
  120. #define FSR_AEXC_SHIFT 5UL
  121. #define FSR_AEXC_MASK (0x1fUL << FSR_AEXC_SHIFT)
  122. #define FSR_CEXC_SHIFT 0UL
  123. #define FSR_CEXC_MASK (0x1fUL << FSR_CEXC_SHIFT)
  124. static int do_one_mathemu(u32 insn, unsigned long *fsr, unsigned long *fregs);
  125. /* Unlike the Sparc64 version (which has a struct fpustate), we
  126.  * pass the taskstruct corresponding to the task which currently owns the
  127.  * FPU. This is partly because we don't have the fpustate struct and
  128.  * partly because the task owning the FPU isn't always current (as is
  129.  * the case for the Sparc64 port). This is probably SMP-related...
  130.  * This function returns 1 if all queued insns were emulated successfully.
  131.  * The test for unimplemented FPop in kernel mode has been moved into
  132.  * kernel/traps.c for simplicity.
  133.  */
  134. int do_mathemu(struct pt_regs *regs, struct task_struct *fpt)
  135. {
  136. /* regs->pc isn't necessarily the PC at which the offending insn is sitting.
  137.  * The FPU maintains a queue of FPops which cause traps.
  138.  * When it hits an instruction that requires that the trapped op succeeded
  139.  * (usually because it reads a reg. that the trapped op wrote) then it
  140.  * causes this exception. We need to emulate all the insns on the queue
  141.  * and then allow the op to proceed.
  142.  * This code should also handle the case where the trap was precise,
  143.  * in which case the queue length is zero and regs->pc points at the
  144.  * single FPop to be emulated. (this case is untested, though :->)
  145.  * You'll need this case if you want to be able to emulate all FPops
  146.  * because the FPU either doesn't exist or has been software-disabled.
  147.  * [The UltraSPARC makes FP a precise trap; this isn't as stupid as it
  148.  * might sound because the Ultra does funky things with a superscalar
  149.  * architecture.]
  150.  */
  151. /* You wouldn't believe how often I typed 'ftp' when I meant 'fpt' :-> */
  152. int i;
  153. int retcode = 0;                               /* assume all succeed */
  154. unsigned long insn;
  155. #ifdef DEBUG_MATHEMU
  156. printk("In do_mathemu()... pc is %08lxn", regs->pc);
  157. printk("fpqdepth is %ldn", fpt->thread.fpqdepth);
  158. for (i = 0; i < fpt->thread.fpqdepth; i++)
  159. printk("%d: %08lx at %08lxn", i, fpt->thread.fpqueue[i].insn,
  160.        (unsigned long)fpt->thread.fpqueue[i].insn_addr);
  161. #endif
  162. if (fpt->thread.fpqdepth == 0) {                   /* no queue, guilty insn is at regs->pc */
  163. #ifdef DEBUG_MATHEMU
  164. printk("precise trap at %08lxn", regs->pc);
  165. #endif
  166. if (!get_user(insn, (u32 *)regs->pc)) {
  167. retcode = do_one_mathemu(insn, &fpt->thread.fsr, fpt->thread.float_regs);
  168. if (retcode) {
  169. /* in this case we need to fix up PC & nPC */
  170. regs->pc = regs->npc;
  171. regs->npc += 4;
  172. }
  173. }
  174. return retcode;
  175. }
  176. /* Normal case: need to empty the queue... */
  177. for (i = 0; i < fpt->thread.fpqdepth; i++) {
  178. retcode = do_one_mathemu(fpt->thread.fpqueue[i].insn, &(fpt->thread.fsr), fpt->thread.float_regs);
  179. if (!retcode)                               /* insn failed, no point doing any more */
  180. break;
  181. }
  182. /* Now empty the queue and clear the queue_not_empty flag */
  183. if(retcode)
  184. fpt->thread.fsr &= ~(0x3000 | FSR_CEXC_MASK);
  185. else
  186. fpt->thread.fsr &= ~0x3000;
  187. fpt->thread.fpqdepth = 0;
  188. return retcode;
  189. }
  190. /* All routines returning an exception to raise should detect
  191.  * such exceptions _before_ rounding to be consistant with
  192.  * the behavior of the hardware in the implemented cases
  193.  * (and thus with the recommendations in the V9 architecture
  194.  * manual).
  195.  *
  196.  * We return 0 if a SIGFPE should be sent, 1 otherwise.
  197.  */
  198. static inline int record_exception(unsigned long *pfsr, int eflag)
  199. {
  200. unsigned long fsr = *pfsr;
  201. int would_trap;
  202. /* Determine if this exception would have generated a trap. */
  203. would_trap = (fsr & ((long)eflag << FSR_TEM_SHIFT)) != 0UL;
  204. /* If trapping, we only want to signal one bit. */
  205. if(would_trap != 0) {
  206. eflag &= ((fsr & FSR_TEM_MASK) >> FSR_TEM_SHIFT);
  207. if((eflag & (eflag - 1)) != 0) {
  208. if(eflag & FP_EX_INVALID)
  209. eflag = FP_EX_INVALID;
  210. else if(eflag & FP_EX_OVERFLOW)
  211. eflag = FP_EX_OVERFLOW;
  212. else if(eflag & FP_EX_UNDERFLOW)
  213. eflag = FP_EX_UNDERFLOW;
  214. else if(eflag & FP_EX_DIVZERO)
  215. eflag = FP_EX_DIVZERO;
  216. else if(eflag & FP_EX_INEXACT)
  217. eflag = FP_EX_INEXACT;
  218. }
  219. }
  220. /* Set CEXC, here is the rule:
  221.  *
  222.  *    In general all FPU ops will set one and only one
  223.  *    bit in the CEXC field, this is always the case
  224.  *    when the IEEE exception trap is enabled in TEM.
  225.  */
  226. fsr &= ~(FSR_CEXC_MASK);
  227. fsr |= ((long)eflag << FSR_CEXC_SHIFT);
  228. /* Set the AEXC field, rule is:
  229.  *
  230.  *    If a trap would not be generated, the
  231.  *    CEXC just generated is OR'd into the
  232.  *    existing value of AEXC.
  233.  */
  234. if(would_trap == 0)
  235. fsr |= ((long)eflag << FSR_AEXC_SHIFT);
  236. /* If trapping, indicate fault trap type IEEE. */
  237. if(would_trap != 0)
  238. fsr |= (1UL << 14);
  239. *pfsr = fsr;
  240. return (would_trap ? 0 : 1);
  241. }
  242. typedef union {
  243. u32 s;
  244. u64 d;
  245. u64 q[2];
  246. } *argp;
  247. static int do_one_mathemu(u32 insn, unsigned long *pfsr, unsigned long *fregs)
  248. {
  249. /* Emulate the given insn, updating fsr and fregs appropriately. */
  250. int type = 0;
  251. /* r is rd, b is rs2 and a is rs1. The *u arg tells
  252.    whether the argument should be packed/unpacked (0 - do not unpack/pack, 1 - unpack/pack)
  253.    non-u args tells the size of the argument (0 - no argument, 1 - single, 2 - double, 3 - quad */
  254. #define TYPE(dummy, r, ru, b, bu, a, au) type = (au << 2) | (a << 0) | (bu << 5) | (b << 3) | (ru << 8) | (r << 6)
  255. int freg;
  256. argp rs1 = NULL, rs2 = NULL, rd = NULL;
  257. FP_DECL_EX;
  258. FP_DECL_S(SA); FP_DECL_S(SB); FP_DECL_S(SR);
  259. FP_DECL_D(DA); FP_DECL_D(DB); FP_DECL_D(DR);
  260. FP_DECL_Q(QA); FP_DECL_Q(QB); FP_DECL_Q(QR);
  261. int IR;
  262. long fsr;
  263. #ifdef DEBUG_MATHEMU
  264. printk("In do_mathemu(), emulating %08lxn", insn);
  265. #endif
  266. if ((insn & 0xc1f80000) == 0x81a00000) /* FPOP1 */ {
  267. switch ((insn >> 5) & 0x1ff) {
  268. case FSQRTQ: TYPE(3,3,1,3,1,0,0); break;
  269. case FADDQ:
  270. case FSUBQ:
  271. case FMULQ:
  272. case FDIVQ: TYPE(3,3,1,3,1,3,1); break;
  273. case FDMULQ: TYPE(3,3,1,2,1,2,1); break;
  274. case FQTOS: TYPE(3,1,1,3,1,0,0); break;
  275. case FQTOD: TYPE(3,2,1,3,1,0,0); break;
  276. case FITOQ: TYPE(3,3,1,1,0,0,0); break;
  277. case FSTOQ: TYPE(3,3,1,1,1,0,0); break;
  278. case FDTOQ: TYPE(3,3,1,2,1,0,0); break;
  279. case FQTOI: TYPE(3,1,0,3,1,0,0); break;
  280. case FSQRTS: TYPE(2,1,1,1,1,0,0); break;
  281. case FSQRTD: TYPE(2,2,1,2,1,0,0); break;
  282. case FADDD:
  283. case FSUBD:
  284. case FMULD:
  285. case FDIVD: TYPE(2,2,1,2,1,2,1); break;
  286. case FADDS:
  287. case FSUBS:
  288. case FMULS:
  289. case FDIVS: TYPE(2,1,1,1,1,1,1); break;
  290. case FSMULD: TYPE(2,2,1,1,1,1,1); break;
  291. case FDTOS: TYPE(2,1,1,2,1,0,0); break;
  292. case FSTOD: TYPE(2,2,1,1,1,0,0); break;
  293. case FSTOI: TYPE(2,1,0,1,1,0,0); break;
  294. case FDTOI: TYPE(2,1,0,2,1,0,0); break;
  295. case FITOS: TYPE(2,1,1,1,0,0,0); break;
  296. case FITOD: TYPE(2,2,1,1,0,0,0); break;
  297. case FMOVS:
  298. case FABSS:
  299. case FNEGS: TYPE(2,1,0,1,0,0,0); break;
  300. default:
  301. #ifdef DEBUG_MATHEMU
  302. printk("unknown FPop1: %03lxn",(insn>>5)&0x1ff);
  303. #endif
  304. }
  305. } else if ((insn & 0xc1f80000) == 0x81a80000) /* FPOP2 */ {
  306. switch ((insn >> 5) & 0x1ff) {
  307. case FCMPS: TYPE(3,0,0,1,1,1,1); break;
  308. case FCMPES: TYPE(3,0,0,1,1,1,1); break;
  309. case FCMPD: TYPE(3,0,0,2,1,2,1); break;
  310. case FCMPED: TYPE(3,0,0,2,1,2,1); break;
  311. case FCMPQ: TYPE(3,0,0,3,1,3,1); break;
  312. case FCMPEQ: TYPE(3,0,0,3,1,3,1); break;
  313. default:
  314. #ifdef DEBUG_MATHEMU
  315. printk("unknown FPop2: %03lxn",(insn>>5)&0x1ff);
  316. #endif
  317. }
  318. }
  319. if (!type) { /* oops, didn't recognise that FPop */
  320. #ifdef DEBUG_MATHEMU
  321. printk("attempt to emulate unrecognised FPop!n");
  322. #endif
  323. return 0;
  324. }
  325. /* Decode the registers to be used */
  326. freg = (*pfsr >> 14) & 0xf;
  327. *pfsr &= ~0x1c000; /* clear the traptype bits */
  328. freg = ((insn >> 14) & 0x1f);
  329. switch (type & 0x3) { /* is rs1 single, double or quad? */
  330. case 3:
  331. if (freg & 3) { /* quadwords must have bits 4&5 of the */
  332. /* encoded reg. number set to zero. */
  333. *pfsr |= (6 << 14);
  334. return 0; /* simulate invalid_fp_register exception */
  335. }
  336. /* fall through */
  337. case 2:
  338. if (freg & 1) { /* doublewords must have bit 5 zeroed */
  339. *pfsr |= (6 << 14);
  340. return 0;
  341. }
  342. }
  343. rs1 = (argp)&fregs[freg];
  344. switch (type & 0x7) {
  345. case 7: FP_UNPACK_QP (QA, rs1); break;
  346. case 6: FP_UNPACK_DP (DA, rs1); break;
  347. case 5: FP_UNPACK_SP (SA, rs1); break;
  348. }
  349. freg = (insn & 0x1f);
  350. switch ((type >> 3) & 0x3) { /* same again for rs2 */
  351. case 3:
  352. if (freg & 3) { /* quadwords must have bits 4&5 of the */
  353. /* encoded reg. number set to zero. */
  354. *pfsr |= (6 << 14);
  355. return 0; /* simulate invalid_fp_register exception */
  356. }
  357. /* fall through */
  358. case 2:
  359. if (freg & 1) { /* doublewords must have bit 5 zeroed */
  360. *pfsr |= (6 << 14);
  361. return 0;
  362. }
  363. }
  364. rs2 = (argp)&fregs[freg];
  365. switch ((type >> 3) & 0x7) {
  366. case 7: FP_UNPACK_QP (QB, rs2); break;
  367. case 6: FP_UNPACK_DP (DB, rs2); break;
  368. case 5: FP_UNPACK_SP (SB, rs2); break;
  369. }
  370. freg = ((insn >> 25) & 0x1f);
  371. switch ((type >> 6) & 0x3) { /* and finally rd. This one's a bit different */
  372. case 0: /* dest is fcc. (this must be FCMPQ or FCMPEQ) */
  373. if (freg) { /* V8 has only one set of condition codes, so */
  374. /* anything but 0 in the rd field is an error */
  375. *pfsr |= (6 << 14); /* (should probably flag as invalid opcode */
  376. return 0; /* but SIGFPE will do :-> ) */
  377. }
  378. break;
  379. case 3:
  380. if (freg & 3) { /* quadwords must have bits 4&5 of the */
  381. /* encoded reg. number set to zero. */
  382. *pfsr |= (6 << 14);
  383. return 0; /* simulate invalid_fp_register exception */
  384. }
  385. /* fall through */
  386. case 2:
  387. if (freg & 1) { /* doublewords must have bit 5 zeroed */
  388. *pfsr |= (6 << 14);
  389. return 0;
  390. }
  391. /* fall through */
  392. case 1:
  393. rd = (void *)&fregs[freg];
  394. break;
  395. }
  396. #ifdef DEBUG_MATHEMU
  397. printk("executing insn...n");
  398. #endif
  399. /* do the Right Thing */
  400. switch ((insn >> 5) & 0x1ff) {
  401. /* + */
  402. case FADDS: FP_ADD_S (SR, SA, SB); break;
  403. case FADDD: FP_ADD_D (DR, DA, DB); break;
  404. case FADDQ: FP_ADD_Q (QR, QA, QB); break;
  405. /* - */
  406. case FSUBS: FP_SUB_S (SR, SA, SB); break;
  407. case FSUBD: FP_SUB_D (DR, DA, DB); break;
  408. case FSUBQ: FP_SUB_Q (QR, QA, QB); break;
  409. /* * */
  410. case FMULS: FP_MUL_S (SR, SA, SB); break;
  411. case FSMULD: FP_CONV (D, S, 2, 1, DA, SA);
  412.      FP_CONV (D, S, 2, 1, DB, SB);
  413. case FMULD: FP_MUL_D (DR, DA, DB); break;
  414. case FDMULQ: FP_CONV (Q, D, 4, 2, QA, DA);
  415.      FP_CONV (Q, D, 4, 2, QB, DB);
  416. case FMULQ: FP_MUL_Q (QR, QA, QB); break;
  417. /* / */
  418. case FDIVS: FP_DIV_S (SR, SA, SB); break;
  419. case FDIVD: FP_DIV_D (DR, DA, DB); break;
  420. case FDIVQ: FP_DIV_Q (QR, QA, QB); break;
  421. /* sqrt */
  422. case FSQRTS: FP_SQRT_S (SR, SB); break;
  423. case FSQRTD: FP_SQRT_D (DR, DB); break;
  424. case FSQRTQ: FP_SQRT_Q (QR, QB); break;
  425. /* mov */
  426. case FMOVS: rd->s = rs2->s; break;
  427. case FABSS: rd->s = rs2->s & 0x7fffffff; break;
  428. case FNEGS: rd->s = rs2->s ^ 0x80000000; break;
  429. /* float to int */
  430. case FSTOI: FP_TO_INT_S (IR, SB, 32, 1); break;
  431. case FDTOI: FP_TO_INT_D (IR, DB, 32, 1); break;
  432. case FQTOI: FP_TO_INT_Q (IR, QB, 32, 1); break;
  433. /* int to float */
  434. case FITOS: IR = rs2->s; FP_FROM_INT_S (SR, IR, 32, int); break;
  435. case FITOD: IR = rs2->s; FP_FROM_INT_D (DR, IR, 32, int); break;
  436. case FITOQ: IR = rs2->s; FP_FROM_INT_Q (QR, IR, 32, int); break;
  437. /* float to float */
  438. case FSTOD: FP_CONV (D, S, 2, 1, DR, SB); break;
  439. case FSTOQ: FP_CONV (Q, S, 4, 1, QR, SB); break;
  440. case FDTOQ: FP_CONV (Q, D, 4, 2, QR, DB); break;
  441. case FDTOS: FP_CONV (S, D, 1, 2, SR, DB); break;
  442. case FQTOS: FP_CONV (S, Q, 1, 4, SR, QB); break;
  443. case FQTOD: FP_CONV (D, Q, 2, 4, DR, QB); break;
  444. /* comparison */
  445. case FCMPS:
  446. case FCMPES:
  447. FP_CMP_S(IR, SB, SA, 3);
  448. if (IR == 3 &&
  449.     (((insn >> 5) & 0x1ff) == FCMPES ||
  450.      FP_ISSIGNAN_S(SA) ||
  451.      FP_ISSIGNAN_S(SB)))
  452. FP_SET_EXCEPTION (FP_EX_INVALID);
  453. break;
  454. case FCMPD:
  455. case FCMPED:
  456. FP_CMP_D(IR, DB, DA, 3);
  457. if (IR == 3 &&
  458.     (((insn >> 5) & 0x1ff) == FCMPED ||
  459.      FP_ISSIGNAN_D(DA) ||
  460.      FP_ISSIGNAN_D(DB)))
  461. FP_SET_EXCEPTION (FP_EX_INVALID);
  462. break;
  463. case FCMPQ:
  464. case FCMPEQ:
  465. FP_CMP_Q(IR, QB, QA, 3);
  466. if (IR == 3 &&
  467.     (((insn >> 5) & 0x1ff) == FCMPEQ ||
  468.      FP_ISSIGNAN_Q(QA) ||
  469.      FP_ISSIGNAN_Q(QB)))
  470. FP_SET_EXCEPTION (FP_EX_INVALID);
  471. }
  472. if (!FP_INHIBIT_RESULTS) {
  473. switch ((type >> 6) & 0x7) {
  474. case 0: fsr = *pfsr;
  475. if (IR == -1) IR = 2;
  476. /* fcc is always fcc0 */
  477. fsr &= ~0xc00; fsr |= (IR << 10); break;
  478. *pfsr = fsr;
  479. break;
  480. case 1: rd->s = IR; break;
  481. case 5: FP_PACK_SP (rd, SR); break;
  482. case 6: FP_PACK_DP (rd, DR); break;
  483. case 7: FP_PACK_QP (rd, QR); break;
  484. }
  485. }
  486. if(_fex == 0)
  487. return 1; /* success! */
  488. return record_exception(pfsr, _fex);
  489. }