17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*428cee1bSjfrank * Common Development and Distribution License (the "License"). 6*428cee1bSjfrank * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22bfb7f382Skalai * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate /* VIS floating point instruction simulator for Sparc FPU simulator. */ 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate #include <sys/types.h> 317c478bd9Sstevel@tonic-gate #include <sys/systm.h> 327c478bd9Sstevel@tonic-gate #include <sys/fpu/fpusystm.h> 337c478bd9Sstevel@tonic-gate #include <sys/fpu/fpu_simulator.h> 347c478bd9Sstevel@tonic-gate #include <sys/vis_simulator.h> 357c478bd9Sstevel@tonic-gate #include <sys/fpu/globals.h> 367c478bd9Sstevel@tonic-gate #include <sys/privregs.h> 377c478bd9Sstevel@tonic-gate #include <sys/sun4asi.h> 387c478bd9Sstevel@tonic-gate #include <sys/machasi.h> 397c478bd9Sstevel@tonic-gate #include <sys/debug.h> 407c478bd9Sstevel@tonic-gate #include <sys/cpu_module.h> 417c478bd9Sstevel@tonic-gate #include <sys/systm.h> 427c478bd9Sstevel@tonic-gate #include <sys/machsystm.h> 437c478bd9Sstevel@tonic-gate 447c478bd9Sstevel@tonic-gate #define FPU_REG_FIELD uint32_reg /* Coordinate with FPU_REGS_TYPE. */ 457c478bd9Sstevel@tonic-gate #define FPU_DREG_FIELD uint64_reg /* Coordinate with FPU_DREGS_TYPE. */ 467c478bd9Sstevel@tonic-gate #define FPU_FSR_FIELD uint64_reg /* Coordinate with V9_FPU_FSR_TYPE. */ 477c478bd9Sstevel@tonic-gate 48bfb7f382Skalai extern uint_t get_subcc_ccr(uint64_t, uint64_t); 49bfb7f382Skalai 507c478bd9Sstevel@tonic-gate static enum ftt_type vis_array(fp_simd_type *, vis_inst_type, struct regs *, 517c478bd9Sstevel@tonic-gate void *); 527c478bd9Sstevel@tonic-gate static enum ftt_type vis_alignaddr(fp_simd_type *, vis_inst_type, 537c478bd9Sstevel@tonic-gate struct regs *, void *, kfpu_t *); 547c478bd9Sstevel@tonic-gate static enum ftt_type vis_edge(fp_simd_type *, vis_inst_type, struct regs *, 557c478bd9Sstevel@tonic-gate void *); 567c478bd9Sstevel@tonic-gate static enum ftt_type vis_faligndata(fp_simd_type *, fp_inst_type, 577c478bd9Sstevel@tonic-gate kfpu_t *); 587c478bd9Sstevel@tonic-gate static enum ftt_type vis_bmask(fp_simd_type *, vis_inst_type, struct regs *, 597c478bd9Sstevel@tonic-gate void *, kfpu_t *); 607c478bd9Sstevel@tonic-gate static enum ftt_type vis_bshuffle(fp_simd_type *, fp_inst_type, 617c478bd9Sstevel@tonic-gate kfpu_t *); 627c478bd9Sstevel@tonic-gate static enum ftt_type vis_siam(fp_simd_type *, vis_inst_type, kfpu_t *); 637c478bd9Sstevel@tonic-gate static enum ftt_type vis_fcmp(fp_simd_type *, vis_inst_type, struct regs *, 647c478bd9Sstevel@tonic-gate void *); 657c478bd9Sstevel@tonic-gate static enum ftt_type vis_fmul(fp_simd_type *, vis_inst_type); 667c478bd9Sstevel@tonic-gate static enum ftt_type vis_fpixel(fp_simd_type *, vis_inst_type, kfpu_t *); 677c478bd9Sstevel@tonic-gate static enum ftt_type vis_fpaddsub(fp_simd_type *, vis_inst_type); 687c478bd9Sstevel@tonic-gate static enum ftt_type vis_pdist(fp_simd_type *, fp_inst_type); 697c478bd9Sstevel@tonic-gate static enum ftt_type vis_prtl_fst(fp_simd_type *, vis_inst_type, struct regs *, 707c478bd9Sstevel@tonic-gate void *, uint_t); 717c478bd9Sstevel@tonic-gate static enum ftt_type vis_short_fls(fp_simd_type *, vis_inst_type, 727c478bd9Sstevel@tonic-gate struct regs *, void *, uint_t); 737c478bd9Sstevel@tonic-gate static enum ftt_type vis_blk_fldst(fp_simd_type *, vis_inst_type, 747c478bd9Sstevel@tonic-gate struct regs *, void *, uint_t); 757c478bd9Sstevel@tonic-gate 767c478bd9Sstevel@tonic-gate /* 777c478bd9Sstevel@tonic-gate * Simulator for VIS instructions with op3 == 0x36 that get fp_disabled 787c478bd9Sstevel@tonic-gate * traps. 797c478bd9Sstevel@tonic-gate */ 807c478bd9Sstevel@tonic-gate enum ftt_type 817c478bd9Sstevel@tonic-gate vis_fpu_simulator( 827c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 837c478bd9Sstevel@tonic-gate fp_inst_type pinst, /* FPU instruction to simulate. */ 847c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 857c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 867c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 877c478bd9Sstevel@tonic-gate { 887c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 897c478bd9Sstevel@tonic-gate uint_t us1, us2, usr; 907c478bd9Sstevel@tonic-gate uint64_t lus1, lus2, lusr; 917c478bd9Sstevel@tonic-gate enum ftt_type ftt = ftt_none; 927c478bd9Sstevel@tonic-gate union { 937c478bd9Sstevel@tonic-gate vis_inst_type inst; 947c478bd9Sstevel@tonic-gate fp_inst_type pinst; 957c478bd9Sstevel@tonic-gate } f; 967c478bd9Sstevel@tonic-gate 977c478bd9Sstevel@tonic-gate ASSERT(USERMODE(pregs->r_tstate)); 987c478bd9Sstevel@tonic-gate nrs1 = pinst.rs1; 997c478bd9Sstevel@tonic-gate nrs2 = pinst.rs2; 1007c478bd9Sstevel@tonic-gate nrd = pinst.rd; 1017c478bd9Sstevel@tonic-gate f.pinst = pinst; 1027c478bd9Sstevel@tonic-gate if ((f.inst.opf & 1) == 0) { /* double precision */ 1037c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 1047c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 1057c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 1067c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 1077c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) 1087c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 1097c478bd9Sstevel@tonic-gate } 1107c478bd9Sstevel@tonic-gate 1117c478bd9Sstevel@tonic-gate switch (f.inst.opf) { 1127c478bd9Sstevel@tonic-gate /* these instr's do not use fp regs */ 1137c478bd9Sstevel@tonic-gate case edge8: 1147c478bd9Sstevel@tonic-gate case edge8l: 1157c478bd9Sstevel@tonic-gate case edge8n: 1167c478bd9Sstevel@tonic-gate case edge8ln: 1177c478bd9Sstevel@tonic-gate case edge16: 1187c478bd9Sstevel@tonic-gate case edge16l: 1197c478bd9Sstevel@tonic-gate case edge16n: 1207c478bd9Sstevel@tonic-gate case edge16ln: 1217c478bd9Sstevel@tonic-gate case edge32: 1227c478bd9Sstevel@tonic-gate case edge32l: 1237c478bd9Sstevel@tonic-gate case edge32n: 1247c478bd9Sstevel@tonic-gate case edge32ln: 1257c478bd9Sstevel@tonic-gate ftt = vis_edge(pfpsd, f.inst, pregs, prw); 1267c478bd9Sstevel@tonic-gate break; 1277c478bd9Sstevel@tonic-gate case array8: 1287c478bd9Sstevel@tonic-gate case array16: 1297c478bd9Sstevel@tonic-gate case array32: 1307c478bd9Sstevel@tonic-gate ftt = vis_array(pfpsd, f.inst, pregs, prw); 1317c478bd9Sstevel@tonic-gate break; 1327c478bd9Sstevel@tonic-gate case alignaddr: 1337c478bd9Sstevel@tonic-gate case alignaddrl: 1347c478bd9Sstevel@tonic-gate ftt = vis_alignaddr(pfpsd, f.inst, pregs, prw, fp); 1357c478bd9Sstevel@tonic-gate break; 1367c478bd9Sstevel@tonic-gate case bmask: 1377c478bd9Sstevel@tonic-gate ftt = vis_bmask(pfpsd, f.inst, pregs, prw, fp); 1387c478bd9Sstevel@tonic-gate break; 1397c478bd9Sstevel@tonic-gate case fcmple16: 1407c478bd9Sstevel@tonic-gate case fcmpne16: 1417c478bd9Sstevel@tonic-gate case fcmpgt16: 1427c478bd9Sstevel@tonic-gate case fcmpeq16: 1437c478bd9Sstevel@tonic-gate case fcmple32: 1447c478bd9Sstevel@tonic-gate case fcmpne32: 1457c478bd9Sstevel@tonic-gate case fcmpgt32: 1467c478bd9Sstevel@tonic-gate case fcmpeq32: 1477c478bd9Sstevel@tonic-gate ftt = vis_fcmp(pfpsd, f.inst, pregs, prw); 1487c478bd9Sstevel@tonic-gate break; 1497c478bd9Sstevel@tonic-gate case fmul8x16: 1507c478bd9Sstevel@tonic-gate case fmul8x16au: 1517c478bd9Sstevel@tonic-gate case fmul8x16al: 1527c478bd9Sstevel@tonic-gate case fmul8sux16: 1537c478bd9Sstevel@tonic-gate case fmul8ulx16: 1547c478bd9Sstevel@tonic-gate case fmuld8sux16: 1557c478bd9Sstevel@tonic-gate case fmuld8ulx16: 1567c478bd9Sstevel@tonic-gate ftt = vis_fmul(pfpsd, f.inst); 1577c478bd9Sstevel@tonic-gate break; 1587c478bd9Sstevel@tonic-gate case fpack16: 1597c478bd9Sstevel@tonic-gate case fpack32: 1607c478bd9Sstevel@tonic-gate case fpackfix: 1617c478bd9Sstevel@tonic-gate case fexpand: 1627c478bd9Sstevel@tonic-gate case fpmerge: 1637c478bd9Sstevel@tonic-gate ftt = vis_fpixel(pfpsd, f.inst, fp); 1647c478bd9Sstevel@tonic-gate break; 1657c478bd9Sstevel@tonic-gate case pdist: 1667c478bd9Sstevel@tonic-gate ftt = vis_pdist(pfpsd, pinst); 1677c478bd9Sstevel@tonic-gate break; 1687c478bd9Sstevel@tonic-gate case faligndata: 1697c478bd9Sstevel@tonic-gate ftt = vis_faligndata(pfpsd, pinst, fp); 1707c478bd9Sstevel@tonic-gate break; 1717c478bd9Sstevel@tonic-gate case bshuffle: 1727c478bd9Sstevel@tonic-gate ftt = vis_bshuffle(pfpsd, pinst, fp); 1737c478bd9Sstevel@tonic-gate break; 1747c478bd9Sstevel@tonic-gate case fpadd16: 1757c478bd9Sstevel@tonic-gate case fpadd16s: 1767c478bd9Sstevel@tonic-gate case fpadd32: 1777c478bd9Sstevel@tonic-gate case fpadd32s: 1787c478bd9Sstevel@tonic-gate case fpsub16: 1797c478bd9Sstevel@tonic-gate case fpsub16s: 1807c478bd9Sstevel@tonic-gate case fpsub32: 1817c478bd9Sstevel@tonic-gate case fpsub32s: 1827c478bd9Sstevel@tonic-gate ftt = vis_fpaddsub(pfpsd, f.inst); 1837c478bd9Sstevel@tonic-gate break; 1847c478bd9Sstevel@tonic-gate case fzero: 1857c478bd9Sstevel@tonic-gate lusr = 0; 1867c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 1877c478bd9Sstevel@tonic-gate break; 1887c478bd9Sstevel@tonic-gate case fzeros: 1897c478bd9Sstevel@tonic-gate usr = 0; 1907c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 1917c478bd9Sstevel@tonic-gate break; 1927c478bd9Sstevel@tonic-gate case fnor: 1937c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 1947c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 1957c478bd9Sstevel@tonic-gate lusr = ~(lus1 | lus2); 1967c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 1977c478bd9Sstevel@tonic-gate break; 1987c478bd9Sstevel@tonic-gate case fnors: 1997c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2007c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2017c478bd9Sstevel@tonic-gate usr = ~(us1 | us2); 2027c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2037c478bd9Sstevel@tonic-gate break; 2047c478bd9Sstevel@tonic-gate case fandnot2: 2057c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 2067c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 2077c478bd9Sstevel@tonic-gate lusr = (lus1 & ~lus2); 2087c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2097c478bd9Sstevel@tonic-gate break; 2107c478bd9Sstevel@tonic-gate case fandnot2s: 2117c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2127c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2137c478bd9Sstevel@tonic-gate usr = (us1 & ~us2); 2147c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2157c478bd9Sstevel@tonic-gate break; 2167c478bd9Sstevel@tonic-gate case fnot2: 2177c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 2187c478bd9Sstevel@tonic-gate lusr = ~lus2; 2197c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2207c478bd9Sstevel@tonic-gate break; 2217c478bd9Sstevel@tonic-gate case fnot2s: 2227c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2237c478bd9Sstevel@tonic-gate usr = ~us2; 2247c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2257c478bd9Sstevel@tonic-gate break; 2267c478bd9Sstevel@tonic-gate case fandnot1: 2277c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 2287c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 2297c478bd9Sstevel@tonic-gate lusr = (~lus1 & lus2); 2307c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2317c478bd9Sstevel@tonic-gate break; 2327c478bd9Sstevel@tonic-gate case fandnot1s: 2337c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2347c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2357c478bd9Sstevel@tonic-gate usr = (~us1 & us2); 2367c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2377c478bd9Sstevel@tonic-gate break; 2387c478bd9Sstevel@tonic-gate case fnot1: 2397c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 2407c478bd9Sstevel@tonic-gate lusr = ~lus1; 2417c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2427c478bd9Sstevel@tonic-gate break; 2437c478bd9Sstevel@tonic-gate case fnot1s: 2447c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2457c478bd9Sstevel@tonic-gate usr = ~us1; 2467c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2477c478bd9Sstevel@tonic-gate break; 2487c478bd9Sstevel@tonic-gate case fxor: 2497c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 2507c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 2517c478bd9Sstevel@tonic-gate lusr = (lus1 ^ lus2); 2527c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2537c478bd9Sstevel@tonic-gate break; 2547c478bd9Sstevel@tonic-gate case fxors: 2557c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2567c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2577c478bd9Sstevel@tonic-gate usr = (us1 ^ us2); 2587c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2597c478bd9Sstevel@tonic-gate break; 2607c478bd9Sstevel@tonic-gate case fnand: 2617c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 2627c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 2637c478bd9Sstevel@tonic-gate lusr = ~(lus1 & lus2); 2647c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2657c478bd9Sstevel@tonic-gate break; 2667c478bd9Sstevel@tonic-gate case fnands: 2677c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2687c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2697c478bd9Sstevel@tonic-gate usr = ~(us1 & us2); 2707c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2717c478bd9Sstevel@tonic-gate break; 2727c478bd9Sstevel@tonic-gate case fand: 2737c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 2747c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 2757c478bd9Sstevel@tonic-gate lusr = (lus1 & lus2); 2767c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2777c478bd9Sstevel@tonic-gate break; 2787c478bd9Sstevel@tonic-gate case fands: 2797c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2807c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2817c478bd9Sstevel@tonic-gate usr = (us1 & us2); 2827c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2837c478bd9Sstevel@tonic-gate break; 2847c478bd9Sstevel@tonic-gate case fxnor: 2857c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 2867c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 2877c478bd9Sstevel@tonic-gate lusr = ~(lus1 ^ lus2); 2887c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2897c478bd9Sstevel@tonic-gate break; 2907c478bd9Sstevel@tonic-gate case fxnors: 2917c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 2927c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 2937c478bd9Sstevel@tonic-gate usr = ~(us1 ^ us2); 2947c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 2957c478bd9Sstevel@tonic-gate break; 2967c478bd9Sstevel@tonic-gate case fsrc1: 2977c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lusr, nrs1); 2987c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 2997c478bd9Sstevel@tonic-gate break; 3007c478bd9Sstevel@tonic-gate case fsrc1s: 3017c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &usr, nrs1); 3027c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 3037c478bd9Sstevel@tonic-gate break; 3047c478bd9Sstevel@tonic-gate case fornot2: 3057c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 3067c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 3077c478bd9Sstevel@tonic-gate lusr = (lus1 | ~lus2); 3087c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 3097c478bd9Sstevel@tonic-gate break; 3107c478bd9Sstevel@tonic-gate case fornot2s: 3117c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 3127c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 3137c478bd9Sstevel@tonic-gate usr = (us1 | ~us2); 3147c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 3157c478bd9Sstevel@tonic-gate break; 3167c478bd9Sstevel@tonic-gate case fsrc2: 3177c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lusr, nrs2); 3187c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 3197c478bd9Sstevel@tonic-gate break; 3207c478bd9Sstevel@tonic-gate case fsrc2s: 3217c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &usr, nrs2); 3227c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 3237c478bd9Sstevel@tonic-gate break; 3247c478bd9Sstevel@tonic-gate case fornot1: 3257c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 3267c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 3277c478bd9Sstevel@tonic-gate lusr = (~lus1 | lus2); 3287c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 3297c478bd9Sstevel@tonic-gate break; 3307c478bd9Sstevel@tonic-gate case fornot1s: 3317c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 3327c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 3337c478bd9Sstevel@tonic-gate usr = (~us1 | us2); 3347c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 3357c478bd9Sstevel@tonic-gate break; 3367c478bd9Sstevel@tonic-gate case for_op: 3377c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus1, nrs1); 3387c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lus2, nrs2); 3397c478bd9Sstevel@tonic-gate lusr = (lus1 | lus2); 3407c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 3417c478bd9Sstevel@tonic-gate break; 3427c478bd9Sstevel@tonic-gate case fors_op: 3437c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us1, nrs1); 3447c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &us2, nrs2); 3457c478bd9Sstevel@tonic-gate usr = (us1 | us2); 3467c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 3477c478bd9Sstevel@tonic-gate break; 3487c478bd9Sstevel@tonic-gate case fone: 3497c478bd9Sstevel@tonic-gate lusr = 0xffffffffffffffff; 3507c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lusr, nrd); 3517c478bd9Sstevel@tonic-gate break; 3527c478bd9Sstevel@tonic-gate case fones: 3537c478bd9Sstevel@tonic-gate usr = 0xffffffffUL; 3547c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &usr, nrd); 3557c478bd9Sstevel@tonic-gate break; 3567c478bd9Sstevel@tonic-gate case siam: 3577c478bd9Sstevel@tonic-gate ftt = vis_siam(pfpsd, f.inst, fp); 3587c478bd9Sstevel@tonic-gate break; 3597c478bd9Sstevel@tonic-gate default: 3607c478bd9Sstevel@tonic-gate return (ftt_unimplemented); 3617c478bd9Sstevel@tonic-gate } 3627c478bd9Sstevel@tonic-gate 3637c478bd9Sstevel@tonic-gate pregs->r_pc = pregs->r_npc; /* Do not retry emulated instruction. */ 3647c478bd9Sstevel@tonic-gate pregs->r_npc += 4; 3657c478bd9Sstevel@tonic-gate return (ftt); 3667c478bd9Sstevel@tonic-gate } 3677c478bd9Sstevel@tonic-gate 3687c478bd9Sstevel@tonic-gate /* 3697c478bd9Sstevel@tonic-gate * Simulator for edge instructions 3707c478bd9Sstevel@tonic-gate */ 3717c478bd9Sstevel@tonic-gate static enum ftt_type 3727c478bd9Sstevel@tonic-gate vis_edge( 3737c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 3747c478bd9Sstevel@tonic-gate vis_inst_type inst, /* FPU instruction to simulate. */ 3757c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 3767c478bd9Sstevel@tonic-gate void *prw) /* Pointer to locals and ins. */ 3777c478bd9Sstevel@tonic-gate 3787c478bd9Sstevel@tonic-gate { 3797c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 3807c478bd9Sstevel@tonic-gate enum ftt_type ftt; 3817c478bd9Sstevel@tonic-gate uint64_t addrl, addrr, mask; 3827c478bd9Sstevel@tonic-gate uint64_t ah61l, ah61r; /* Higher 61 bits of address */ 3837c478bd9Sstevel@tonic-gate int al3l, al3r; /* Lower 3 bits of address */ 3847c478bd9Sstevel@tonic-gate int am32; /* Whether PSTATE.AM == 1 */ 385bfb7f382Skalai uint_t ccr; 3867c478bd9Sstevel@tonic-gate 3877c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 3887c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 3897c478bd9Sstevel@tonic-gate nrd = inst.rd; 3907c478bd9Sstevel@tonic-gate 3917c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &addrl); 3927c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 3937c478bd9Sstevel@tonic-gate return (ftt); 3947c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &addrr); 3957c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 3967c478bd9Sstevel@tonic-gate return (ftt); 3977c478bd9Sstevel@tonic-gate 3987c478bd9Sstevel@tonic-gate /* Get PSTATE.AM to determine 32-bit vs 64-bit addressing */ 3995892374fSdf157793 am32 = pregs->r_tstate & TSTATE_AM; 4007c478bd9Sstevel@tonic-gate if (am32 == 1) { 4015892374fSdf157793 ah61l = addrl & 0xffffffff8; 4025892374fSdf157793 ah61r = addrr & 0xffffffff8; 4037c478bd9Sstevel@tonic-gate } else { 4047c478bd9Sstevel@tonic-gate ah61l = addrl & ~0x7; 4057c478bd9Sstevel@tonic-gate ah61r = addrr & ~0x7; 4067c478bd9Sstevel@tonic-gate } 4077c478bd9Sstevel@tonic-gate 4087c478bd9Sstevel@tonic-gate 4097c478bd9Sstevel@tonic-gate switch (inst.opf) { 4107c478bd9Sstevel@tonic-gate case edge8: 4117c478bd9Sstevel@tonic-gate case edge8n: 4127c478bd9Sstevel@tonic-gate case edge8l: 4137c478bd9Sstevel@tonic-gate case edge8ln: 4147c478bd9Sstevel@tonic-gate al3l = addrl & 0x7; 4157c478bd9Sstevel@tonic-gate switch (inst.opf) { 4167c478bd9Sstevel@tonic-gate case edge8: 4177c478bd9Sstevel@tonic-gate case edge8n: 4187c478bd9Sstevel@tonic-gate if (inst.opf == edge8) { 4197c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge8); 4207c478bd9Sstevel@tonic-gate } else { 4217c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge8n); 4227c478bd9Sstevel@tonic-gate } 4235892374fSdf157793 mask = 0xff >> al3l; 4247c478bd9Sstevel@tonic-gate if (ah61l == ah61r) { 4257c478bd9Sstevel@tonic-gate al3r = addrr & 0x7; 4265892374fSdf157793 mask &= (0xff << (0x7 - al3r)) & 0xff; 4277c478bd9Sstevel@tonic-gate } 4287c478bd9Sstevel@tonic-gate break; 4297c478bd9Sstevel@tonic-gate case edge8l: 4307c478bd9Sstevel@tonic-gate case edge8ln: 4317c478bd9Sstevel@tonic-gate if (inst.opf == edge8l) { 4327c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge8l); 4337c478bd9Sstevel@tonic-gate } else { 4347c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge8ln); 4357c478bd9Sstevel@tonic-gate } 4365892374fSdf157793 mask = (0xff << al3l) & 0xff; 4377c478bd9Sstevel@tonic-gate if (ah61l == ah61r) { 4387c478bd9Sstevel@tonic-gate al3r = addrr & 0x7; 4395892374fSdf157793 mask &= 0xff >> (0x7 - al3r); 4407c478bd9Sstevel@tonic-gate } 4417c478bd9Sstevel@tonic-gate break; 4427c478bd9Sstevel@tonic-gate } 4437c478bd9Sstevel@tonic-gate break; 4447c478bd9Sstevel@tonic-gate case edge16: 4457c478bd9Sstevel@tonic-gate case edge16l: 4467c478bd9Sstevel@tonic-gate case edge16n: 4477c478bd9Sstevel@tonic-gate case edge16ln: 4487c478bd9Sstevel@tonic-gate al3l = addrl & 0x6; 4495892374fSdf157793 al3l >>= 0x1; 4507c478bd9Sstevel@tonic-gate switch (inst.opf) { 4517c478bd9Sstevel@tonic-gate case edge16: 4527c478bd9Sstevel@tonic-gate case edge16n: 4537c478bd9Sstevel@tonic-gate if (inst.opf == edge16) { 4547c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge16); 4557c478bd9Sstevel@tonic-gate 4567c478bd9Sstevel@tonic-gate } else { 4577c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge16n); 4587c478bd9Sstevel@tonic-gate } 4595892374fSdf157793 mask = 0xf >> al3l; 4607c478bd9Sstevel@tonic-gate if (ah61l == ah61r) { 4617c478bd9Sstevel@tonic-gate al3r = addrr & 0x6; 4625892374fSdf157793 al3r >>= 0x1; 4635892374fSdf157793 mask &= (0xf << (0x3 - al3r)) & 0xf; 4647c478bd9Sstevel@tonic-gate } 4657c478bd9Sstevel@tonic-gate break; 4667c478bd9Sstevel@tonic-gate case edge16l: 4677c478bd9Sstevel@tonic-gate case edge16ln: 4687c478bd9Sstevel@tonic-gate if (inst.opf == edge16l) { 4697c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge16l); 4707c478bd9Sstevel@tonic-gate 4717c478bd9Sstevel@tonic-gate } else { 4727c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge16ln); 4737c478bd9Sstevel@tonic-gate } 4745892374fSdf157793 4755892374fSdf157793 mask = (0xf << al3l) & 0xf; 4767c478bd9Sstevel@tonic-gate if (ah61l == ah61r) { 4777c478bd9Sstevel@tonic-gate al3r = addrr & 0x6; 4785892374fSdf157793 al3r >>= 0x1; 4795892374fSdf157793 mask &= 0xf >> (0x3 - al3r); 4807c478bd9Sstevel@tonic-gate } 4817c478bd9Sstevel@tonic-gate break; 4827c478bd9Sstevel@tonic-gate } 4837c478bd9Sstevel@tonic-gate break; 4847c478bd9Sstevel@tonic-gate case edge32: 4857c478bd9Sstevel@tonic-gate case edge32l: 4867c478bd9Sstevel@tonic-gate case edge32n: 4877c478bd9Sstevel@tonic-gate case edge32ln: 4887c478bd9Sstevel@tonic-gate al3l = addrl & 0x4; 4895892374fSdf157793 al3l >>= 0x2; 4905892374fSdf157793 4917c478bd9Sstevel@tonic-gate switch (inst.opf) { 4927c478bd9Sstevel@tonic-gate case edge32: 4937c478bd9Sstevel@tonic-gate case edge32n: 4947c478bd9Sstevel@tonic-gate if (inst.opf == edge32) { 4957c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge32); 4967c478bd9Sstevel@tonic-gate 4977c478bd9Sstevel@tonic-gate } else { 4987c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge32n); 4997c478bd9Sstevel@tonic-gate } 5005892374fSdf157793 mask = 0x3 >> al3l; 5017c478bd9Sstevel@tonic-gate if (ah61l == ah61r) { 5027c478bd9Sstevel@tonic-gate al3r = addrr & 0x4; 5035892374fSdf157793 al3r >>= 0x2; 5045892374fSdf157793 mask &= (0x3 << (0x1 - al3r)) & 0x3; 5057c478bd9Sstevel@tonic-gate } 5067c478bd9Sstevel@tonic-gate break; 5077c478bd9Sstevel@tonic-gate case edge32l: 5087c478bd9Sstevel@tonic-gate case edge32ln: 5097c478bd9Sstevel@tonic-gate if (inst.opf == edge32l) { 5107c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge32l); 5117c478bd9Sstevel@tonic-gate 5127c478bd9Sstevel@tonic-gate } else { 5137c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_edge32ln); 5147c478bd9Sstevel@tonic-gate } 5155892374fSdf157793 mask = (0x3 << al3l) & 0x3; 5167c478bd9Sstevel@tonic-gate if (ah61l == ah61r) { 5177c478bd9Sstevel@tonic-gate al3r = addrr & 0x4; 5185892374fSdf157793 al3r >>= 0x2; 5195892374fSdf157793 mask &= 0x3 >> (0x1 - al3r); 5207c478bd9Sstevel@tonic-gate } 5217c478bd9Sstevel@tonic-gate break; 5227c478bd9Sstevel@tonic-gate } 5237c478bd9Sstevel@tonic-gate break; 5247c478bd9Sstevel@tonic-gate } 5255892374fSdf157793 5267c478bd9Sstevel@tonic-gate ftt = write_iureg(pfpsd, nrd, pregs, prw, &mask); 5277c478bd9Sstevel@tonic-gate 5287c478bd9Sstevel@tonic-gate switch (inst.opf) { 5297c478bd9Sstevel@tonic-gate case edge8: 5307c478bd9Sstevel@tonic-gate case edge8l: 5317c478bd9Sstevel@tonic-gate case edge16: 5327c478bd9Sstevel@tonic-gate case edge16l: 5337c478bd9Sstevel@tonic-gate case edge32: 5347c478bd9Sstevel@tonic-gate case edge32l: 5357c478bd9Sstevel@tonic-gate 536bfb7f382Skalai /* Update flags per SUBcc outcome */ 537bfb7f382Skalai pregs->r_tstate &= ~((uint64_t)TSTATE_CCR_MASK 538bfb7f382Skalai << TSTATE_CCR_SHIFT); 539bfb7f382Skalai ccr = get_subcc_ccr(addrl, addrr); /* get subcc cond. codes */ 540bfb7f382Skalai pregs->r_tstate |= ((uint64_t)ccr << TSTATE_CCR_SHIFT); 541bfb7f382Skalai 5427c478bd9Sstevel@tonic-gate break; 5437c478bd9Sstevel@tonic-gate } 5447c478bd9Sstevel@tonic-gate return (ftt); 5457c478bd9Sstevel@tonic-gate } 546bfb7f382Skalai 5477c478bd9Sstevel@tonic-gate /* 5487c478bd9Sstevel@tonic-gate * Simulator for three dimentional array addressing instructions. 5497c478bd9Sstevel@tonic-gate */ 5507c478bd9Sstevel@tonic-gate static enum ftt_type 5517c478bd9Sstevel@tonic-gate vis_array( 5527c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 5537c478bd9Sstevel@tonic-gate vis_inst_type inst, /* FPU instruction to simulate. */ 5547c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 5557c478bd9Sstevel@tonic-gate void *prw) /* Pointer to locals and ins. */ 5567c478bd9Sstevel@tonic-gate 5577c478bd9Sstevel@tonic-gate { 5587c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 5597c478bd9Sstevel@tonic-gate enum ftt_type ftt; 5607c478bd9Sstevel@tonic-gate uint64_t laddr, bsize, baddr; 5617c478bd9Sstevel@tonic-gate uint64_t nbit; 5627c478bd9Sstevel@tonic-gate int oy, oz; 5637c478bd9Sstevel@tonic-gate 5647c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 5657c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 5667c478bd9Sstevel@tonic-gate nrd = inst.rd; 5677c478bd9Sstevel@tonic-gate 5687c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &laddr); 5697c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 5707c478bd9Sstevel@tonic-gate return (ftt); 5717c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &bsize); 5727c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 5737c478bd9Sstevel@tonic-gate return (ftt); 5747c478bd9Sstevel@tonic-gate 5757c478bd9Sstevel@tonic-gate if (bsize > 5) { 5767c478bd9Sstevel@tonic-gate bsize = 5; 5777c478bd9Sstevel@tonic-gate } 5787c478bd9Sstevel@tonic-gate nbit = (1 << bsize) - 1; /* Number of bits for XY<6+n-1:6> */ 5797c478bd9Sstevel@tonic-gate oy = 17 + bsize; /* Offset of Y<6+n-1:6> */ 5807c478bd9Sstevel@tonic-gate oz = 17 + 2 * bsize; /* Offset of Z<8:5> */ 5817c478bd9Sstevel@tonic-gate 5827c478bd9Sstevel@tonic-gate baddr = 0; 5837c478bd9Sstevel@tonic-gate baddr |= (laddr >> (11 - 0)) & (0x03 << 0); /* X_integer<1:0> */ 5847c478bd9Sstevel@tonic-gate baddr |= (laddr >> (33 - 2)) & (0x03 << 2); /* Y_integer<1:0> */ 5857c478bd9Sstevel@tonic-gate baddr |= (laddr >> (55 - 4)) & (0x01 << 4); /* Z_integer<0> */ 5867c478bd9Sstevel@tonic-gate baddr |= (laddr >> (13 - 5)) & (0x0f << 5); /* X_integer<5:2> */ 5877c478bd9Sstevel@tonic-gate baddr |= (laddr >> (35 - 9)) & (0x0f << 9); /* Y_integer<5:2> */ 5887c478bd9Sstevel@tonic-gate baddr |= (laddr >> (56 - 13)) & (0x0f << 13); /* Z_integer<4:1> */ 5897c478bd9Sstevel@tonic-gate baddr |= (laddr >> (17 - 17)) & (nbit << 17); /* X_integer<6+n-1:6> */ 5907c478bd9Sstevel@tonic-gate baddr |= (laddr >> (39 - oy)) & (nbit << oy); /* Y_integer<6+n-1:6> */ 5917c478bd9Sstevel@tonic-gate baddr |= (laddr >> (60 - oz)) & (0x0f << oz); /* Z_integer<8:5> */ 5927c478bd9Sstevel@tonic-gate 5937c478bd9Sstevel@tonic-gate switch (inst.opf) { 5947c478bd9Sstevel@tonic-gate case array8: 5957c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_array8); 5967c478bd9Sstevel@tonic-gate break; 5977c478bd9Sstevel@tonic-gate case array16: 5987c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_array16); 5997c478bd9Sstevel@tonic-gate baddr <<= 1; 6007c478bd9Sstevel@tonic-gate break; 6017c478bd9Sstevel@tonic-gate case array32: 6027c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_array32); 6037c478bd9Sstevel@tonic-gate baddr <<= 2; 6047c478bd9Sstevel@tonic-gate break; 6057c478bd9Sstevel@tonic-gate } 6067c478bd9Sstevel@tonic-gate 6077c478bd9Sstevel@tonic-gate ftt = write_iureg(pfpsd, nrd, pregs, prw, &baddr); 6087c478bd9Sstevel@tonic-gate 6097c478bd9Sstevel@tonic-gate return (ftt); 6107c478bd9Sstevel@tonic-gate } 6117c478bd9Sstevel@tonic-gate 6127c478bd9Sstevel@tonic-gate /* 6137c478bd9Sstevel@tonic-gate * Simulator for alignaddr and alignaddrl instructions. 6147c478bd9Sstevel@tonic-gate */ 6157c478bd9Sstevel@tonic-gate static enum ftt_type 6167c478bd9Sstevel@tonic-gate vis_alignaddr( 6177c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 6187c478bd9Sstevel@tonic-gate vis_inst_type inst, /* FPU instruction to simulate. */ 6197c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 6207c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 6217c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 6227c478bd9Sstevel@tonic-gate { 6237c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 6247c478bd9Sstevel@tonic-gate enum ftt_type ftt; 6257c478bd9Sstevel@tonic-gate uint64_t ea, tea, g, r; 6267c478bd9Sstevel@tonic-gate short s; 6277c478bd9Sstevel@tonic-gate 6287c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 6297c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 6307c478bd9Sstevel@tonic-gate nrd = inst.rd; 6317c478bd9Sstevel@tonic-gate 6327c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &ea); 6337c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 6347c478bd9Sstevel@tonic-gate return (ftt); 6357c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &tea); 6367c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 6377c478bd9Sstevel@tonic-gate return (ftt); 6387c478bd9Sstevel@tonic-gate ea += tea; 6397c478bd9Sstevel@tonic-gate r = ea & ~0x7; /* zero least 3 significant bits */ 6407c478bd9Sstevel@tonic-gate ftt = write_iureg(pfpsd, nrd, pregs, prw, &r); 6417c478bd9Sstevel@tonic-gate 6427c478bd9Sstevel@tonic-gate 6435892374fSdf157793 g = pfpsd->fp_current_read_gsr(fp); 6447c478bd9Sstevel@tonic-gate g &= ~(GSR_ALIGN_MASK); /* zero the align offset */ 6457c478bd9Sstevel@tonic-gate r = ea & 0x7; 6467c478bd9Sstevel@tonic-gate if (inst.opf == alignaddrl) { 6477c478bd9Sstevel@tonic-gate s = (short)(~r); /* 2's complement for alignaddrl */ 6487c478bd9Sstevel@tonic-gate if (s < 0) 6497c478bd9Sstevel@tonic-gate r = (uint64_t)((s + 1) & 0x7); 6507c478bd9Sstevel@tonic-gate else 6517c478bd9Sstevel@tonic-gate r = (uint64_t)(s & 0x7); 6527c478bd9Sstevel@tonic-gate } 6537c478bd9Sstevel@tonic-gate g |= (r << GSR_ALIGN_SHIFT) & GSR_ALIGN_MASK; 6545892374fSdf157793 pfpsd->fp_current_write_gsr(g, fp); 6557c478bd9Sstevel@tonic-gate 6567c478bd9Sstevel@tonic-gate return (ftt); 6577c478bd9Sstevel@tonic-gate } 6587c478bd9Sstevel@tonic-gate 6597c478bd9Sstevel@tonic-gate /* 6607c478bd9Sstevel@tonic-gate * Simulator for bmask instruction. 6617c478bd9Sstevel@tonic-gate */ 6627c478bd9Sstevel@tonic-gate static enum ftt_type 6637c478bd9Sstevel@tonic-gate vis_bmask( 6647c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 6657c478bd9Sstevel@tonic-gate vis_inst_type inst, /* FPU instruction to simulate. */ 6667c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 6677c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 6687c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 6697c478bd9Sstevel@tonic-gate { 6707c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 6717c478bd9Sstevel@tonic-gate enum ftt_type ftt; 6727c478bd9Sstevel@tonic-gate uint64_t ea, tea, g; 6737c478bd9Sstevel@tonic-gate 6747c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_bmask); 6757c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 6767c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 6777c478bd9Sstevel@tonic-gate nrd = inst.rd; 6787c478bd9Sstevel@tonic-gate 6797c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &ea); 6807c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 6817c478bd9Sstevel@tonic-gate return (ftt); 6827c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &tea); 6837c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 6847c478bd9Sstevel@tonic-gate return (ftt); 6857c478bd9Sstevel@tonic-gate ea += tea; 6867c478bd9Sstevel@tonic-gate ftt = write_iureg(pfpsd, nrd, pregs, prw, &ea); 6877c478bd9Sstevel@tonic-gate 6885892374fSdf157793 g = pfpsd->fp_current_read_gsr(fp); 6897c478bd9Sstevel@tonic-gate g &= ~(GSR_MASK_MASK); /* zero the mask offset */ 6907c478bd9Sstevel@tonic-gate 6917c478bd9Sstevel@tonic-gate /* Put the least significant 32 bits of ea in GSR.mask */ 6927c478bd9Sstevel@tonic-gate g |= (ea << GSR_MASK_SHIFT) & GSR_MASK_MASK; 6935892374fSdf157793 pfpsd->fp_current_write_gsr(g, fp); 6947c478bd9Sstevel@tonic-gate return (ftt); 6957c478bd9Sstevel@tonic-gate } 6967c478bd9Sstevel@tonic-gate 6977c478bd9Sstevel@tonic-gate /* 6987c478bd9Sstevel@tonic-gate * Simulator for fp[add|sub]* instruction. 6997c478bd9Sstevel@tonic-gate */ 7007c478bd9Sstevel@tonic-gate static enum ftt_type 7017c478bd9Sstevel@tonic-gate vis_fpaddsub( 7027c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 7037c478bd9Sstevel@tonic-gate vis_inst_type inst) /* FPU instruction to simulate. */ 7047c478bd9Sstevel@tonic-gate { 7057c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 7067c478bd9Sstevel@tonic-gate union { 7077c478bd9Sstevel@tonic-gate uint64_t ll; 7087c478bd9Sstevel@tonic-gate uint32_t i[2]; 7097c478bd9Sstevel@tonic-gate uint16_t s[4]; 7107c478bd9Sstevel@tonic-gate } lrs1, lrs2, lrd; 7117c478bd9Sstevel@tonic-gate union { 7127c478bd9Sstevel@tonic-gate uint32_t i; 7137c478bd9Sstevel@tonic-gate uint16_t s[2]; 7147c478bd9Sstevel@tonic-gate } krs1, krs2, krd; 7157c478bd9Sstevel@tonic-gate int i; 7167c478bd9Sstevel@tonic-gate 7177c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 7187c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 7197c478bd9Sstevel@tonic-gate nrd = inst.rd; 7207c478bd9Sstevel@tonic-gate if ((inst.opf & 1) == 0) { /* double precision */ 7217c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 7227c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 7237c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 7247c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 7257c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) 7267c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 7277c478bd9Sstevel@tonic-gate } 7287c478bd9Sstevel@tonic-gate switch (inst.opf) { 7297c478bd9Sstevel@tonic-gate case fpadd16: 7307c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 7317c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 7327c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 7337c478bd9Sstevel@tonic-gate lrd.s[i] = lrs1.s[i] + lrs2.s[i]; 7347c478bd9Sstevel@tonic-gate } 7357c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 7367c478bd9Sstevel@tonic-gate break; 7377c478bd9Sstevel@tonic-gate case fpadd16s: 7387c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 7397c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 7407c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 7417c478bd9Sstevel@tonic-gate krd.s[i] = krs1.s[i] + krs2.s[i]; 7427c478bd9Sstevel@tonic-gate } 7437c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &krd.i, nrd); 7447c478bd9Sstevel@tonic-gate break; 7457c478bd9Sstevel@tonic-gate case fpadd32: 7467c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 7477c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 7487c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 7497c478bd9Sstevel@tonic-gate lrd.i[i] = lrs1.i[i] + lrs2.i[i]; 7507c478bd9Sstevel@tonic-gate } 7517c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 7527c478bd9Sstevel@tonic-gate break; 7537c478bd9Sstevel@tonic-gate case fpadd32s: 7547c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 7557c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 7567c478bd9Sstevel@tonic-gate krd.i = krs1.i + krs2.i; 7577c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &krd.i, nrd); 7587c478bd9Sstevel@tonic-gate break; 7597c478bd9Sstevel@tonic-gate case fpsub16: 7607c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 7617c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 7627c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 7637c478bd9Sstevel@tonic-gate lrd.s[i] = lrs1.s[i] - lrs2.s[i]; 7647c478bd9Sstevel@tonic-gate } 7657c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 7667c478bd9Sstevel@tonic-gate break; 7677c478bd9Sstevel@tonic-gate case fpsub16s: 7687c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 7697c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 7707c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 7717c478bd9Sstevel@tonic-gate krd.s[i] = krs1.s[i] - krs2.s[i]; 7727c478bd9Sstevel@tonic-gate } 7737c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &krd.i, nrd); 7747c478bd9Sstevel@tonic-gate break; 7757c478bd9Sstevel@tonic-gate case fpsub32: 7767c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 7777c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 7787c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 7797c478bd9Sstevel@tonic-gate lrd.i[i] = lrs1.i[i] - lrs2.i[i]; 7807c478bd9Sstevel@tonic-gate } 7817c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 7827c478bd9Sstevel@tonic-gate break; 7837c478bd9Sstevel@tonic-gate case fpsub32s: 7847c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 7857c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 7867c478bd9Sstevel@tonic-gate krd.i = krs1.i - krs2.i; 7877c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &krd.i, nrd); 7887c478bd9Sstevel@tonic-gate break; 7897c478bd9Sstevel@tonic-gate } 7907c478bd9Sstevel@tonic-gate return (ftt_none); 7917c478bd9Sstevel@tonic-gate } 7927c478bd9Sstevel@tonic-gate 7937c478bd9Sstevel@tonic-gate /* 7947c478bd9Sstevel@tonic-gate * Simulator for fcmp* instruction. 7957c478bd9Sstevel@tonic-gate */ 7967c478bd9Sstevel@tonic-gate static enum ftt_type 7977c478bd9Sstevel@tonic-gate vis_fcmp( 7987c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 7997c478bd9Sstevel@tonic-gate vis_inst_type inst, /* FPU instruction to simulate. */ 8007c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 8017c478bd9Sstevel@tonic-gate void *prw) /* Pointer to locals and ins. */ 8027c478bd9Sstevel@tonic-gate { 8037c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 8047c478bd9Sstevel@tonic-gate union { 8057c478bd9Sstevel@tonic-gate uint64_t ll; 8067c478bd9Sstevel@tonic-gate uint32_t i[2]; 8077c478bd9Sstevel@tonic-gate uint16_t s[4]; 8087c478bd9Sstevel@tonic-gate } krs1, krs2, krd; 8097c478bd9Sstevel@tonic-gate enum ftt_type ftt; 8107c478bd9Sstevel@tonic-gate short sr1, sr2; 8117c478bd9Sstevel@tonic-gate int i, ir1, ir2; 8127c478bd9Sstevel@tonic-gate 8137c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 8147c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 8157c478bd9Sstevel@tonic-gate nrd = inst.rd; 8167c478bd9Sstevel@tonic-gate krd.ll = 0; 8177c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 8187c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 8197c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 8207c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 8217c478bd9Sstevel@tonic-gate 8227c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &krs1.ll, nrs1); 8237c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &krs2.ll, nrs2); 8247c478bd9Sstevel@tonic-gate switch (inst.opf) { 8257c478bd9Sstevel@tonic-gate case fcmple16: 8267c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmple16); 8277c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 8287c478bd9Sstevel@tonic-gate sr1 = (short)krs1.s[i]; 8297c478bd9Sstevel@tonic-gate sr2 = (short)krs2.s[i]; 8307c478bd9Sstevel@tonic-gate if (sr1 <= sr2) 8317c478bd9Sstevel@tonic-gate krd.ll += (0x8 >> i); 8327c478bd9Sstevel@tonic-gate } 8337c478bd9Sstevel@tonic-gate break; 8347c478bd9Sstevel@tonic-gate case fcmpne16: 8357c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmpne16); 8367c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 8377c478bd9Sstevel@tonic-gate sr1 = (short)krs1.s[i]; 8387c478bd9Sstevel@tonic-gate sr2 = (short)krs2.s[i]; 8397c478bd9Sstevel@tonic-gate if (sr1 != sr2) 8407c478bd9Sstevel@tonic-gate krd.ll += (0x8 >> i); 8417c478bd9Sstevel@tonic-gate } 8427c478bd9Sstevel@tonic-gate break; 8437c478bd9Sstevel@tonic-gate case fcmpgt16: 8447c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmpgt16); 8457c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 8467c478bd9Sstevel@tonic-gate sr1 = (short)krs1.s[i]; 8477c478bd9Sstevel@tonic-gate sr2 = (short)krs2.s[i]; 8487c478bd9Sstevel@tonic-gate if (sr1 > sr2) 8497c478bd9Sstevel@tonic-gate krd.ll += (0x8 >> i); 8507c478bd9Sstevel@tonic-gate } 8517c478bd9Sstevel@tonic-gate break; 8527c478bd9Sstevel@tonic-gate case fcmpeq16: 8537c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmpeq16); 8547c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 8557c478bd9Sstevel@tonic-gate sr1 = (short)krs1.s[i]; 8567c478bd9Sstevel@tonic-gate sr2 = (short)krs2.s[i]; 8577c478bd9Sstevel@tonic-gate if (sr1 == sr2) 8587c478bd9Sstevel@tonic-gate krd.ll += (0x8 >> i); 8597c478bd9Sstevel@tonic-gate } 8607c478bd9Sstevel@tonic-gate break; 8617c478bd9Sstevel@tonic-gate case fcmple32: 8627c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmple32); 8637c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 8647c478bd9Sstevel@tonic-gate ir1 = (int)krs1.i[i]; 8657c478bd9Sstevel@tonic-gate ir2 = (int)krs2.i[i]; 8667c478bd9Sstevel@tonic-gate if (ir1 <= ir2) 8677c478bd9Sstevel@tonic-gate krd.ll += (0x2 >> i); 8687c478bd9Sstevel@tonic-gate } 8697c478bd9Sstevel@tonic-gate break; 8707c478bd9Sstevel@tonic-gate case fcmpne32: 8717c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmpne32); 8727c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 8737c478bd9Sstevel@tonic-gate ir1 = (int)krs1.i[i]; 8747c478bd9Sstevel@tonic-gate ir2 = (int)krs2.i[i]; 8757c478bd9Sstevel@tonic-gate if (ir1 != ir2) 8767c478bd9Sstevel@tonic-gate krd.ll += (0x2 >> i); 8777c478bd9Sstevel@tonic-gate } 8787c478bd9Sstevel@tonic-gate break; 8797c478bd9Sstevel@tonic-gate case fcmpgt32: 8807c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmpgt32); 8817c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 8827c478bd9Sstevel@tonic-gate ir1 = (int)krs1.i[i]; 8837c478bd9Sstevel@tonic-gate ir2 = (int)krs2.i[i]; 8847c478bd9Sstevel@tonic-gate if (ir1 > ir2) 8857c478bd9Sstevel@tonic-gate krd.ll += (0x2 >> i); 8867c478bd9Sstevel@tonic-gate } 8877c478bd9Sstevel@tonic-gate break; 8887c478bd9Sstevel@tonic-gate case fcmpeq32: 8897c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fcmpeq32); 8907c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 8917c478bd9Sstevel@tonic-gate ir1 = (int)krs1.i[i]; 8927c478bd9Sstevel@tonic-gate ir2 = (int)krs2.i[i]; 8937c478bd9Sstevel@tonic-gate if (ir1 == ir2) 8947c478bd9Sstevel@tonic-gate krd.ll += (0x2 >> i); 8957c478bd9Sstevel@tonic-gate } 8967c478bd9Sstevel@tonic-gate break; 8977c478bd9Sstevel@tonic-gate } 8987c478bd9Sstevel@tonic-gate ftt = write_iureg(pfpsd, nrd, pregs, prw, &krd.ll); 8997c478bd9Sstevel@tonic-gate return (ftt); 9007c478bd9Sstevel@tonic-gate } 9017c478bd9Sstevel@tonic-gate 9027c478bd9Sstevel@tonic-gate /* 9037c478bd9Sstevel@tonic-gate * Simulator for fmul* instruction. 9047c478bd9Sstevel@tonic-gate */ 9057c478bd9Sstevel@tonic-gate static enum ftt_type 9067c478bd9Sstevel@tonic-gate vis_fmul( 9077c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 9087c478bd9Sstevel@tonic-gate vis_inst_type inst) /* FPU instruction to simulate. */ 9097c478bd9Sstevel@tonic-gate { 9107c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 9117c478bd9Sstevel@tonic-gate union { 9127c478bd9Sstevel@tonic-gate uint64_t ll; 9137c478bd9Sstevel@tonic-gate uint32_t i[2]; 9147c478bd9Sstevel@tonic-gate uint16_t s[4]; 9157c478bd9Sstevel@tonic-gate uint8_t c[8]; 9167c478bd9Sstevel@tonic-gate } lrs1, lrs2, lrd; 9177c478bd9Sstevel@tonic-gate union { 9187c478bd9Sstevel@tonic-gate uint32_t i; 9197c478bd9Sstevel@tonic-gate uint16_t s[2]; 9207c478bd9Sstevel@tonic-gate uint8_t c[4]; 9217c478bd9Sstevel@tonic-gate } krs1, krs2, kres; 9227c478bd9Sstevel@tonic-gate short s1, s2, sres; 9237c478bd9Sstevel@tonic-gate ushort_t us1; 9247c478bd9Sstevel@tonic-gate char c1; 9257c478bd9Sstevel@tonic-gate int i; 9267c478bd9Sstevel@tonic-gate 9277c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 9287c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 9297c478bd9Sstevel@tonic-gate nrd = inst.rd; 9307c478bd9Sstevel@tonic-gate if ((inst.opf & 1) == 0) { /* double precision */ 9317c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) /* fix register encoding */ 9327c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 9337c478bd9Sstevel@tonic-gate } 9347c478bd9Sstevel@tonic-gate 9357c478bd9Sstevel@tonic-gate switch (inst.opf) { 9367c478bd9Sstevel@tonic-gate case fmul8x16: 9377c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fmul8x16); 9387c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 9397c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 9407c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 9417c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 9427c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 9437c478bd9Sstevel@tonic-gate us1 = (ushort_t)krs1.c[i]; 9447c478bd9Sstevel@tonic-gate s2 = (short)lrs2.s[i]; 9457c478bd9Sstevel@tonic-gate kres.i = us1 * s2; 9467c478bd9Sstevel@tonic-gate sres = (short)((kres.c[1] << 8) | kres.c[2]); 9477c478bd9Sstevel@tonic-gate if (kres.c[3] >= 0x80) 9487c478bd9Sstevel@tonic-gate sres++; 9497c478bd9Sstevel@tonic-gate lrd.s[i] = sres; 9507c478bd9Sstevel@tonic-gate } 9517c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 9527c478bd9Sstevel@tonic-gate break; 9537c478bd9Sstevel@tonic-gate case fmul8x16au: 9547c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fmul8x16au); 9557c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 9567c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 9577c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 9587c478bd9Sstevel@tonic-gate us1 = (ushort_t)krs1.c[i]; 9597c478bd9Sstevel@tonic-gate s2 = (short)krs2.s[0]; 9607c478bd9Sstevel@tonic-gate kres.i = us1 * s2; 9617c478bd9Sstevel@tonic-gate sres = (short)((kres.c[1] << 8) | kres.c[2]); 9627c478bd9Sstevel@tonic-gate if (kres.c[3] >= 0x80) 9637c478bd9Sstevel@tonic-gate sres++; 9647c478bd9Sstevel@tonic-gate lrd.s[i] = sres; 9657c478bd9Sstevel@tonic-gate } 9667c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 9677c478bd9Sstevel@tonic-gate break; 9687c478bd9Sstevel@tonic-gate case fmul8x16al: 9697c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fmul8x16al); 9707c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 9717c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 9727c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 9737c478bd9Sstevel@tonic-gate us1 = (ushort_t)krs1.c[i]; 9747c478bd9Sstevel@tonic-gate s2 = (short)krs2.s[1]; 9757c478bd9Sstevel@tonic-gate kres.i = us1 * s2; 9767c478bd9Sstevel@tonic-gate sres = (short)((kres.c[1] << 8) | kres.c[2]); 9777c478bd9Sstevel@tonic-gate if (kres.c[3] >= 0x80) 9787c478bd9Sstevel@tonic-gate sres++; 9797c478bd9Sstevel@tonic-gate lrd.s[i] = sres; 9807c478bd9Sstevel@tonic-gate } 9817c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 9827c478bd9Sstevel@tonic-gate break; 9837c478bd9Sstevel@tonic-gate case fmul8sux16: 9847c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fmul8sux16); 9857c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 9867c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 9877c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 9887c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 9897c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 9907c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 9917c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 9927c478bd9Sstevel@tonic-gate c1 = lrs1.c[(i*2)]; 9937c478bd9Sstevel@tonic-gate s1 = (short)c1; /* keeps the sign alive */ 9947c478bd9Sstevel@tonic-gate s2 = (short)lrs2.s[i]; 9957c478bd9Sstevel@tonic-gate kres.i = s1 * s2; 9967c478bd9Sstevel@tonic-gate sres = (short)((kres.c[1] << 8) | kres.c[2]); 9977c478bd9Sstevel@tonic-gate if (kres.c[3] >= 0x80) 9987c478bd9Sstevel@tonic-gate sres++; 9997c478bd9Sstevel@tonic-gate if (sres < 0) 10007c478bd9Sstevel@tonic-gate lrd.s[i] = (sres & 0xFFFF); 10017c478bd9Sstevel@tonic-gate else 10027c478bd9Sstevel@tonic-gate lrd.s[i] = sres; 10037c478bd9Sstevel@tonic-gate } 10047c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 10057c478bd9Sstevel@tonic-gate break; 10067c478bd9Sstevel@tonic-gate case fmul8ulx16: 10077c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fmul8ulx16); 10087c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 10097c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 10107c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 10117c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 10127c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 10137c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 10147c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 10157c478bd9Sstevel@tonic-gate us1 = (ushort_t)lrs1.c[(i*2)+1]; 10167c478bd9Sstevel@tonic-gate s2 = (short)lrs2.s[i]; 10177c478bd9Sstevel@tonic-gate kres.i = us1 * s2; 10187c478bd9Sstevel@tonic-gate sres = (short)kres.s[0]; 10197c478bd9Sstevel@tonic-gate if (kres.s[1] >= 0x8000) 10207c478bd9Sstevel@tonic-gate sres++; 10217c478bd9Sstevel@tonic-gate lrd.s[i] = sres; 10227c478bd9Sstevel@tonic-gate } 10237c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 10247c478bd9Sstevel@tonic-gate break; 10257c478bd9Sstevel@tonic-gate case fmuld8sux16: 10267c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fmuld8sux16); 10277c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 10287c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 10297c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 10307c478bd9Sstevel@tonic-gate c1 = krs1.c[(i*2)]; 10317c478bd9Sstevel@tonic-gate s1 = (short)c1; /* keeps the sign alive */ 10327c478bd9Sstevel@tonic-gate s2 = (short)krs2.s[i]; 10337c478bd9Sstevel@tonic-gate kres.i = s1 * s2; 10347c478bd9Sstevel@tonic-gate lrd.i[i] = kres.i << 8; 10357c478bd9Sstevel@tonic-gate } 10367c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 10377c478bd9Sstevel@tonic-gate break; 10387c478bd9Sstevel@tonic-gate case fmuld8ulx16: 10397c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fmuld8ulx16); 10407c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 10417c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 10427c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 10437c478bd9Sstevel@tonic-gate us1 = (ushort_t)krs1.c[(i*2)+1]; 10447c478bd9Sstevel@tonic-gate s2 = (short)krs2.s[i]; 10457c478bd9Sstevel@tonic-gate lrd.i[i] = us1 * s2; 10467c478bd9Sstevel@tonic-gate } 10477c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 10487c478bd9Sstevel@tonic-gate break; 10497c478bd9Sstevel@tonic-gate } 10507c478bd9Sstevel@tonic-gate return (ftt_none); 10517c478bd9Sstevel@tonic-gate } 10527c478bd9Sstevel@tonic-gate 10537c478bd9Sstevel@tonic-gate /* 10547c478bd9Sstevel@tonic-gate * Simulator for fpixel formatting instructions. 10557c478bd9Sstevel@tonic-gate */ 10567c478bd9Sstevel@tonic-gate static enum ftt_type 10577c478bd9Sstevel@tonic-gate vis_fpixel( 10587c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 10597c478bd9Sstevel@tonic-gate vis_inst_type inst, /* FPU instruction to simulate. */ 10607c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 10617c478bd9Sstevel@tonic-gate { 10627c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 10637c478bd9Sstevel@tonic-gate int i, j, k, sf; 10647c478bd9Sstevel@tonic-gate union { 10657c478bd9Sstevel@tonic-gate uint64_t ll; 10667c478bd9Sstevel@tonic-gate uint32_t i[2]; 10677c478bd9Sstevel@tonic-gate uint16_t s[4]; 10687c478bd9Sstevel@tonic-gate uint8_t c[8]; 10697c478bd9Sstevel@tonic-gate } lrs1, lrs2, lrd; 10707c478bd9Sstevel@tonic-gate union { 10717c478bd9Sstevel@tonic-gate uint32_t i; 10727c478bd9Sstevel@tonic-gate uint16_t s[2]; 10737c478bd9Sstevel@tonic-gate uint8_t c[4]; 10747c478bd9Sstevel@tonic-gate } krs1, krs2, krd; 10757c478bd9Sstevel@tonic-gate uint64_t r; 10767c478bd9Sstevel@tonic-gate int64_t l, m; 10777c478bd9Sstevel@tonic-gate short s; 10787c478bd9Sstevel@tonic-gate uchar_t uc; 10797c478bd9Sstevel@tonic-gate 10807c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 10817c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 10827c478bd9Sstevel@tonic-gate nrd = inst.rd; 10837c478bd9Sstevel@tonic-gate if ((inst.opf != fpack16) && (inst.opf != fpackfix)) { 10847c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) /* fix register encoding */ 10857c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 10867c478bd9Sstevel@tonic-gate } 10877c478bd9Sstevel@tonic-gate 10887c478bd9Sstevel@tonic-gate switch (inst.opf) { 10897c478bd9Sstevel@tonic-gate case fpack16: 10907c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fpack16); 10917c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) /* fix register encoding */ 10927c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 10937c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 10945892374fSdf157793 r = pfpsd->fp_current_read_gsr(fp); 10957c478bd9Sstevel@tonic-gate /* fpack16 ignores GSR.scale msb */ 10967c478bd9Sstevel@tonic-gate sf = (int)(GSR_SCALE(r) & 0xf); 10977c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 10987c478bd9Sstevel@tonic-gate s = (short)lrs2.s[i]; /* preserve the sign */ 10997c478bd9Sstevel@tonic-gate j = ((int)s << sf); 11007c478bd9Sstevel@tonic-gate k = j >> 7; 11017c478bd9Sstevel@tonic-gate if (k < 0) { 11027c478bd9Sstevel@tonic-gate uc = 0; 11037c478bd9Sstevel@tonic-gate } else if (k > 255) { 11047c478bd9Sstevel@tonic-gate uc = 255; 11057c478bd9Sstevel@tonic-gate } else { 11067c478bd9Sstevel@tonic-gate uc = (uchar_t)k; 11077c478bd9Sstevel@tonic-gate } 11087c478bd9Sstevel@tonic-gate krd.c[i] = uc; 11097c478bd9Sstevel@tonic-gate } 11107c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &krd.i, nrd); 11117c478bd9Sstevel@tonic-gate break; 11127c478bd9Sstevel@tonic-gate case fpack32: 11137c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fpack32); 11147c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 11157c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 11167c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 11177c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 11187c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 11197c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 11207c478bd9Sstevel@tonic-gate 11215892374fSdf157793 r = pfpsd->fp_current_read_gsr(fp); 11227c478bd9Sstevel@tonic-gate sf = (int)GSR_SCALE(r); 11237c478bd9Sstevel@tonic-gate lrd.ll = lrs1.ll << 8; 11247c478bd9Sstevel@tonic-gate for (i = 0, k = 3; i <= 1; i++, k += 4) { 11257c478bd9Sstevel@tonic-gate j = (int)lrs2.i[i]; /* preserve the sign */ 11267c478bd9Sstevel@tonic-gate l = ((int64_t)j << sf); 11277c478bd9Sstevel@tonic-gate m = l >> 23; 11287c478bd9Sstevel@tonic-gate if (m < 0) { 11297c478bd9Sstevel@tonic-gate uc = 0; 11307c478bd9Sstevel@tonic-gate } else if (m > 255) { 11317c478bd9Sstevel@tonic-gate uc = 255; 11327c478bd9Sstevel@tonic-gate } else { 11337c478bd9Sstevel@tonic-gate uc = (uchar_t)m; 11347c478bd9Sstevel@tonic-gate } 11357c478bd9Sstevel@tonic-gate lrd.c[k] = uc; 11367c478bd9Sstevel@tonic-gate } 11377c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 11387c478bd9Sstevel@tonic-gate break; 11397c478bd9Sstevel@tonic-gate case fpackfix: 11407c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fpackfix); 11417c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 11427c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 11437c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 11447c478bd9Sstevel@tonic-gate 11455892374fSdf157793 r = pfpsd->fp_current_read_gsr(fp); 11467c478bd9Sstevel@tonic-gate sf = (int)GSR_SCALE(r); 11477c478bd9Sstevel@tonic-gate for (i = 0; i <= 1; i++) { 11487c478bd9Sstevel@tonic-gate j = (int)lrs2.i[i]; /* preserve the sign */ 11497c478bd9Sstevel@tonic-gate l = ((int64_t)j << sf); 11507c478bd9Sstevel@tonic-gate m = l >> 16; 11517c478bd9Sstevel@tonic-gate if (m < -32768) { 11527c478bd9Sstevel@tonic-gate s = -32768; 11537c478bd9Sstevel@tonic-gate } else if (m > 32767) { 11547c478bd9Sstevel@tonic-gate s = 32767; 11557c478bd9Sstevel@tonic-gate } else { 11567c478bd9Sstevel@tonic-gate s = (short)m; 11577c478bd9Sstevel@tonic-gate } 11587c478bd9Sstevel@tonic-gate krd.s[i] = s; 11597c478bd9Sstevel@tonic-gate } 11607c478bd9Sstevel@tonic-gate _fp_pack_word(pfpsd, &krd.i, nrd); 11617c478bd9Sstevel@tonic-gate break; 11627c478bd9Sstevel@tonic-gate case fexpand: 11637c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fexpand); 11647c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 11657c478bd9Sstevel@tonic-gate for (i = 0; i <= 3; i++) { 11667c478bd9Sstevel@tonic-gate uc = krs2.c[i]; 11677c478bd9Sstevel@tonic-gate lrd.s[i] = (ushort_t)(uc << 4); 11687c478bd9Sstevel@tonic-gate } 11697c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 11707c478bd9Sstevel@tonic-gate break; 11717c478bd9Sstevel@tonic-gate case fpmerge: 11727c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_fpmerge); 11737c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs1.i, nrs1); 11747c478bd9Sstevel@tonic-gate _fp_unpack_word(pfpsd, &krs2.i, nrs2); 11757c478bd9Sstevel@tonic-gate for (i = 0, j = 0; i <= 3; i++, j += 2) { 11767c478bd9Sstevel@tonic-gate lrd.c[j] = krs1.c[i]; 11777c478bd9Sstevel@tonic-gate lrd.c[j+1] = krs2.c[i]; 11787c478bd9Sstevel@tonic-gate } 11797c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 11807c478bd9Sstevel@tonic-gate break; 11817c478bd9Sstevel@tonic-gate } 11827c478bd9Sstevel@tonic-gate return (ftt_none); 11837c478bd9Sstevel@tonic-gate } 11847c478bd9Sstevel@tonic-gate 11857c478bd9Sstevel@tonic-gate /* 11867c478bd9Sstevel@tonic-gate * Simulator for pdist instruction. 11877c478bd9Sstevel@tonic-gate */ 11887c478bd9Sstevel@tonic-gate enum ftt_type 11897c478bd9Sstevel@tonic-gate vis_pdist( 11907c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 11917c478bd9Sstevel@tonic-gate fp_inst_type pinst) /* FPU instruction to simulate. */ 11927c478bd9Sstevel@tonic-gate { 11937c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 11947c478bd9Sstevel@tonic-gate int i; 11957c478bd9Sstevel@tonic-gate short s; 11967c478bd9Sstevel@tonic-gate union { 11977c478bd9Sstevel@tonic-gate uint64_t ll; 11987c478bd9Sstevel@tonic-gate uint8_t c[8]; 11997c478bd9Sstevel@tonic-gate } lrs1, lrs2, lrd; 12007c478bd9Sstevel@tonic-gate 12017c478bd9Sstevel@tonic-gate nrs1 = pinst.rs1; 12027c478bd9Sstevel@tonic-gate nrs2 = pinst.rs2; 12037c478bd9Sstevel@tonic-gate nrd = pinst.rd; 12047c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_pdist); 12057c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 12067c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 12077c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 12087c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 12097c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) 12107c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 12117c478bd9Sstevel@tonic-gate 12127c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 12137c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 12147c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrd.ll, nrd); 12157c478bd9Sstevel@tonic-gate 12167c478bd9Sstevel@tonic-gate for (i = 0; i <= 7; i++) { 12177c478bd9Sstevel@tonic-gate s = (short)(lrs1.c[i] - lrs2.c[i]); 12187c478bd9Sstevel@tonic-gate if (s < 0) 12197c478bd9Sstevel@tonic-gate s = ~s + 1; 12207c478bd9Sstevel@tonic-gate lrd.ll += s; 12217c478bd9Sstevel@tonic-gate } 12227c478bd9Sstevel@tonic-gate 12237c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 12247c478bd9Sstevel@tonic-gate return (ftt_none); 12257c478bd9Sstevel@tonic-gate } 12267c478bd9Sstevel@tonic-gate 12277c478bd9Sstevel@tonic-gate /* 12287c478bd9Sstevel@tonic-gate * Simulator for faligndata instruction. 12297c478bd9Sstevel@tonic-gate */ 12307c478bd9Sstevel@tonic-gate static enum ftt_type 12317c478bd9Sstevel@tonic-gate vis_faligndata( 12327c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 12337c478bd9Sstevel@tonic-gate fp_inst_type pinst, /* FPU instruction to simulate. */ 12347c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 12357c478bd9Sstevel@tonic-gate { 12367c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 12377c478bd9Sstevel@tonic-gate int i, j, k, ao; 12387c478bd9Sstevel@tonic-gate union { 12397c478bd9Sstevel@tonic-gate uint64_t ll; 12407c478bd9Sstevel@tonic-gate uint8_t c[8]; 12417c478bd9Sstevel@tonic-gate } lrs1, lrs2, lrd; 12427c478bd9Sstevel@tonic-gate uint64_t r; 12437c478bd9Sstevel@tonic-gate 12447c478bd9Sstevel@tonic-gate nrs1 = pinst.rs1; 12457c478bd9Sstevel@tonic-gate nrs2 = pinst.rs2; 12467c478bd9Sstevel@tonic-gate nrd = pinst.rd; 12477c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 12487c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 12497c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 12507c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 12517c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) 12527c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 12537c478bd9Sstevel@tonic-gate 12547c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 12557c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 12567c478bd9Sstevel@tonic-gate 12575892374fSdf157793 r = pfpsd->fp_current_read_gsr(fp); 12587c478bd9Sstevel@tonic-gate ao = (int)GSR_ALIGN(r); 12597c478bd9Sstevel@tonic-gate 12607c478bd9Sstevel@tonic-gate for (i = 0, j = ao, k = 0; i <= 7; i++) 12617c478bd9Sstevel@tonic-gate if (j <= 7) { 12627c478bd9Sstevel@tonic-gate lrd.c[i] = lrs1.c[j++]; 12637c478bd9Sstevel@tonic-gate } else { 12647c478bd9Sstevel@tonic-gate lrd.c[i] = lrs2.c[k++]; 12657c478bd9Sstevel@tonic-gate } 12667c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 12677c478bd9Sstevel@tonic-gate 12687c478bd9Sstevel@tonic-gate return (ftt_none); 12697c478bd9Sstevel@tonic-gate } 12707c478bd9Sstevel@tonic-gate 12717c478bd9Sstevel@tonic-gate /* 12727c478bd9Sstevel@tonic-gate * Simulator for bshuffle instruction. 12737c478bd9Sstevel@tonic-gate */ 12747c478bd9Sstevel@tonic-gate static enum ftt_type 12757c478bd9Sstevel@tonic-gate vis_bshuffle( 12767c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 12777c478bd9Sstevel@tonic-gate fp_inst_type pinst, /* FPU instruction to simulate. */ 12787c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 12797c478bd9Sstevel@tonic-gate { 12807c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 12817c478bd9Sstevel@tonic-gate int i, j, ao; 12827c478bd9Sstevel@tonic-gate union { 12837c478bd9Sstevel@tonic-gate uint64_t ll; 12847c478bd9Sstevel@tonic-gate uint8_t c[8]; 12857c478bd9Sstevel@tonic-gate } lrs1, lrs2, lrd; 12867c478bd9Sstevel@tonic-gate uint64_t r; 12877c478bd9Sstevel@tonic-gate 12887c478bd9Sstevel@tonic-gate VISINFO_KSTAT(vis_bshuffle); 12897c478bd9Sstevel@tonic-gate nrs1 = pinst.rs1; 12907c478bd9Sstevel@tonic-gate nrs2 = pinst.rs2; 12917c478bd9Sstevel@tonic-gate nrd = pinst.rd; 12927c478bd9Sstevel@tonic-gate if ((nrs1 & 1) == 1) /* fix register encoding */ 12937c478bd9Sstevel@tonic-gate nrs1 = (nrs1 & 0x1e) | 0x20; 12947c478bd9Sstevel@tonic-gate if ((nrs2 & 1) == 1) 12957c478bd9Sstevel@tonic-gate nrs2 = (nrs2 & 0x1e) | 0x20; 12967c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) 12977c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 12987c478bd9Sstevel@tonic-gate 12997c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs1.ll, nrs1); 13007c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &lrs2.ll, nrs2); 13017c478bd9Sstevel@tonic-gate 13025892374fSdf157793 r = pfpsd->fp_current_read_gsr(fp); 13037c478bd9Sstevel@tonic-gate ao = (int)GSR_MASK(r); 13047c478bd9Sstevel@tonic-gate 13057c478bd9Sstevel@tonic-gate /* 13067c478bd9Sstevel@tonic-gate * BSHUFFLE Destination Byte Selection 13077c478bd9Sstevel@tonic-gate * rd Byte Source 13087c478bd9Sstevel@tonic-gate * 0 rs byte[GSR.mask<31..28>] 13097c478bd9Sstevel@tonic-gate * 1 rs byte[GSR.mask<27..24>] 13107c478bd9Sstevel@tonic-gate * 2 rs byte[GSR.mask<23..20>] 13117c478bd9Sstevel@tonic-gate * 3 rs byte[GSR.mask<19..16>] 13127c478bd9Sstevel@tonic-gate * 4 rs byte[GSR.mask<15..12>] 13137c478bd9Sstevel@tonic-gate * 5 rs byte[GSR.mask<11..8>] 13147c478bd9Sstevel@tonic-gate * 6 rs byte[GSR.mask<7..4>] 13157c478bd9Sstevel@tonic-gate * 7 rs byte[GSR.mask<3..0>] 13167c478bd9Sstevel@tonic-gate * P.S. rs1 is the upper half and rs2 is the lower half 13177c478bd9Sstevel@tonic-gate * Bytes in the source value are numbered from most to 13187c478bd9Sstevel@tonic-gate * least significant 13197c478bd9Sstevel@tonic-gate */ 13207c478bd9Sstevel@tonic-gate for (i = 7; i >= 0; i--, ao = (ao >> 4)) { 13217c478bd9Sstevel@tonic-gate j = ao & 0xf; /* get byte number */ 13227c478bd9Sstevel@tonic-gate if (j < 8) { 13237c478bd9Sstevel@tonic-gate lrd.c[i] = lrs1.c[j]; 13247c478bd9Sstevel@tonic-gate } else { 13257c478bd9Sstevel@tonic-gate lrd.c[i] = lrs2.c[j - 8]; 13267c478bd9Sstevel@tonic-gate } 13277c478bd9Sstevel@tonic-gate } 13287c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &lrd.ll, nrd); 13297c478bd9Sstevel@tonic-gate 13307c478bd9Sstevel@tonic-gate return (ftt_none); 13317c478bd9Sstevel@tonic-gate } 13327c478bd9Sstevel@tonic-gate 13337c478bd9Sstevel@tonic-gate /* 13347c478bd9Sstevel@tonic-gate * Simulator for siam instruction. 13357c478bd9Sstevel@tonic-gate */ 13367c478bd9Sstevel@tonic-gate static enum ftt_type 13377c478bd9Sstevel@tonic-gate vis_siam( 13387c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 13397c478bd9Sstevel@tonic-gate vis_inst_type inst, /* FPU instruction to simulate. */ 13407c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 13417c478bd9Sstevel@tonic-gate { 13427c478bd9Sstevel@tonic-gate uint_t nrs2; /* Register number fields. */ 13437c478bd9Sstevel@tonic-gate uint64_t g, r; 13447c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 13457c478bd9Sstevel@tonic-gate 13465892374fSdf157793 g = pfpsd->fp_current_read_gsr(fp); 13477c478bd9Sstevel@tonic-gate g &= ~(GSR_IM_IRND_MASK); /* zero the IM and IRND fields */ 13487c478bd9Sstevel@tonic-gate r = nrs2 & 0x7; /* get mode(3 bit) */ 13497c478bd9Sstevel@tonic-gate g |= (r << GSR_IRND_SHIFT); 13505892374fSdf157793 pfpsd->fp_current_write_gsr(g, fp); 13517c478bd9Sstevel@tonic-gate return (ftt_none); 13527c478bd9Sstevel@tonic-gate } 13537c478bd9Sstevel@tonic-gate 13547c478bd9Sstevel@tonic-gate /* 13557c478bd9Sstevel@tonic-gate * Simulator for VIS loads and stores between floating-point unit and memory. 13567c478bd9Sstevel@tonic-gate */ 13577c478bd9Sstevel@tonic-gate enum ftt_type 13587c478bd9Sstevel@tonic-gate vis_fldst( 13597c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 13607c478bd9Sstevel@tonic-gate fp_inst_type pinst, /* FPU instruction to simulate. */ 13617c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 13627c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 13637c478bd9Sstevel@tonic-gate uint_t asi) /* asi to emulate! */ 13647c478bd9Sstevel@tonic-gate { 13657c478bd9Sstevel@tonic-gate union { 13667c478bd9Sstevel@tonic-gate vis_inst_type inst; 13677c478bd9Sstevel@tonic-gate fp_inst_type pinst; 13687c478bd9Sstevel@tonic-gate } i; 13697c478bd9Sstevel@tonic-gate 13707c478bd9Sstevel@tonic-gate ASSERT(USERMODE(pregs->r_tstate)); 13717c478bd9Sstevel@tonic-gate i.pinst = pinst; 13727c478bd9Sstevel@tonic-gate switch (asi) { 13737c478bd9Sstevel@tonic-gate case ASI_PST8_P: 13747c478bd9Sstevel@tonic-gate case ASI_PST8_S: 13757c478bd9Sstevel@tonic-gate case ASI_PST16_P: 13767c478bd9Sstevel@tonic-gate case ASI_PST16_S: 13777c478bd9Sstevel@tonic-gate case ASI_PST32_P: 13787c478bd9Sstevel@tonic-gate case ASI_PST32_S: 13797c478bd9Sstevel@tonic-gate case ASI_PST8_PL: 13807c478bd9Sstevel@tonic-gate case ASI_PST8_SL: 13817c478bd9Sstevel@tonic-gate case ASI_PST16_PL: 13827c478bd9Sstevel@tonic-gate case ASI_PST16_SL: 13837c478bd9Sstevel@tonic-gate case ASI_PST32_PL: 13847c478bd9Sstevel@tonic-gate case ASI_PST32_SL: 13857c478bd9Sstevel@tonic-gate return (vis_prtl_fst(pfpsd, i.inst, pregs, 13867c478bd9Sstevel@tonic-gate prw, asi)); 13877c478bd9Sstevel@tonic-gate case ASI_FL8_P: 13887c478bd9Sstevel@tonic-gate case ASI_FL8_S: 13897c478bd9Sstevel@tonic-gate case ASI_FL8_PL: 13907c478bd9Sstevel@tonic-gate case ASI_FL8_SL: 13917c478bd9Sstevel@tonic-gate case ASI_FL16_P: 13927c478bd9Sstevel@tonic-gate case ASI_FL16_S: 13937c478bd9Sstevel@tonic-gate case ASI_FL16_PL: 13947c478bd9Sstevel@tonic-gate case ASI_FL16_SL: 13957c478bd9Sstevel@tonic-gate return (vis_short_fls(pfpsd, i.inst, pregs, 13967c478bd9Sstevel@tonic-gate prw, asi)); 13977c478bd9Sstevel@tonic-gate case ASI_BLK_AIUP: 13987c478bd9Sstevel@tonic-gate case ASI_BLK_AIUS: 13997c478bd9Sstevel@tonic-gate case ASI_BLK_AIUPL: 14007c478bd9Sstevel@tonic-gate case ASI_BLK_AIUSL: 14017c478bd9Sstevel@tonic-gate case ASI_BLK_P: 14027c478bd9Sstevel@tonic-gate case ASI_BLK_S: 14037c478bd9Sstevel@tonic-gate case ASI_BLK_PL: 14047c478bd9Sstevel@tonic-gate case ASI_BLK_SL: 14057c478bd9Sstevel@tonic-gate case ASI_BLK_COMMIT_P: 14067c478bd9Sstevel@tonic-gate case ASI_BLK_COMMIT_S: 14077c478bd9Sstevel@tonic-gate return (vis_blk_fldst(pfpsd, i.inst, pregs, 14087c478bd9Sstevel@tonic-gate prw, asi)); 14097c478bd9Sstevel@tonic-gate default: 14107c478bd9Sstevel@tonic-gate return (ftt_unimplemented); 14117c478bd9Sstevel@tonic-gate } 14127c478bd9Sstevel@tonic-gate } 14137c478bd9Sstevel@tonic-gate 14147c478bd9Sstevel@tonic-gate /* 14157c478bd9Sstevel@tonic-gate * Simulator for partial stores between floating-point unit and memory. 14167c478bd9Sstevel@tonic-gate */ 14177c478bd9Sstevel@tonic-gate static enum ftt_type 14187c478bd9Sstevel@tonic-gate vis_prtl_fst( 14197c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 14207c478bd9Sstevel@tonic-gate vis_inst_type inst, /* ISE instruction to simulate. */ 14217c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 14227c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 14237c478bd9Sstevel@tonic-gate uint_t asi) /* asi to emulate! */ 14247c478bd9Sstevel@tonic-gate { 14257c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 14267c478bd9Sstevel@tonic-gate uint_t opf, msk; 14277c478bd9Sstevel@tonic-gate int h, i, j; 14287c478bd9Sstevel@tonic-gate uint64_t ea, tmsk; 14297c478bd9Sstevel@tonic-gate union { 14307c478bd9Sstevel@tonic-gate freg_type f; 14317c478bd9Sstevel@tonic-gate uint64_t ll; 14327c478bd9Sstevel@tonic-gate uint32_t i[2]; 14337c478bd9Sstevel@tonic-gate uint16_t s[4]; 14347c478bd9Sstevel@tonic-gate uint8_t c[8]; 14357c478bd9Sstevel@tonic-gate } k, l, res; 14367c478bd9Sstevel@tonic-gate enum ftt_type ftt; 14377c478bd9Sstevel@tonic-gate 14387c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 14397c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 14407c478bd9Sstevel@tonic-gate nrd = inst.rd; 14417c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) /* fix register encoding */ 14427c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 14437c478bd9Sstevel@tonic-gate opf = inst.opf; 14447c478bd9Sstevel@tonic-gate res.ll = 0; 14457c478bd9Sstevel@tonic-gate if ((opf & 0x100) == 0) { /* effective address = rs1 */ 14467c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &ea); 14477c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 14487c478bd9Sstevel@tonic-gate return (ftt); 14497c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &tmsk); 14507c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 14517c478bd9Sstevel@tonic-gate return (ftt); 14527c478bd9Sstevel@tonic-gate msk = (uint_t)tmsk; 14537c478bd9Sstevel@tonic-gate } else { 14547c478bd9Sstevel@tonic-gate pfpsd->fp_trapaddr = (caddr_t)pregs->r_pc; 14557c478bd9Sstevel@tonic-gate return (ftt_unimplemented); 14567c478bd9Sstevel@tonic-gate } 14577c478bd9Sstevel@tonic-gate 14587c478bd9Sstevel@tonic-gate pfpsd->fp_trapaddr = (caddr_t)ea; /* setup bad addr in case we trap */ 14597c478bd9Sstevel@tonic-gate if ((ea & 0x3) != 0) 14607c478bd9Sstevel@tonic-gate return (ftt_alignment); /* Require 32 bit-alignment. */ 14617c478bd9Sstevel@tonic-gate 14627c478bd9Sstevel@tonic-gate switch (asi) { 14637c478bd9Sstevel@tonic-gate case ASI_PST8_P: 14647c478bd9Sstevel@tonic-gate case ASI_PST8_S: 14657c478bd9Sstevel@tonic-gate ftt = _fp_read_extword((uint64_t *)ea, &l.ll, pfpsd); 14667c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 14677c478bd9Sstevel@tonic-gate return (ftt); 14687c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 14697c478bd9Sstevel@tonic-gate for (i = 0, j = 0x80; i <= 7; i++, j >>= 1) { 14707c478bd9Sstevel@tonic-gate if ((msk & j) == j) 14717c478bd9Sstevel@tonic-gate res.c[i] = k.c[i]; 14727c478bd9Sstevel@tonic-gate else 14737c478bd9Sstevel@tonic-gate res.c[i] = l.c[i]; 14747c478bd9Sstevel@tonic-gate } 14757c478bd9Sstevel@tonic-gate ftt = _fp_write_extword((uint64_t *)ea, res.ll, pfpsd); 14767c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 14777c478bd9Sstevel@tonic-gate return (ftt); 14787c478bd9Sstevel@tonic-gate break; 14797c478bd9Sstevel@tonic-gate case ASI_PST8_PL: /* little-endian */ 14807c478bd9Sstevel@tonic-gate case ASI_PST8_SL: 14817c478bd9Sstevel@tonic-gate ftt = _fp_read_extword((uint64_t *)ea, &l.ll, pfpsd); 14827c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 14837c478bd9Sstevel@tonic-gate return (ftt); 14847c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 1485*428cee1bSjfrank for (h = 7, i = 0, j = 1; i <= 7; h--, i++, j <<= 1) { 14867c478bd9Sstevel@tonic-gate if ((msk & j) == j) 1487*428cee1bSjfrank res.c[i] = k.c[h]; 14887c478bd9Sstevel@tonic-gate else 1489*428cee1bSjfrank res.c[i] = l.c[i]; 14907c478bd9Sstevel@tonic-gate } 14917c478bd9Sstevel@tonic-gate ftt = _fp_write_extword((uint64_t *)ea, res.ll, pfpsd); 14927c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 14937c478bd9Sstevel@tonic-gate return (ftt); 14947c478bd9Sstevel@tonic-gate break; 14957c478bd9Sstevel@tonic-gate case ASI_PST16_P: 14967c478bd9Sstevel@tonic-gate case ASI_PST16_S: 14977c478bd9Sstevel@tonic-gate ftt = _fp_read_extword((uint64_t *)ea, &l.ll, pfpsd); 14987c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 14997c478bd9Sstevel@tonic-gate return (ftt); 15007c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 15017c478bd9Sstevel@tonic-gate for (i = 0, j = 0x8; i <= 3; i++, j >>= 1) { 15027c478bd9Sstevel@tonic-gate if ((msk & j) == j) 15037c478bd9Sstevel@tonic-gate res.s[i] = k.s[i]; 15047c478bd9Sstevel@tonic-gate else 15057c478bd9Sstevel@tonic-gate res.s[i] = l.s[i]; 15067c478bd9Sstevel@tonic-gate } 15077c478bd9Sstevel@tonic-gate ftt = _fp_write_extword((uint64_t *)ea, res.ll, pfpsd); 15087c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 15097c478bd9Sstevel@tonic-gate return (ftt); 15107c478bd9Sstevel@tonic-gate break; 15117c478bd9Sstevel@tonic-gate case ASI_PST16_PL: 15127c478bd9Sstevel@tonic-gate case ASI_PST16_SL: 15137c478bd9Sstevel@tonic-gate ftt = _fp_read_extword((uint64_t *)ea, &l.ll, pfpsd); 15147c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 15157c478bd9Sstevel@tonic-gate return (ftt); 15167c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 1517*428cee1bSjfrank for (h = 7, i = 0, j = 1; i <= 6; h -= 2, i += 2, j <<= 1) { 15187c478bd9Sstevel@tonic-gate if ((msk & j) == j) { 1519*428cee1bSjfrank res.c[i] = k.c[h]; 1520*428cee1bSjfrank res.c[i+1] = k.c[h-1]; 15217c478bd9Sstevel@tonic-gate } else { 1522*428cee1bSjfrank res.c[i] = l.c[i]; 1523*428cee1bSjfrank res.c[i+1] = l.c[i+1]; 15247c478bd9Sstevel@tonic-gate } 15257c478bd9Sstevel@tonic-gate } 15267c478bd9Sstevel@tonic-gate ftt = _fp_write_extword((uint64_t *)ea, res.ll, pfpsd); 15277c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 15287c478bd9Sstevel@tonic-gate return (ftt); 15297c478bd9Sstevel@tonic-gate break; 15307c478bd9Sstevel@tonic-gate case ASI_PST32_P: 15317c478bd9Sstevel@tonic-gate case ASI_PST32_S: 15327c478bd9Sstevel@tonic-gate ftt = _fp_read_extword((uint64_t *)ea, &l.ll, pfpsd); 15337c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 15347c478bd9Sstevel@tonic-gate return (ftt); 15357c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 15367c478bd9Sstevel@tonic-gate for (i = 0, j = 0x2; i <= 1; i++, j >>= 1) { 15377c478bd9Sstevel@tonic-gate if ((msk & j) == j) 15387c478bd9Sstevel@tonic-gate res.i[i] = k.i[i]; 15397c478bd9Sstevel@tonic-gate else 15407c478bd9Sstevel@tonic-gate res.i[i] = l.i[i]; 15417c478bd9Sstevel@tonic-gate } 15427c478bd9Sstevel@tonic-gate ftt = _fp_write_extword((uint64_t *)ea, res.ll, pfpsd); 15437c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 15447c478bd9Sstevel@tonic-gate return (ftt); 15457c478bd9Sstevel@tonic-gate break; 15467c478bd9Sstevel@tonic-gate case ASI_PST32_PL: 15477c478bd9Sstevel@tonic-gate case ASI_PST32_SL: 15487c478bd9Sstevel@tonic-gate ftt = _fp_read_extword((uint64_t *)ea, &l.ll, pfpsd); 15497c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 15507c478bd9Sstevel@tonic-gate return (ftt); 15517c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 1552*428cee1bSjfrank for (h = 7, i = 0, j = 1; i <= 4; h -= 4, i += 4, j <<= 1) { 15537c478bd9Sstevel@tonic-gate if ((msk & j) == j) { 1554*428cee1bSjfrank res.c[i] = k.c[h]; 1555*428cee1bSjfrank res.c[i+1] = k.c[h-1]; 1556*428cee1bSjfrank res.c[i+2] = k.c[h-2]; 1557*428cee1bSjfrank res.c[i+3] = k.c[h-3]; 15587c478bd9Sstevel@tonic-gate } else { 1559*428cee1bSjfrank res.c[i] = l.c[i]; 1560*428cee1bSjfrank res.c[i+1] = l.c[i+1]; 1561*428cee1bSjfrank res.c[i+2] = l.c[i+2]; 1562*428cee1bSjfrank res.c[i+3] = l.c[i+3]; 15637c478bd9Sstevel@tonic-gate } 15647c478bd9Sstevel@tonic-gate } 15657c478bd9Sstevel@tonic-gate ftt = _fp_write_extword((uint64_t *)ea, res.ll, pfpsd); 15667c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 15677c478bd9Sstevel@tonic-gate return (ftt); 15687c478bd9Sstevel@tonic-gate break; 15697c478bd9Sstevel@tonic-gate } 15707c478bd9Sstevel@tonic-gate 15717c478bd9Sstevel@tonic-gate pregs->r_pc = pregs->r_npc; /* Do not retry emulated instruction. */ 15727c478bd9Sstevel@tonic-gate pregs->r_npc += 4; 15737c478bd9Sstevel@tonic-gate return (ftt_none); 15747c478bd9Sstevel@tonic-gate } 15757c478bd9Sstevel@tonic-gate 15767c478bd9Sstevel@tonic-gate /* 15777c478bd9Sstevel@tonic-gate * Simulator for short load/stores between floating-point unit and memory. 15787c478bd9Sstevel@tonic-gate */ 15797c478bd9Sstevel@tonic-gate static enum ftt_type 15807c478bd9Sstevel@tonic-gate vis_short_fls( 15817c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 15827c478bd9Sstevel@tonic-gate vis_inst_type inst, /* ISE instruction to simulate. */ 15837c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 15847c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 15857c478bd9Sstevel@tonic-gate uint_t asi) /* asi to emulate! */ 15867c478bd9Sstevel@tonic-gate { 15877c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 15887c478bd9Sstevel@tonic-gate uint_t opf; 15897c478bd9Sstevel@tonic-gate uint64_t ea, tea; 15907c478bd9Sstevel@tonic-gate union { 15917c478bd9Sstevel@tonic-gate freg_type f; 15927c478bd9Sstevel@tonic-gate uint64_t ll; 15937c478bd9Sstevel@tonic-gate uint32_t i[2]; 15947c478bd9Sstevel@tonic-gate uint16_t s[4]; 15957c478bd9Sstevel@tonic-gate uint8_t c[8]; 15967c478bd9Sstevel@tonic-gate } k; 15977c478bd9Sstevel@tonic-gate union { 15987c478bd9Sstevel@tonic-gate vis_inst_type inst; 15997c478bd9Sstevel@tonic-gate int i; 16007c478bd9Sstevel@tonic-gate } fp; 16017c478bd9Sstevel@tonic-gate enum ftt_type ftt = ftt_none; 16027c478bd9Sstevel@tonic-gate ushort_t us; 16037c478bd9Sstevel@tonic-gate uchar_t uc; 16047c478bd9Sstevel@tonic-gate 16057c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 16067c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 16077c478bd9Sstevel@tonic-gate nrd = inst.rd; 16087c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) /* fix register encoding */ 16097c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 16107c478bd9Sstevel@tonic-gate opf = inst.opf; 16117c478bd9Sstevel@tonic-gate fp.inst = inst; 16127c478bd9Sstevel@tonic-gate if ((opf & 0x100) == 0) { /* effective address = rs1 + rs2 */ 16137c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &ea); 16147c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 16157c478bd9Sstevel@tonic-gate return (ftt); 16167c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &tea); 16177c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 16187c478bd9Sstevel@tonic-gate return (ftt); 16197c478bd9Sstevel@tonic-gate ea += tea; 16207c478bd9Sstevel@tonic-gate } else { /* effective address = rs1 + imm13 */ 16217c478bd9Sstevel@tonic-gate fp.inst = inst; 16227c478bd9Sstevel@tonic-gate ea = (fp.i << 19) >> 19; /* Extract simm13 field. */ 16237c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &tea); 16247c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 16257c478bd9Sstevel@tonic-gate return (ftt); 16267c478bd9Sstevel@tonic-gate ea += tea; 16277c478bd9Sstevel@tonic-gate } 16287c478bd9Sstevel@tonic-gate if (get_udatamodel() == DATAMODEL_ILP32) 16297c478bd9Sstevel@tonic-gate ea = (uint64_t)(caddr32_t)ea; 16307c478bd9Sstevel@tonic-gate 16317c478bd9Sstevel@tonic-gate pfpsd->fp_trapaddr = (caddr_t)ea; /* setup bad addr in case we trap */ 16327c478bd9Sstevel@tonic-gate switch (asi) { 16337c478bd9Sstevel@tonic-gate case ASI_FL8_P: 16347c478bd9Sstevel@tonic-gate case ASI_FL8_S: 16357c478bd9Sstevel@tonic-gate case ASI_FL8_PL: /* little-endian */ 16367c478bd9Sstevel@tonic-gate case ASI_FL8_SL: 16377c478bd9Sstevel@tonic-gate if ((inst.op3 & 7) == 3) { /* load byte */ 16387c478bd9Sstevel@tonic-gate if (fuword8((void *)ea, &uc) == -1) 16397c478bd9Sstevel@tonic-gate return (ftt_fault); 16407c478bd9Sstevel@tonic-gate k.ll = 0; 16417c478bd9Sstevel@tonic-gate k.c[7] = uc; 16427c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 16437c478bd9Sstevel@tonic-gate } else { /* store byte */ 16447c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 16457c478bd9Sstevel@tonic-gate uc = k.c[7]; 16467c478bd9Sstevel@tonic-gate if (subyte((caddr_t)ea, uc) == -1) 16477c478bd9Sstevel@tonic-gate return (ftt_fault); 16487c478bd9Sstevel@tonic-gate } 16497c478bd9Sstevel@tonic-gate break; 16507c478bd9Sstevel@tonic-gate case ASI_FL16_P: 16517c478bd9Sstevel@tonic-gate case ASI_FL16_S: 16527c478bd9Sstevel@tonic-gate if ((ea & 1) == 1) 16537c478bd9Sstevel@tonic-gate return (ftt_alignment); 16547c478bd9Sstevel@tonic-gate if ((inst.op3 & 7) == 3) { /* load short */ 16557c478bd9Sstevel@tonic-gate if (fuword16((void *)ea, &us) == -1) 16567c478bd9Sstevel@tonic-gate return (ftt_fault); 16577c478bd9Sstevel@tonic-gate k.ll = 0; 16587c478bd9Sstevel@tonic-gate k.s[3] = us; 16597c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 16607c478bd9Sstevel@tonic-gate } else { /* store short */ 16617c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 16627c478bd9Sstevel@tonic-gate us = k.s[3]; 16637c478bd9Sstevel@tonic-gate if (suword16((caddr_t)ea, us) == -1) 16647c478bd9Sstevel@tonic-gate return (ftt_fault); 16657c478bd9Sstevel@tonic-gate } 16667c478bd9Sstevel@tonic-gate break; 16677c478bd9Sstevel@tonic-gate case ASI_FL16_PL: /* little-endian */ 16687c478bd9Sstevel@tonic-gate case ASI_FL16_SL: 16697c478bd9Sstevel@tonic-gate if ((ea & 1) == 1) 16707c478bd9Sstevel@tonic-gate return (ftt_alignment); 16717c478bd9Sstevel@tonic-gate if ((inst.op3 & 7) == 3) { /* load short */ 16727c478bd9Sstevel@tonic-gate if (fuword16((void *)ea, &us) == -1) 16737c478bd9Sstevel@tonic-gate return (ftt_fault); 16747c478bd9Sstevel@tonic-gate k.ll = 0; 16757c478bd9Sstevel@tonic-gate k.c[6] = (uchar_t)us; 16767c478bd9Sstevel@tonic-gate k.c[7] = (uchar_t)((us & 0xff00) >> 8); 16777c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 16787c478bd9Sstevel@tonic-gate } else { /* store short */ 16797c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 16807c478bd9Sstevel@tonic-gate uc = k.c[7]; 16817c478bd9Sstevel@tonic-gate us = (ushort_t)((uc << 8) | k.c[6]); 16827c478bd9Sstevel@tonic-gate if (suword16((void *)ea, us) == -1) 16837c478bd9Sstevel@tonic-gate return (ftt_fault); 16847c478bd9Sstevel@tonic-gate } 16857c478bd9Sstevel@tonic-gate break; 16867c478bd9Sstevel@tonic-gate } 16877c478bd9Sstevel@tonic-gate 16887c478bd9Sstevel@tonic-gate pregs->r_pc = pregs->r_npc; /* Do not retry emulated instruction. */ 16897c478bd9Sstevel@tonic-gate pregs->r_npc += 4; 16907c478bd9Sstevel@tonic-gate return (ftt_none); 16917c478bd9Sstevel@tonic-gate } 16927c478bd9Sstevel@tonic-gate 16937c478bd9Sstevel@tonic-gate /* 16947c478bd9Sstevel@tonic-gate * Simulator for block loads and stores between floating-point unit and memory. 16957c478bd9Sstevel@tonic-gate * XXX - OK, so it is really gross to flush the whole Ecache for a block commit 16967c478bd9Sstevel@tonic-gate * store - but the circumstances under which this code actually gets 16977c478bd9Sstevel@tonic-gate * used in real life are so obscure that you can live with it! 16987c478bd9Sstevel@tonic-gate */ 16997c478bd9Sstevel@tonic-gate static enum ftt_type 17007c478bd9Sstevel@tonic-gate vis_blk_fldst( 17017c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 17027c478bd9Sstevel@tonic-gate vis_inst_type inst, /* ISE instruction to simulate. */ 17037c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 17047c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 17057c478bd9Sstevel@tonic-gate uint_t asi) /* asi to emulate! */ 17067c478bd9Sstevel@tonic-gate { 17077c478bd9Sstevel@tonic-gate uint_t nrs1, nrs2, nrd; /* Register number fields. */ 17087c478bd9Sstevel@tonic-gate uint_t opf, h, i, j; 17097c478bd9Sstevel@tonic-gate uint64_t ea, tea; 17107c478bd9Sstevel@tonic-gate union { 17117c478bd9Sstevel@tonic-gate freg_type f; 17127c478bd9Sstevel@tonic-gate uint64_t ll; 17137c478bd9Sstevel@tonic-gate uint8_t c[8]; 17147c478bd9Sstevel@tonic-gate } k, l; 17157c478bd9Sstevel@tonic-gate union { 17167c478bd9Sstevel@tonic-gate vis_inst_type inst; 17177c478bd9Sstevel@tonic-gate int32_t i; 17187c478bd9Sstevel@tonic-gate } fp; 17197c478bd9Sstevel@tonic-gate enum ftt_type ftt; 17207c478bd9Sstevel@tonic-gate boolean_t little_endian = B_FALSE; 17217c478bd9Sstevel@tonic-gate 17227c478bd9Sstevel@tonic-gate nrs1 = inst.rs1; 17237c478bd9Sstevel@tonic-gate nrs2 = inst.rs2; 17247c478bd9Sstevel@tonic-gate nrd = inst.rd; 17257c478bd9Sstevel@tonic-gate if ((nrd & 1) == 1) /* fix register encoding */ 17267c478bd9Sstevel@tonic-gate nrd = (nrd & 0x1e) | 0x20; 17277c478bd9Sstevel@tonic-gate 17287c478bd9Sstevel@tonic-gate /* ensure register is 8-double precision aligned */ 17297c478bd9Sstevel@tonic-gate if ((nrd & 0xf) != 0) 17307c478bd9Sstevel@tonic-gate return (ftt_unimplemented); 17317c478bd9Sstevel@tonic-gate 17327c478bd9Sstevel@tonic-gate opf = inst.opf; 17337c478bd9Sstevel@tonic-gate if ((opf & 0x100) == 0) { /* effective address = rs1 + rs2 */ 17347c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &ea); 17357c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 17367c478bd9Sstevel@tonic-gate return (ftt); 17377c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &tea); 17387c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 17397c478bd9Sstevel@tonic-gate return (ftt); 17407c478bd9Sstevel@tonic-gate ea += tea; 17417c478bd9Sstevel@tonic-gate } else { /* effective address = rs1 + imm13 */ 17427c478bd9Sstevel@tonic-gate fp.inst = inst; 17437c478bd9Sstevel@tonic-gate ea = (fp.i << 19) >> 19; /* Extract simm13 field. */ 17447c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &tea); 17457c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 17467c478bd9Sstevel@tonic-gate return (ftt); 17477c478bd9Sstevel@tonic-gate ea += tea; 17487c478bd9Sstevel@tonic-gate } 17497c478bd9Sstevel@tonic-gate if ((ea & 0x3F) != 0) /* Require 64 byte-alignment. */ 17507c478bd9Sstevel@tonic-gate return (ftt_alignment); 17517c478bd9Sstevel@tonic-gate 17527c478bd9Sstevel@tonic-gate pfpsd->fp_trapaddr = (caddr_t)ea; /* setup bad addr in case we trap */ 17537c478bd9Sstevel@tonic-gate switch (asi) { 17547c478bd9Sstevel@tonic-gate case ASI_BLK_AIUPL: 17557c478bd9Sstevel@tonic-gate case ASI_BLK_AIUSL: 17567c478bd9Sstevel@tonic-gate case ASI_BLK_PL: 17577c478bd9Sstevel@tonic-gate case ASI_BLK_SL: 17587c478bd9Sstevel@tonic-gate little_endian = B_TRUE; 17597c478bd9Sstevel@tonic-gate /* FALLTHROUGH */ 17607c478bd9Sstevel@tonic-gate case ASI_BLK_AIUP: 17617c478bd9Sstevel@tonic-gate case ASI_BLK_AIUS: 17627c478bd9Sstevel@tonic-gate case ASI_BLK_P: 17637c478bd9Sstevel@tonic-gate case ASI_BLK_S: 17647c478bd9Sstevel@tonic-gate case ASI_BLK_COMMIT_P: 17657c478bd9Sstevel@tonic-gate case ASI_BLK_COMMIT_S: 17667c478bd9Sstevel@tonic-gate if ((inst.op3 & 7) == 3) { /* lddf */ 17677c478bd9Sstevel@tonic-gate for (i = 0; i < 8; i++, ea += 8, nrd += 2) { 17687c478bd9Sstevel@tonic-gate ftt = _fp_read_extword((uint64_t *)ea, &k.ll, pfpsd); 17697c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 17707c478bd9Sstevel@tonic-gate return (ftt); 17717c478bd9Sstevel@tonic-gate if (little_endian) { 17727c478bd9Sstevel@tonic-gate for (j = 0, h = 7; j < 8; j++, h--) 17737c478bd9Sstevel@tonic-gate l.c[h] = k.c[j]; 17747c478bd9Sstevel@tonic-gate k.ll = l.ll; 17757c478bd9Sstevel@tonic-gate } 17767c478bd9Sstevel@tonic-gate _fp_pack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 17777c478bd9Sstevel@tonic-gate } 17787c478bd9Sstevel@tonic-gate } else { /* stdf */ 17797c478bd9Sstevel@tonic-gate for (i = 0; i < 8; i++, ea += 8, nrd += 2) { 17807c478bd9Sstevel@tonic-gate _fp_unpack_extword(pfpsd, &k.f.FPU_DREG_FIELD, nrd); 17817c478bd9Sstevel@tonic-gate if (little_endian) { 17827c478bd9Sstevel@tonic-gate for (j = 0, h = 7; j < 8; j++, h--) 17837c478bd9Sstevel@tonic-gate l.c[h] = k.c[j]; 17847c478bd9Sstevel@tonic-gate k.ll = l.ll; 17857c478bd9Sstevel@tonic-gate } 17867c478bd9Sstevel@tonic-gate ftt = _fp_write_extword((uint64_t *)ea, k.ll, pfpsd); 17877c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 17887c478bd9Sstevel@tonic-gate return (ftt); 17897c478bd9Sstevel@tonic-gate } 17907c478bd9Sstevel@tonic-gate } 17917c478bd9Sstevel@tonic-gate if ((asi == ASI_BLK_COMMIT_P) || (asi == ASI_BLK_COMMIT_S)) 17927c478bd9Sstevel@tonic-gate cpu_flush_ecache(); 17937c478bd9Sstevel@tonic-gate break; 17947c478bd9Sstevel@tonic-gate default: 17957c478bd9Sstevel@tonic-gate /* addr of unimp inst */ 17967c478bd9Sstevel@tonic-gate pfpsd->fp_trapaddr = (caddr_t)pregs->r_pc; 17977c478bd9Sstevel@tonic-gate return (ftt_unimplemented); 17987c478bd9Sstevel@tonic-gate } 17997c478bd9Sstevel@tonic-gate 18007c478bd9Sstevel@tonic-gate pregs->r_pc = pregs->r_npc; /* Do not retry emulated instruction. */ 18017c478bd9Sstevel@tonic-gate pregs->r_npc += 4; 18027c478bd9Sstevel@tonic-gate return (ftt_none); 18037c478bd9Sstevel@tonic-gate } 18047c478bd9Sstevel@tonic-gate 18057c478bd9Sstevel@tonic-gate /* 18067c478bd9Sstevel@tonic-gate * Simulator for rd %gsr instruction. 18077c478bd9Sstevel@tonic-gate */ 18087c478bd9Sstevel@tonic-gate enum ftt_type 18097c478bd9Sstevel@tonic-gate vis_rdgsr( 18107c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 18117c478bd9Sstevel@tonic-gate fp_inst_type pinst, /* FPU instruction to simulate. */ 18127c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 18137c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 18147c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 18157c478bd9Sstevel@tonic-gate { 18167c478bd9Sstevel@tonic-gate uint_t nrd; 18177c478bd9Sstevel@tonic-gate uint64_t r; 18187c478bd9Sstevel@tonic-gate enum ftt_type ftt = ftt_none; 18197c478bd9Sstevel@tonic-gate 18207c478bd9Sstevel@tonic-gate nrd = pinst.rd; 18217c478bd9Sstevel@tonic-gate 18225892374fSdf157793 r = pfpsd->fp_current_read_gsr(fp); 18237c478bd9Sstevel@tonic-gate ftt = write_iureg(pfpsd, nrd, pregs, prw, &r); 18247c478bd9Sstevel@tonic-gate pregs->r_pc = pregs->r_npc; /* Do not retry emulated instruction. */ 18257c478bd9Sstevel@tonic-gate pregs->r_npc += 4; 18267c478bd9Sstevel@tonic-gate return (ftt); 18277c478bd9Sstevel@tonic-gate } 18287c478bd9Sstevel@tonic-gate 18297c478bd9Sstevel@tonic-gate /* 18307c478bd9Sstevel@tonic-gate * Simulator for wr %gsr instruction. 18317c478bd9Sstevel@tonic-gate */ 18327c478bd9Sstevel@tonic-gate enum ftt_type 18337c478bd9Sstevel@tonic-gate vis_wrgsr( 18347c478bd9Sstevel@tonic-gate fp_simd_type *pfpsd, /* FPU simulator data. */ 18357c478bd9Sstevel@tonic-gate fp_inst_type pinst, /* FPU instruction to simulate. */ 18367c478bd9Sstevel@tonic-gate struct regs *pregs, /* Pointer to PCB image of registers. */ 18377c478bd9Sstevel@tonic-gate void *prw, /* Pointer to locals and ins. */ 18387c478bd9Sstevel@tonic-gate kfpu_t *fp) /* Need to fp to access gsr reg */ 18397c478bd9Sstevel@tonic-gate { 18407c478bd9Sstevel@tonic-gate uint_t nrs1; 18417c478bd9Sstevel@tonic-gate uint64_t r, r1, r2; 18427c478bd9Sstevel@tonic-gate enum ftt_type ftt = ftt_none; 18437c478bd9Sstevel@tonic-gate 18447c478bd9Sstevel@tonic-gate nrs1 = pinst.rs1; 18457c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs1, pregs, prw, &r1); 18467c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 18477c478bd9Sstevel@tonic-gate return (ftt); 18487c478bd9Sstevel@tonic-gate if (pinst.ibit == 0) { /* copy the value in r[rs2] */ 18497c478bd9Sstevel@tonic-gate uint_t nrs2; 18507c478bd9Sstevel@tonic-gate 18517c478bd9Sstevel@tonic-gate nrs2 = pinst.rs2; 18527c478bd9Sstevel@tonic-gate ftt = read_iureg(pfpsd, nrs2, pregs, prw, &r2); 18537c478bd9Sstevel@tonic-gate if (ftt != ftt_none) 18547c478bd9Sstevel@tonic-gate return (ftt); 18557c478bd9Sstevel@tonic-gate } else { /* use sign_ext(simm13) */ 18567c478bd9Sstevel@tonic-gate union { 18577c478bd9Sstevel@tonic-gate fp_inst_type inst; 18587c478bd9Sstevel@tonic-gate uint32_t i; 18597c478bd9Sstevel@tonic-gate } fp; 18607c478bd9Sstevel@tonic-gate 18617c478bd9Sstevel@tonic-gate fp.inst = pinst; /* Extract simm13 field */ 18627c478bd9Sstevel@tonic-gate r2 = (fp.i << 19) >> 19; 18637c478bd9Sstevel@tonic-gate } 18647c478bd9Sstevel@tonic-gate r = r1 ^ r2; 18655892374fSdf157793 pfpsd->fp_current_write_gsr(r, fp); 18667c478bd9Sstevel@tonic-gate pregs->r_pc = pregs->r_npc; /* Do not retry emulated instruction. */ 18677c478bd9Sstevel@tonic-gate pregs->r_npc += 4; 18687c478bd9Sstevel@tonic-gate return (ftt); 18697c478bd9Sstevel@tonic-gate } 18707c478bd9Sstevel@tonic-gate 18717c478bd9Sstevel@tonic-gate /* 18727c478bd9Sstevel@tonic-gate * This is the loadable module wrapper. 18737c478bd9Sstevel@tonic-gate */ 18747c478bd9Sstevel@tonic-gate #include <sys/errno.h> 18757c478bd9Sstevel@tonic-gate #include <sys/modctl.h> 18767c478bd9Sstevel@tonic-gate 18777c478bd9Sstevel@tonic-gate /* 18787c478bd9Sstevel@tonic-gate * Module linkage information for the kernel. 18797c478bd9Sstevel@tonic-gate */ 18807c478bd9Sstevel@tonic-gate extern struct mod_ops mod_miscops; 18817c478bd9Sstevel@tonic-gate 18827c478bd9Sstevel@tonic-gate static struct modlmisc modlmisc = { 18837c478bd9Sstevel@tonic-gate &mod_miscops, 18847c478bd9Sstevel@tonic-gate "vis fp simulation", 18857c478bd9Sstevel@tonic-gate }; 18867c478bd9Sstevel@tonic-gate 18877c478bd9Sstevel@tonic-gate static struct modlinkage modlinkage = { 18887c478bd9Sstevel@tonic-gate MODREV_1, (void *)&modlmisc, NULL 18897c478bd9Sstevel@tonic-gate }; 18907c478bd9Sstevel@tonic-gate 18917c478bd9Sstevel@tonic-gate int 18927c478bd9Sstevel@tonic-gate _init(void) 18937c478bd9Sstevel@tonic-gate { 18947c478bd9Sstevel@tonic-gate return (mod_install(&modlinkage)); 18957c478bd9Sstevel@tonic-gate } 18967c478bd9Sstevel@tonic-gate 18977c478bd9Sstevel@tonic-gate int 18987c478bd9Sstevel@tonic-gate _info(struct modinfo *modinfop) 18997c478bd9Sstevel@tonic-gate { 19007c478bd9Sstevel@tonic-gate return (mod_info(&modlinkage, modinfop)); 19017c478bd9Sstevel@tonic-gate } 1902