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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* windows.c: Routines to deal with register window management
  2.  *            at the C-code level.
  3.  *
  4.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #include <linux/kernel.h>
  7. #include <linux/sched.h>
  8. #include <linux/string.h>
  9. #include <linux/mm.h>
  10. #include <linux/smp.h>
  11. #include <linux/smp_lock.h>
  12. #include <asm/uaccess.h>
  13. /* Do save's until all user register windows are out of the cpu. */
  14. void flush_user_windows(void)
  15. {
  16. register int ctr asm("g5");
  17. ctr = 0;
  18. __asm__ __volatile__(
  19. "n1:nt"
  20. "ld [%%g6 + %2], %%g4nt"
  21. "orcc %%g0, %%g4, %%g0nt"
  22. "add %0, 1, %0nt"
  23. "bne 1bnt"
  24. " save %%sp, -64, %%spn"
  25. "2:nt"
  26. "subcc %0, 1, %0nt"
  27. "bne 2bnt"
  28. " restore %%g0, %%g0, %%g0n"
  29. : "=&r" (ctr)
  30. : "0" (ctr),
  31.   "i" ((const unsigned long)(&(((struct task_struct *)0)->thread.uwinmask)))
  32. : "g4", "cc");
  33. }
  34. static inline void shift_window_buffer(int first_win, int last_win, struct thread_struct *tp)
  35. {
  36. int i;
  37. for(i = first_win; i < last_win; i++) {
  38. tp->rwbuf_stkptrs[i] = tp->rwbuf_stkptrs[i+1];
  39. memcpy(&tp->reg_window[i], &tp->reg_window[i+1], sizeof(struct reg_window));
  40. }
  41. }
  42. /* Place as many of the user's current register windows 
  43.  * on the stack that we can.  Even if the %sp is unaligned
  44.  * we still copy the window there, the only case that we don't
  45.  * succeed is if the %sp points to a bum mapping altogether.
  46.  * setup_frame() and do_sigreturn() use this before shifting
  47.  * the user stack around.  Future instruction and hardware
  48.  * bug workaround routines will need this functionality as
  49.  * well.
  50.  */
  51. void synchronize_user_stack(void)
  52. {
  53. struct thread_struct *tp;
  54. int window;
  55. flush_user_windows();
  56. tp = &current->thread;
  57. if(!tp->w_saved)
  58. return;
  59. /* Ok, there is some dirty work to do. */
  60. for(window = tp->w_saved - 1; window >= 0; window--) {
  61. unsigned long sp = tp->rwbuf_stkptrs[window];
  62. /* Ok, let it rip. */
  63. if(copy_to_user((char *) sp, &tp->reg_window[window],
  64. sizeof(struct reg_window)))
  65. continue;
  66. shift_window_buffer(window, tp->w_saved - 1, tp);
  67. tp->w_saved--;
  68. }
  69. }
  70. #if 0
  71. /* An optimization. */
  72. static inline void copy_aligned_window(void *dest, const void *src)
  73. {
  74. __asm__ __volatile__("ldd [%1], %%g2nt"
  75.      "ldd [%1 + 0x8], %%g4nt"
  76.      "std %%g2, [%0]nt"
  77.      "std %%g4, [%0 + 0x8]nt"
  78.      "ldd [%1 + 0x10], %%g2nt"
  79.      "ldd [%1 + 0x18], %%g4nt"
  80.      "std %%g2, [%0 + 0x10]nt"
  81.      "std %%g4, [%0 + 0x18]nt"
  82.      "ldd [%1 + 0x20], %%g2nt"
  83.      "ldd [%1 + 0x28], %%g4nt"
  84.      "std %%g2, [%0 + 0x20]nt"
  85.      "std %%g4, [%0 + 0x28]nt"
  86.      "ldd [%1 + 0x30], %%g2nt"
  87.      "ldd [%1 + 0x38], %%g4nt"
  88.      "std %%g2, [%0 + 0x30]nt"
  89.      "std %%g4, [%0 + 0x38]nt" : :
  90.      "r" (dest), "r" (src) :
  91.      "g2", "g3", "g4", "g5");
  92. }
  93. #endif
  94. /* Try to push the windows in a threads window buffer to the
  95.  * user stack.  Unaligned %sp's are not allowed here.
  96.  */
  97. void try_to_clear_window_buffer(struct pt_regs *regs, int who)
  98. {
  99. struct thread_struct *tp;
  100. int window;
  101. lock_kernel();
  102. flush_user_windows();
  103. tp = &current->thread;
  104. for(window = 0; window < tp->w_saved; window++) {
  105. unsigned long sp = tp->rwbuf_stkptrs[window];
  106. if((sp & 7) ||
  107.    copy_to_user((char *) sp, &tp->reg_window[window], REGWIN_SZ))
  108. do_exit(SIGILL);
  109. }
  110. tp->w_saved = 0;
  111. unlock_kernel();
  112. }