1 1.2 cgd * $NetBSD: x_unsupp.sa,v 1.2 1994/10/26 07:50:33 cgd Exp $ 2 1.2 cgd 3 1.1 mycroft * MOTOROLA MICROPROCESSOR & MEMORY TECHNOLOGY GROUP 4 1.1 mycroft * M68000 Hi-Performance Microprocessor Division 5 1.1 mycroft * M68040 Software Package 6 1.1 mycroft * 7 1.1 mycroft * M68040 Software Package Copyright (c) 1993, 1994 Motorola Inc. 8 1.1 mycroft * All rights reserved. 9 1.1 mycroft * 10 1.1 mycroft * THE SOFTWARE is provided on an "AS IS" basis and without warranty. 11 1.1 mycroft * To the maximum extent permitted by applicable law, 12 1.1 mycroft * MOTOROLA DISCLAIMS ALL WARRANTIES WHETHER EXPRESS OR IMPLIED, 13 1.1 mycroft * INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A 14 1.1 mycroft * PARTICULAR PURPOSE and any warranty against infringement with 15 1.1 mycroft * regard to the SOFTWARE (INCLUDING ANY MODIFIED VERSIONS THEREOF) 16 1.1 mycroft * and any accompanying written materials. 17 1.1 mycroft * 18 1.1 mycroft * To the maximum extent permitted by applicable law, 19 1.1 mycroft * IN NO EVENT SHALL MOTOROLA BE LIABLE FOR ANY DAMAGES WHATSOEVER 20 1.1 mycroft * (INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS 21 1.1 mycroft * PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR 22 1.1 mycroft * OTHER PECUNIARY LOSS) ARISING OF THE USE OR INABILITY TO USE THE 23 1.1 mycroft * SOFTWARE. Motorola assumes no responsibility for the maintenance 24 1.1 mycroft * and support of the SOFTWARE. 25 1.1 mycroft * 26 1.1 mycroft * You are hereby granted a copyright license to use, modify, and 27 1.1 mycroft * distribute the SOFTWARE so long as this entire notice is retained 28 1.1 mycroft * without alteration in any modified and/or redistributed versions, 29 1.1 mycroft * and that such modified versions are clearly identified as such. 30 1.1 mycroft * No licenses are granted by implication, estoppel or otherwise 31 1.1 mycroft * under any patents or trademarks of Motorola, Inc. 32 1.1 mycroft 33 1.1 mycroft * 34 1.1 mycroft * x_unsupp.sa 3.3 7/1/91 35 1.1 mycroft * 36 1.1 mycroft * fpsp_unsupp --- FPSP handler for unsupported data type exception 37 1.1 mycroft * 38 1.1 mycroft * Trap vector #55 (See table 8-1 Mc68030 User's manual). 39 1.1 mycroft * Invoked when the user program encounters a data format (packed) that 40 1.1 mycroft * hardware does not support or a data type (denormalized numbers or un- 41 1.1 mycroft * normalized numbers). 42 1.1 mycroft * Normalizes denorms and unnorms, unpacks packed numbers then stores 43 1.1 mycroft * them back into the machine to let the 040 finish the operation. 44 1.1 mycroft * 45 1.1 mycroft * Unsupp calls two routines: 46 1.1 mycroft * 1. get_op - gets the operand(s) 47 1.1 mycroft * 2. res_func - restore the function back into the 040 or 48 1.1 mycroft * if fmove.p fpm,<ea> then pack source (fpm) 49 1.1 mycroft * and store in users memory <ea>. 50 1.1 mycroft * 51 1.1 mycroft * Input: Long fsave stack frame 52 1.1 mycroft * 53 1.1 mycroft 54 1.1 mycroft X_UNSUPP IDNT 2,1 Motorola 040 Floating Point Software Package 55 1.1 mycroft 56 1.1 mycroft section 8 57 1.1 mycroft 58 1.1 mycroft include fpsp.h 59 1.1 mycroft 60 1.1 mycroft xref get_op 61 1.1 mycroft xref res_func 62 1.1 mycroft xref gen_except 63 1.1 mycroft xref fpsp_fmt_error 64 1.1 mycroft 65 1.1 mycroft xdef fpsp_unsupp 66 1.1 mycroft fpsp_unsupp: 67 1.1 mycroft * 68 1.1 mycroft link a6,#-LOCAL_SIZE 69 1.1 mycroft fsave -(a7) 70 1.1 mycroft movem.l d0-d1/a0-a1,USER_DA(a6) 71 1.1 mycroft fmovem.x fp0-fp3,USER_FP0(a6) 72 1.1 mycroft fmovem.l fpcr/fpsr/fpiar,USER_FPCR(a6) 73 1.1 mycroft 74 1.1 mycroft 75 1.1 mycroft move.b (a7),VER_TMP(a6) ;save version number 76 1.1 mycroft move.b (a7),d0 ;test for valid version num 77 1.1 mycroft andi.b #$f0,d0 ;test for $4x 78 1.1 mycroft cmpi.b #VER_4,d0 ;must be $4x or exit 79 1.1 mycroft bne.l fpsp_fmt_error 80 1.1 mycroft 81 1.1 mycroft fmove.l #0,FPSR ;clear all user status bits 82 1.1 mycroft fmove.l #0,FPCR ;clear all user control bits 83 1.1 mycroft * 84 1.1 mycroft * The following lines are used to ensure that the FPSR 85 1.1 mycroft * exception byte and condition codes are clear before proceeding, 86 1.1 mycroft * except in the case of fmove, which leaves the cc's intact. 87 1.1 mycroft * 88 1.1 mycroft unsupp_con: 89 1.1 mycroft move.l USER_FPSR(a6),d1 90 1.1 mycroft btst #5,CMDREG1B(a6) ;looking for fmove out 91 1.1 mycroft bne fmove_con 92 1.1 mycroft and.l #$FF00FF,d1 ;clear all but aexcs and qbyte 93 1.1 mycroft bra.b end_fix 94 1.1 mycroft fmove_con: 95 1.1 mycroft and.l #$0FFF40FF,d1 ;clear all but cc's, snan bit, aexcs, and qbyte 96 1.1 mycroft end_fix: 97 1.1 mycroft move.l d1,USER_FPSR(a6) 98 1.1 mycroft 99 1.1 mycroft st UFLG_TMP(a6) ;set flag for unsupp data 100 1.1 mycroft 101 1.1 mycroft bsr.l get_op ;everything okay, go get operand(s) 102 1.1 mycroft bsr.l res_func ;fix up stack frame so can restore it 103 1.1 mycroft clr.l -(a7) 104 1.1 mycroft move.b VER_TMP(a6),(a7) ;move idle fmt word to top of stack 105 1.1 mycroft bra.l gen_except 106 1.1 mycroft * 107 1.1 mycroft end 108