Blame view

arch/m68k/fpsp040/x_ovfl.S 4.63 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  |
  |	x_ovfl.sa 3.5 7/1/91
  |
  |	fpsp_ovfl --- FPSP handler for overflow exception
  |
  |	Overflow occurs when a floating-point intermediate result is
  |	too large to be represented in a floating-point data register,
  |	or when storing to memory, the contents of a floating-point
  |	data register are too large to be represented in the
  |	destination format.
  |
  | Trap disabled results
  |
  | If the instruction is move_out, then garbage is stored in the
  | destination.  If the instruction is not move_out, then the
  | destination is not affected.  For 68881 compatibility, the
  | following values should be stored at the destination, based
  | on the current rounding mode:
  |
  |  RN	Infinity with the sign of the intermediate result.
  |  RZ	Largest magnitude number, with the sign of the
  |	intermediate result.
  |  RM   For pos overflow, the largest pos number. For neg overflow,
  |	-infinity
  |  RP   For pos overflow, +infinity. For neg overflow, the largest
  |	neg number
  |
  | Trap enabled results
  | All trap disabled code applies.  In addition the exceptional
  | operand needs to be made available to the users exception handler
  | with a bias of $6000 subtracted from the exponent.
  |
  |
  
  |		Copyright (C) Motorola, Inc. 1990
  |			All Rights Reserved
  |
e00d82d07   Matt Waddel   [PATCH] Add wordi...
38
39
  |       For details on the license for this file, please see the
  |       file, README, in this same directory.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  
  X_OVFL:	|idnt    2,1 | Motorola 040 Floating Point Software Package
  
  	|section	8
  
  #include "fpsp.h"
  
  	|xref	ovf_r_x2
  	|xref	ovf_r_x3
  	|xref	store
  	|xref	real_ovfl
  	|xref	real_inex
  	|xref	fpsp_done
  	|xref	g_opcls
  	|xref	b1238_fix
  
  	.global	fpsp_ovfl
  fpsp_ovfl:
  	link		%a6,#-LOCAL_SIZE
  	fsave		-(%a7)
  	moveml		%d0-%d1/%a0-%a1,USER_DA(%a6)
  	fmovemx	%fp0-%fp3,USER_FP0(%a6)
  	fmoveml	%fpcr/%fpsr/%fpiar,USER_FPCR(%a6)
  
  |
  |	The 040 doesn't set the AINEX bit in the FPSR, the following
  |	line temporarily rectifies this error.
  |
  	bsetb	#ainex_bit,FPSR_AEXCEPT(%a6)
  |
  	bsrl	ovf_adj		|denormalize, round & store interm op
  |
  |	if overflow traps not enabled check for inexact exception
  |
  	btstb	#ovfl_bit,FPCR_ENABLE(%a6)
  	beqs	ck_inex
  |
  	btstb		#E3,E_BYTE(%a6)
  	beqs		no_e3_1
  	bfextu		CMDREG3B(%a6){#6:#3},%d0	|get dest reg no
  	bclrb		%d0,FPR_DIRTY_BITS(%a6)	|clr dest dirty bit
  	bsrl		b1238_fix
  	movel		USER_FPSR(%a6),FPSR_SHADOW(%a6)
  	orl		#sx_mask,E_BYTE(%a6)
  no_e3_1:
  	moveml		USER_DA(%a6),%d0-%d1/%a0-%a1
  	fmovemx	USER_FP0(%a6),%fp0-%fp3
  	fmoveml	USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  	frestore	(%a7)+
  	unlk		%a6
  	bral		real_ovfl
  |
  | It is possible to have either inex2 or inex1 exceptions with the
  | ovfl.  If the inex enable bit is set in the FPCR, and either
  | inex2 or inex1 occurred, we must clean up and branch to the
  | real inex handler.
  |
  ck_inex:
  |	move.b		FPCR_ENABLE(%a6),%d0
  |	and.b		FPSR_EXCEPT(%a6),%d0
  |	andi.b		#$3,%d0
  	btstb		#inex2_bit,FPCR_ENABLE(%a6)
  	beqs		ovfl_exit
  |
  | Inexact enabled and reported, and we must take an inexact exception.
  |
  take_inex:
  	btstb		#E3,E_BYTE(%a6)
  	beqs		no_e3_2
  	bfextu		CMDREG3B(%a6){#6:#3},%d0	|get dest reg no
  	bclrb		%d0,FPR_DIRTY_BITS(%a6)	|clr dest dirty bit
  	bsrl		b1238_fix
  	movel		USER_FPSR(%a6),FPSR_SHADOW(%a6)
  	orl		#sx_mask,E_BYTE(%a6)
  no_e3_2:
  	moveb		#INEX_VEC,EXC_VEC+1(%a6)
  	moveml		USER_DA(%a6),%d0-%d1/%a0-%a1
  	fmovemx	USER_FP0(%a6),%fp0-%fp3
  	fmoveml	USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  	frestore	(%a7)+
  	unlk		%a6
  	bral		real_inex
  
  ovfl_exit:
  	bclrb	#E3,E_BYTE(%a6)	|test and clear E3 bit
  	beqs	e1_set
  |
  | Clear dirty bit on dest resister in the frame before branching
  | to b1238_fix.
  |
  	bfextu		CMDREG3B(%a6){#6:#3},%d0	|get dest reg no
  	bclrb		%d0,FPR_DIRTY_BITS(%a6)	|clr dest dirty bit
  	bsrl		b1238_fix		|test for bug1238 case
  
  	movel		USER_FPSR(%a6),FPSR_SHADOW(%a6)
  	orl		#sx_mask,E_BYTE(%a6)
  	moveml		USER_DA(%a6),%d0-%d1/%a0-%a1
  	fmovemx	USER_FP0(%a6),%fp0-%fp3
  	fmoveml	USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  	frestore	(%a7)+
  	unlk		%a6
  	bral		fpsp_done
  e1_set:
  	moveml		USER_DA(%a6),%d0-%d1/%a0-%a1
  	fmovemx	USER_FP0(%a6),%fp0-%fp3
  	fmoveml	USER_FPCR(%a6),%fpcr/%fpsr/%fpiar
  	unlk		%a6
  	bral		fpsp_done
  
  |
  |	ovf_adj
  |
  ovf_adj:
  |
  | Have a0 point to the correct operand.
  |
  	btstb	#E3,E_BYTE(%a6)	|test E3 bit
  	beqs	ovf_e1
  
  	lea	WBTEMP(%a6),%a0
  	bras	ovf_com
  ovf_e1:
  	lea	ETEMP(%a6),%a0
  
  ovf_com:
  	bclrb	#sign_bit,LOCAL_EX(%a0)
  	sne	LOCAL_SGN(%a0)
  
  	bsrl	g_opcls		|returns opclass in d0
  	cmpiw	#3,%d0		|check for opclass3
  	bnes	not_opc011
  
  |
  | FPSR_CC is saved and restored because ovf_r_x3 affects it. The
  | CCs are defined to be 'not affected' for the opclass3 instruction.
  |
  	moveb	FPSR_CC(%a6),L_SCR1(%a6)
  	bsrl	ovf_r_x3	|returns a0 pointing to result
  	moveb	L_SCR1(%a6),FPSR_CC(%a6)
  	bral	store		|stores to memory or register
  
  not_opc011:
  	bsrl	ovf_r_x2	|returns a0 pointing to result
  	bral	store		|stores to memory or register
  
  	|end