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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Kernel exception handling table support.  Derived from arch/alpha/mm/extable.c.
  3.  *
  4.  * Copyright (C) 1998, 1999, 2001 Hewlett-Packard Co
  5.  * Copyright (C) 1998, 1999, 2001 David Mosberger-Tang <davidm@hpl.hp.com>
  6.  */
  7. #include <linux/config.h>
  8. #include <asm/uaccess.h>
  9. #include <asm/module.h>
  10. extern const struct exception_table_entry __start___ex_table[];
  11. extern const struct exception_table_entry __stop___ex_table[];
  12. static inline const struct exception_table_entry *
  13. search_one_table (const struct exception_table_entry *first,
  14.   const struct exception_table_entry *last,
  15.   unsigned long ip, unsigned long gp)
  16. {
  17.         while (first <= last) {
  18. const struct exception_table_entry *mid;
  19. long diff;
  20. mid = &first[(last - first)/2];
  21. diff = (mid->addr + gp) - ip;
  22.                 if (diff == 0)
  23.                         return mid;
  24.                 else if (diff < 0)
  25.                         first = mid + 1;
  26.                 else
  27.                         last = mid - 1;
  28.         }
  29.         return 0;
  30. }
  31. #ifndef CONFIG_MODULES
  32. register unsigned long main_gp __asm__("gp");
  33. #endif
  34. struct exception_fixup
  35. search_exception_table (unsigned long addr)
  36. {
  37. const struct exception_table_entry *entry;
  38. struct exception_fixup fix = { 0 };
  39. #ifndef CONFIG_MODULES
  40. /* There is only the kernel to search.  */
  41. entry = search_one_table(__start___ex_table, __stop___ex_table - 1, addr, main_gp);
  42. if (entry)
  43. fix.cont = entry->cont + main_gp;
  44. return fix;
  45. #else
  46. struct archdata *archdata;
  47. struct module *mp;
  48. /* The kernel is the last "module" -- no need to treat it special. */
  49. for (mp = module_list; mp ; mp = mp->next) {
  50. if (!mp->ex_table_start)
  51. continue;
  52. archdata = (struct archdata *) mp->archdata_start;
  53. entry = search_one_table(mp->ex_table_start, mp->ex_table_end - 1,
  54.  addr, (unsigned long) archdata->gp);
  55. if (entry) {
  56. fix.cont = entry->cont + (unsigned long) archdata->gp;
  57. return fix;
  58. }
  59. }
  60. #endif
  61. return fix;
  62. }
  63. void
  64. handle_exception (struct pt_regs *regs, struct exception_fixup fix)
  65. {
  66. regs->r8 = -EFAULT;
  67. if (fix.cont & 4)
  68. regs->r9 = 0;
  69. regs->cr_iip = (long) fix.cont & ~0xf;
  70. ia64_psr(regs)->ri = fix.cont & 0x3; /* set continuation slot number */
  71. }