|
| x_fline.sa 3.3 1/10/91
|
| fpsp_fline --- FPSP handler for fline exception
|
| First determine if the exception is one of the unimplemented
| floating point instructions. If so, let fpsp_unimp handle it.
| Next, determine if the instruction is an fmovecr with a non-zero
| <ea> field. If so, handle here and return. Otherwise, it
| must be a real F-line exception.
|
| Copyright (C) Motorola, Inc. 1990
| All Rights Reserved
|
| For details on the license for this file, please see the
| file, README, in this same directory.
X_FLINE: |idnt 2,1 | Motorola 040 Floating Point Software Package
|section 8
|xref real_fline
|xref fpsp_unimp
|xref uni_2
|xref mem_read
|xref fpsp_fmt_error
.global fpsp_fline
fpsp_fline:
|
| check for unimplemented vector first. Use EXC_VEC-4 because
| the equate is valid only after a 'link a6' has pushed one more
| long onto the stack.
|
cmpw
beql fpsp_unimp
|
| fmovecr with non-zero <ea> handling here
|
subl
| ;between six word frame (unimp) and
| ;four word frame
link %a6,
fsave -(%a7)
moveml %d0-%d1/%a0-%a1,USER_DA(%a6)
moveal EXC_PC+4(%a6),%a0 |get address of fline instruction
leal L_SCR1(%a6),%a1 |use L_SCR1 as scratch
movel
addl
| ;a6 can point correctly to the stack frame
| ;before branching to mem_read
bsrl mem_read
subl
movel L_SCR1(%a6),%d0 |d0 contains the fline and command word
bfextu %d0{
cmpib
bne not_mvcr |exit if not
bfextu %d0{
cmpib
bne not_mvcr
| ;if an FMOVECR instruction, fix stack
| ;and go to FPSP_UNIMP
fix_stack:
cmpib
bnes ck_rev
subl
moveb
moveb
clrw 2(%a7)
bras fix_con
ck_rev:
cmpib
bnel fpsp_fmt_error |if not $40 or $41, exit with error
subl
moveb
moveb
clrw 2(%a7)
fix_con:
movew EXC_SR+4(%a6),EXC_SR(%a6) |move stacked sr to new position
movel EXC_PC+4(%a6),EXC_PC(%a6) |move stacked pc to new position
fmovel EXC_PC(%a6),%FPIAR |point FPIAR to fline inst
movel
addl %d1,EXC_PC(%a6) |increment stacked pc value to next inst
movew
clrl EXC_EA(%a6) |clear the EXC_EA field
movew %d0,CMDREG1B(%a6) |move the lower word into CMDREG1B
clrl E_BYTE(%a6)
bsetb
moveml USER_DA(%a6),%d0-%d1/%a0-%a1 |restore data registers
bral uni_2
not_mvcr:
moveml USER_DA(%a6),%d0-%d1/%a0-%a1 |restore data registers
frestore (%a7)+
unlk %a6
addl
bral real_fline
|end