cregit-Linux how code gets into the kernel

Release 4.11 arch/arm/nwfpe/fpa11_cpdt.c

Directory: arch/arm/nwfpe
/*
    NetWinder Floating Point Emulator
    (c) Rebel.com, 1998-1999
    (c) Philip Blundell, 1998, 2001

    Direct questions, comments to Scott Bambrough <scottb@netwinder.org>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "fpa11.h"
#include "softfloat.h"
#include "fpopcode.h"
#include "fpmodule.h"
#include "fpmodule.inl"

#include <linux/uaccess.h>


static inline void loadSingle(const unsigned int Fn, const unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); fpa11->fType[Fn] = typeSingle; get_user(fpa11->fpreg[Fn].fSingle, pMem); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)3979.59%250.00%
Linus Torvalds918.37%125.00%
Russell King12.04%125.00%
Total49100.00%4100.00%


static inline void loadDouble(const unsigned int Fn, const unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); unsigned int *p; p = (unsigned int *) &fpa11->fpreg[Fn].fDouble; fpa11->fType[Fn] = typeDouble; #ifdef __ARMEB__ get_user(p[0], &pMem[0]); /* sign & exponent */ get_user(p[1], &pMem[1]); #else get_user(p[0], &pMem[1]); get_user(p[1], &pMem[0]); /* sign & exponent */ #endif }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)7662.30%240.00%
Lennert Buytenhek3629.51%120.00%
Linus Torvalds97.38%120.00%
Russell King10.82%120.00%
Total122100.00%5100.00%

#ifdef CONFIG_FPE_NWFPE_XP
static inline void loadExtended(const unsigned int Fn, const unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); unsigned int *p; p = (unsigned int *) &fpa11->fpreg[Fn].fExtended; fpa11->fType[Fn] = typeExtended; get_user(p[0], &pMem[0]); /* sign & exponent */ #ifdef __ARMEB__ get_user(p[1], &pMem[1]); /* ms bits */ get_user(p[2], &pMem[2]); /* ls bits */ #else get_user(p[1], &pMem[2]); /* ls bits */ get_user(p[2], &pMem[1]); /* ms bits */ #endif }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)9266.19%240.00%
Lennert Buytenhek3726.62%120.00%
Linus Torvalds96.47%120.00%
Russell King10.72%120.00%
Total139100.00%5100.00%

