i387.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/x86_64/kernel/i387.c
  3.  *
  4.  *  Copyright (C) 1994 Linus Torvalds
  5.  *  Copyright (C) 2002 Andi Kleen, SuSE Labs
  6.  *
  7.  *  Pentium III FXSR, SSE support
  8.  *  General FPU state handling cleanups
  9.  * Gareth Hughes <gareth@valinux.com>, May 2000
  10.  * 
  11.  *  x86-64 rework 2002 Andi Kleen. 
  12.  *  Does direct fxsave in and out of user space now for signal handlers.
  13.  *  All the FSAVE<->FXSAVE conversion code has been moved to the 32bit emulation,
  14.  *  the 64bit user space sees a FXSAVE frame directly. 
  15.  */
  16. #include <linux/config.h>
  17. #include <linux/sched.h>
  18. #include <asm/processor.h>
  19. #include <asm/i387.h>
  20. #include <asm/sigcontext.h>
  21. #include <asm/user.h>
  22. #include <asm/ptrace.h>
  23. #include <asm/uaccess.h>
  24. extern int exception_trace;
  25. /*
  26.  * The _current_ task is using the FPU for the first time
  27.  * so initialize it and set the mxcsr to its default
  28.  * value at reset if we support XMM instructions and then
  29.  * remeber the current task has used the FPU.
  30.  */
  31. void init_fpu(void)
  32. {
  33. struct task_struct *me = current;
  34. memset(&me->thread.i387.fxsave, 0, sizeof(struct i387_fxsave_struct));
  35. me->thread.i387.fxsave.cwd = 0x37f;
  36. me->thread.i387.fxsave.mxcsr = 0x1f80;
  37. me->used_math = 1;
  38. }
  39. /*
  40.  * Signal frame handlers.
  41.  */
  42. int save_i387(struct _fpstate *buf)
  43. {
  44. struct task_struct *tsk = current;
  45. int err = 0;
  46. extern void bad_user_i387_struct(void); 
  47. if (sizeof(struct user_i387_struct) != sizeof(tsk->thread.i387.fxsave))
  48. bad_user_i387_struct();
  49. if (!tsk->used_math) 
  50. return 0; 
  51. tsk->used_math = 0; /* trigger finit */ 
  52. if (tsk->flags & PF_USEDFPU) { 
  53. err = save_i387_checking((struct i387_fxsave_struct *)buf);
  54. if (err) { 
  55. if (exception_trace) 
  56. printk("%s[%d] unaligned signal floating point context %pn", 
  57. tsk->comm, tsk->pid, buf); 
  58. return err;
  59. }
  60. stts();
  61. } else { 
  62. if (__copy_to_user(buf, &tsk->thread.i387.fxsave, 
  63.    sizeof(struct i387_fxsave_struct)))
  64. return -1;
  65. return 1; 
  66. }
  67. /*
  68.  * ptrace request handlers.
  69.  */
  70. int get_fpregs(struct user_i387_struct *buf, struct task_struct *tsk)
  71. {
  72. empty_fpu(tsk);
  73. return __copy_to_user((void *)buf, &tsk->thread.i387.fxsave,
  74.        sizeof(struct user_i387_struct)) ? -EFAULT : 0;
  75. }
  76. int set_fpregs(struct task_struct *tsk, struct user_i387_struct *buf)
  77. {
  78. if (__copy_from_user(&tsk->thread.i387.fxsave, buf, 
  79.      sizeof(struct user_i387_struct)))
  80. return -EFAULT;
  81. /* mxcsr bit 6 and 31-16 must be zero for security reasons. */
  82. tsk->thread.i387.fxsave.mxcsr &= 0xffbf;
  83. return 0;
  84. }
  85. /*
  86.  * FPU state for core dumps.
  87.  */
  88. int dump_fpu( struct pt_regs *regs, struct user_i387_struct *fpu )
  89. {
  90. struct task_struct *tsk = current;
  91. if (!tsk->used_math) 
  92. return 0;
  93. unlazy_fpu(tsk);
  94. memcpy(fpu, &tsk->thread.i387.fxsave, sizeof(struct user_i387_struct)); 
  95. return 1; 
  96. }