* add p cc
[mascara-docs.git] / i386 / linux / linux-2.3.21 / arch / arm / nwfpe / entry26.S
blob6b1ec335440ef66704de5682fd9e32575eda897c
1 /*
2     NetWinder Floating Point Emulator
3     (c) Corel Computer Corporation, 1998
4     (c) Philip Blundell 1998-1999
6     Direct questions, comments to Scott Bambrough <scottb@corelcomputer.com>
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
18     You should have received a copy of the GNU General Public License
19     along with this program; if not, write to the Free Software
20     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "../lib/constants.h"
25 /* This is the kernel's entry point into the floating point emulator.
26 It is called from the kernel with code similar to this:
28         mov     fp, #0
29         teqp    pc, #I_BIT | MODE_SVC
30         ldr     r4, .LC2
31         ldr     pc, [r4]                @ Call FP module USR entry point
33 The kernel expects the emulator to return via one of two possible
34 points of return it passes to the emulator.  The emulator, if
35 successful in its emulation, jumps to ret_from_exception and the
36 kernel takes care of returning control from the trap to the user code.
37 If the emulator is unable to emulate the instruction, it returns to
38 fpundefinstr and the kernel halts the user program with a core dump.
40 This routine does four things:
42 1) It saves SP into a variable called userRegisters.  The kernel has
43 created a struct pt_regs on the stack and saved the user registers
44 into it.  See /usr/include/asm/proc/ptrace.h for details.  The
45 emulator code uses userRegisters as the base of an array of words from
46 which the contents of the registers can be extracted.
48 2) It locates the FP emulator work area within the TSS structure and
49 points `fpa11' to it.
51 3) It calls EmulateAll to emulate a floating point instruction.
52 EmulateAll returns 1 if the emulation was successful, or 0 if not.
54 4) If an instruction has been emulated successfully, it looks ahead at
55 the next instruction.  If it is a floating point instruction, it
56 executes the instruction, without returning to user space.  In this
57 way it repeatedly looks ahead and executes floating point instructions
58 until it encounters a non floating point instruction, at which time it
59 returns via _fpreturn.
61 This is done to reduce the effect of the trap overhead on each
62 floating point instructions.  GCC attempts to group floating point
63 instructions to allow the emulator to spread the cost of the trap over
64 several floating point instructions.  */
66         .globl  nwfpe_enter
67 nwfpe_enter:
68         ldr     r4, =userRegisters
69         str     sp, [r4]                @ save pointer to user regs
71         mov     r10, sp, lsr #13        @ find workspace
72         mov     r10, r10, lsl #13
73         add     r10, r10, #TSS_FPESAVE
75         ldr     r4, =fpa11
76         str     r10, [r4]               @ store pointer to our state
77         mov     r4, sp                  @ use r4 for local pointer
79         ldr     r5, [r4, #60]           @ get contents of PC
80         bic     r5, r5, #0xfc000003
81         ldr     r0, [r5, #-4]           @ get actual instruction into r0
82         bl      EmulateAll              @ emulate the instruction
83 1:      cmp     r0, #0                  @ was emulation successful
84         beq     fpundefinstr            @ no, return failure
86 next:
87         ldrt    r6, [r5], #4            @ get the next instruction and
88                                         @ increment PC
90         and     r2, r6, #0x0F000000     @ test for FP insns
91         teq     r2, #0x0C000000
92         teqne   r2, #0x0D000000
93         teqne   r2, #0x0E000000
94         bne     ret_from_exception      @ return ok if not a fp insn
96         ldr     r9, [r4, #60]           @ get new condition codes
97         and     r9, r9, #0xfc000003
98         orr     r7, r5, r9
99         str     r7, [r4, #60]           @ update PC copy in regs
101         mov     r0, r6                  @ save a copy
102         mov     r1, r9                  @ fetch the condition codes
103         bl      checkCondition          @ check the condition
104         cmp     r0, #0                  @ r0 = 0 ==> condition failed
106         @ if condition code failed to match, next insn
107         beq     next                    @ get the next instruction;
108             
109         mov     r0, r6                  @ prepare for EmulateAll()
110         adr     lr, 1b
111         orr     lr, lr, #3
112         b       EmulateAll              @ if r0 != 0, goto EmulateAll