Searched refs:fpa11 (Results 1 - 9 of 9) sorted by relevance

/linux-master/arch/arm/nwfpe/
H A Dfpa11.inl22 #include "fpa11.h"
27 FPA11 *fpa11 = GET_FPA11();
28 return (fpa11->fpsr);
33 FPA11 *fpa11 = GET_FPA11();
35 fpa11->fpsr = (fpa11->fpsr & MASK_SYSID) | (reg & ~MASK_SYSID);
41 FPA11 *fpa11 = GET_FPA11();
43 return (fpa11->fpcr & ~MASK_RFC);
48 FPA11 *fpa11 = GET_FPA11();
49 fpa11
[all...]
H A Dfpa11_cprt.c11 #include "fpa11.h"
13 #include "fpa11.inl"
59 FPA11 *fpa11 = GET_FPA11(); local
69 fpa11->fType[getFn(opcode)] = typeSingle;
70 fpa11->fpreg[getFn(opcode)].fSingle = int32_to_float32(&roundData, readRegister(getRd(opcode)));
76 fpa11->fType[getFn(opcode)] = typeDouble;
77 fpa11->fpreg[getFn(opcode)].fDouble = int32_to_float64(readRegister(getRd(opcode)));
84 fpa11->fType[getFn(opcode)] = typeExtended;
85 fpa11->fpreg[getFn(opcode)].fExtended = int32_to_floatx80(readRegister(getRd(opcode)));
102 FPA11 *fpa11 local
144 FPA11 *fpa11 = GET_FPA11(); local
[all...]
H A Dfpa11.c11 #include "fpa11.h"
24 FPA11 *fpa11 = GET_FPA11(); local
28 fpa11->fType[i] = typeNone;
32 fpa11->fpsr = FP_EMULATOR | BIT_AC;
75 FPA11 *fpa11 = (FPA11 *)fp; local
79 memset(fpa11, 0, sizeof(FPA11));
81 fpa11->initflag = 1;
H A Dfpa11_cpdt.c11 #include "fpa11.h"
21 FPA11 *fpa11 = GET_FPA11(); local
22 fpa11->fType[Fn] = typeSingle;
23 get_user(fpa11->fpreg[Fn].fSingle, pMem);
28 FPA11 *fpa11 = GET_FPA11(); local
30 p = (unsigned int *) &fpa11->fpreg[Fn].fDouble;
31 fpa11->fType[Fn] = typeDouble;
44 FPA11 *fpa11 = GET_FPA11(); local
46 p = (unsigned int *) &fpa11->fpreg[Fn].fExtended;
47 fpa11
61 FPA11 *fpa11 = GET_FPA11(); local
93 FPA11 *fpa11 = GET_FPA11(); local
119 FPA11 *fpa11 = GET_FPA11(); local
152 FPA11 *fpa11 = GET_FPA11(); local
184 FPA11 *fpa11 = GET_FPA11(); local
[all...]
H A Dfpa11_cpdo.c11 #include "fpa11.h"
20 FPA11 *fpa11 = GET_FPA11(); local
43 nType = fpa11->fType[getFn(opcode)];
47 if (nType < fpa11->fType[Fm]) {
48 nType = fpa11->fType[Fm];
52 rFd = &fpa11->fpreg[getFd(opcode)];
78 fpa11->fType[getFd(opcode)] = nDest;
H A Dextended_cpdo.c10 #include "fpa11.h"
80 FPA11 *fpa11 = GET_FPA11(); local
88 switch (fpa11->fType[Fm]) {
90 rFm = float32_to_floatx80(fpa11->fpreg[Fm].fSingle);
94 rFm = float64_to_floatx80(fpa11->fpreg[Fm].fDouble);
98 rFm = fpa11->fpreg[Fm].fExtended;
111 switch (fpa11->fType[Fn]) {
113 rFn = float32_to_floatx80(fpa11->fpreg[Fn].fSingle);
117 rFn = float64_to_floatx80(fpa11->fpreg[Fn].fDouble);
121 rFn = fpa11
[all...]
H A DMakefile8 nwfpe-y += fpa11.o fpa11_cpdo.o fpa11_cpdt.o \
H A Dsingle_cpdo.c11 #include "fpa11.h"
78 FPA11 *fpa11 = GET_FPA11(); local
85 } else if (fpa11->fType[Fm] == typeSingle) {
86 rFm = fpa11->fpreg[Fm].fSingle;
96 if (fpa11->fType[Fn] == typeSingle &&
98 rFn = fpa11->fpreg[Fn].fSingle;
H A Ddouble_cpdo.c10 #include "fpa11.h"
101 FPA11 *fpa11 = GET_FPA11(); local
109 switch (fpa11->fType[Fm]) {
111 rFm = float32_to_float64(fpa11->fpreg[Fm].fSingle);
115 rFm = fpa11->fpreg[Fm].fDouble;
128 switch (fpa11->fType[Fn]) {
130 rFn = float32_to_float64(fpa11->fpreg[Fn].fSingle);
134 rFn = fpa11->fpreg[Fn].fDouble;

Completed in 106 milliseconds