#endif
static inline void loadMultiple(const unsigned int Fn, const unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); register unsigned int *p; unsigned long x; p = (unsigned int *) &(fpa11->fpreg[Fn]); get_user(x, &pMem[0]); fpa11->fType[Fn] = (x >> 14) & 0x00000003; switch (fpa11->fType[Fn]) { case typeSingle: case typeDouble: { get_user(p[0], &pMem[2]); /* Single */ get_user(p[1], &pMem[1]); /* double msw */ p[2] = 0; /* empty */ } break; #ifdef CONFIG_FPE_NWFPE_XP case typeExtended: { get_user(p[1], &pMem[2]); get_user(p[2], &pMem[1]); /* msw */ p[0] = (x & 0x80003fff); } break; #endif } }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)17392.02%240.00%
Linus Torvalds94.79%120.00%
Ralph Siemsen52.66%120.00%
Russell King10.53%120.00%
Total188100.00%5100.00%


static inline void storeSingle(struct roundingData *roundData, const unsigned int Fn, unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); union { float32 f; unsigned int i[1]; } val; switch (fpa11->fType[Fn]) { case typeDouble: val.f = float64_to_float32(roundData, fpa11->fpreg[Fn].fDouble); break; #ifdef CONFIG_FPE_NWFPE_XP case typeExtended: val.f = floatx80_to_float32(roundData, fpa11->fpreg[Fn].fExtended); break; #endif default: val.f = fpa11->fpreg[Fn].fSingle; } put_user(val.i[0], pMem); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)8867.18%228.57%
Linus Torvalds2821.37%228.57%
Richard Purdie96.87%114.29%
Ralph Siemsen53.82%114.29%
Russell King10.76%114.29%
Total131100.00%7100.00%


static inline void storeDouble(struct roundingData *roundData, const unsigned int Fn, unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); union { float64 f; unsigned int i[2]; } val; switch (fpa11->fType[Fn]) { case typeSingle: val.f = float32_to_float64(fpa11->fpreg[Fn].fSingle); break; #ifdef CONFIG_FPE_NWFPE_XP case typeExtended: val.f = floatx80_to_float64(roundData, fpa11->fpreg[Fn].fExtended); break; #endif default: val.f = fpa11->fpreg[Fn].fDouble; } #ifdef __ARMEB__ put_user(val.i[0], &pMem[0]); /* msw */ put_user(val.i[1], &pMem[1]); /* lsw */ #else put_user(val.i[1], &pMem[0]); /* msw */ put_user(val.i[0], &pMem[1]); /* lsw */ #endif }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)10755.73%225.00%
Lennert Buytenhek4121.35%112.50%
Linus Torvalds3116.15%225.00%
Richard Purdie73.65%112.50%
Ralph Siemsen52.60%112.50%
Russell King10.52%112.50%
Total192100.00%8100.00%

#ifdef CONFIG_FPE_NWFPE_XP
static inline void storeExtended(const unsigned int Fn, unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); union { floatx80 f; unsigned int i[3]; } val; switch (fpa11->fType[Fn]) { case typeSingle: val.f = float32_to_floatx80(fpa11->fpreg[Fn].fSingle); break; case typeDouble: val.f = float64_to_floatx80(fpa11->fpreg[Fn].fDouble); break; default: val.f = fpa11->fpreg[Fn].fExtended; } put_user(val.i[0], &pMem[0]); /* sign & exp */ #ifdef __ARMEB__ put_user(val.i[1], &pMem[1]); /* msw */ put_user(val.i[2], &pMem[2]); #else put_user(val.i[1], &pMem[2]); put_user(val.i[2], &pMem[1]); /* msw */ #endif }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)12061.54%233.33%
Lennert Buytenhek4020.51%116.67%
Linus Torvalds3417.44%233.33%
Russell King10.51%116.67%
Total195100.00%6100.00%

#endif
static inline void storeMultiple(const unsigned int Fn, unsigned int __user *pMem) { FPA11 *fpa11 = GET_FPA11(); register unsigned int nType, *p; p = (unsigned int *) &(fpa11->fpreg[Fn]); nType = fpa11->fType[Fn]; switch (nType) { case typeSingle: case typeDouble: { put_user(p[0], &pMem[2]); /* single */ put_user(p[1], &pMem[1]); /* double msw */ put_user(nType << 14, &pMem[0]); } break; #ifdef CONFIG_FPE_NWFPE_XP case typeExtended: { put_user(p[2], &pMem[1]); /* msw */ put_user(p[1], &pMem[2]); put_user((p[0] & 0x80003fff) | (nType << 14), &pMem[0]); } break; #endif } }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)16691.71%240.00%
Linus Torvalds94.97%120.00%
Ralph Siemsen52.76%120.00%
Russell King10.55%120.00%
Total181100.00%5100.00%


unsigned int PerformLDF(const unsigned int opcode) { unsigned int __user *pBase, *pAddress, *pFinal; unsigned int nRc = 1, write_back = WRITE_BACK(opcode); pBase = (unsigned int __user *) readRegister(getRn(opcode)); if (REG_PC == getRn(opcode)) { pBase += 2; write_back = 0; } pFinal = pBase; if (BIT_UP_SET(opcode)) pFinal += getOffset(opcode); else pFinal -= getOffset(opcode); if (PREINDEXED(opcode)) pAddress = pFinal; else pAddress = pBase; switch (opcode & MASK_TRANSFER_LENGTH) { case TRANSFER_SINGLE: loadSingle(getFd(opcode), pAddress); break; case TRANSFER_DOUBLE: loadDouble(getFd(opcode), pAddress); break; #ifdef CONFIG_FPE_NWFPE_XP case TRANSFER_EXTENDED: loadExtended(getFd(opcode), pAddress); break; #endif default: nRc = 0; } if (write_back) writeRegister(getRn(opcode), (unsigned long) pFinal); return nRc; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)18394.33%250.00%
Russell King63.09%125.00%
Ralph Siemsen52.58%125.00%
Total194100.00%4100.00%


unsigned int PerformSTF(const unsigned int opcode) { unsigned int __user *pBase, *pAddress, *pFinal; unsigned int nRc = 1, write_back = WRITE_BACK(opcode); struct roundingData roundData; roundData.mode = SetRoundingMode(opcode); roundData.precision = SetRoundingPrecision(opcode); roundData.exception = 0; pBase = (unsigned int __user *) readRegister(getRn(opcode)); if (REG_PC == getRn(opcode)) { pBase += 2; write_back = 0; } pFinal = pBase; if (BIT_UP_SET(opcode)) pFinal += getOffset(opcode); else pFinal -= getOffset(opcode); if (PREINDEXED(opcode)) pAddress = pFinal; else pAddress = pBase; switch (opcode & MASK_TRANSFER_LENGTH) { case TRANSFER_SINGLE: storeSingle(&roundData, getFd(opcode), pAddress); break; case TRANSFER_DOUBLE: storeDouble(&roundData, getFd(opcode), pAddress); break; #ifdef CONFIG_FPE_NWFPE_XP case TRANSFER_EXTENDED: storeExtended(getFd(opcode), pAddress); break; #endif default: nRc = 0; } if (roundData.exception) float_raise(roundData.exception); if (write_back) writeRegister(getRn(opcode), (unsigned long) pFinal); return nRc; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)18777.59%240.00%
Richard Purdie4317.84%120.00%
Russell King62.49%120.00%
Ralph Siemsen52.07%120.00%
Total241100.00%5100.00%


unsigned int PerformLFM(const unsigned int opcode) { unsigned int __user *pBase, *pAddress, *pFinal; unsigned int i, Fd, write_back = WRITE_BACK(opcode); pBase = (unsigned int __user *) readRegister(getRn(opcode)); if (REG_PC == getRn(opcode)) { pBase += 2; write_back = 0; } pFinal = pBase; if (BIT_UP_SET(opcode)) pFinal += getOffset(opcode); else pFinal -= getOffset(opcode); if (PREINDEXED(opcode)) pAddress = pFinal; else pAddress = pBase; Fd = getFd(opcode); for (i = getRegisterCount(opcode); i > 0; i--) { loadMultiple(Fd, pAddress); pAddress += 3; Fd++; if (Fd == 8) Fd = 0; } if (write_back) writeRegister(getRn(opcode), (unsigned long) pFinal); return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)17495.08%266.67%
Russell King94.92%133.33%
Total183100.00%3100.00%


unsigned int PerformSFM(const unsigned int opcode) { unsigned int __user *pBase, *pAddress, *pFinal; unsigned int i, Fd, write_back = WRITE_BACK(opcode); pBase = (unsigned int __user *) readRegister(getRn(opcode)); if (REG_PC == getRn(opcode)) { pBase += 2; write_back = 0; } pFinal = pBase; if (BIT_UP_SET(opcode)) pFinal += getOffset(opcode); else pFinal -= getOffset(opcode); if (PREINDEXED(opcode)) pAddress = pFinal; else pAddress = pBase; Fd = getFd(opcode); for (i = getRegisterCount(opcode); i > 0; i--) { storeMultiple(Fd, pAddress); pAddress += 3; Fd++; if (Fd == 8) Fd = 0; } if (write_back) writeRegister(getRn(opcode), (unsigned long) pFinal); return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)17495.08%266.67%
Russell King94.92%133.33%
Total183100.00%3100.00%


unsigned int EmulateCPDT(const unsigned int opcode) { unsigned int nRc = 0; if (LDF_OP(opcode)) { nRc = PerformLDF(opcode); } else if (LFM_OP(opcode)) { nRc = PerformLFM(opcode); } else if (STF_OP(opcode)) { nRc = PerformSTF(opcode); } else if (SFM_OP(opcode)) { nRc = PerformSFM(opcode); } else { nRc = 0; } return nRc; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)94100.00%1100.00%
Total94100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)168679.49%216.67%
Lennert Buytenhek1547.26%216.67%
Linus Torvalds1386.51%216.67%
Richard Purdie592.78%18.33%
Russell King432.03%433.33%
Ralph Siemsen411.93%18.33%
Total2121100.00%12100.00%
Directory: arch/arm/nwfpe
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.