fpu_emulator.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Definitiona for the Algorithmics FPU Emulator port into MIPS Linux
  3.  */
  4. /**************************************************************************
  5.  *
  6.  *  include/asm-mips/fpu_emulator.h
  7.  *
  8.  *  Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  9.  *  Copyright (C) 2000 MIPS Technologies, Inc.  All rights reserved.
  10.  *
  11.  * ########################################################################
  12.  *
  13.  *  This program is free software; you can distribute it and/or modify it
  14.  *  under the terms of the GNU General Public License (Version 2) as
  15.  *  published by the Free Software Foundation.
  16.  *
  17.  *  This program is distributed in the hope it will be useful, but WITHOUT
  18.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  19.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  20.  *  for more details.
  21.  *
  22.  *  You should have received a copy of the GNU General Public License along
  23.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  24.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  25.  *
  26.  *************************************************************************/
  27. /* 
  28.  * Further private data for which no space exists in mips_fpu_soft_struct.
  29.  * This should be subsumed into the mips_fpu_soft_struct structure as
  30.  * defined in processor.h as soon as the absurd wired absolute assembler
  31.  * offsets become dynamic at compile time.
  32.  */
  33. struct mips_fpu_emulator_private {
  34. unsigned int eir;
  35. struct {
  36. unsigned int emulated;
  37. unsigned int loads;
  38. unsigned int stores;
  39. unsigned int cp1ops;
  40. unsigned int cp1xops;
  41. unsigned int errors;
  42. } stats;
  43. };