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

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/kernel.h>
  2. #include <asm/system.h>
  3. typedef unsigned int instr;
  4. #define MAJOR_OP 0xfc000000
  5. #define LDA_OP 0x20000000
  6. #define STQ_OP 0xb4000000
  7. #define BR_OP 0xc0000000
  8. #define STK_ALLOC_1 0x23de8000 /* lda $30,-X($30) */
  9. #define STK_ALLOC_1M 0xffff8000
  10. #define STK_ALLOC_2 0x43c0153e /* subq $30,X,$30 */
  11. #define STK_ALLOC_2M 0xffe01fff
  12. #define MEM_REG 0x03e00000
  13. #define MEM_BASE 0x001f0000
  14. #define MEM_OFF 0x0000ffff
  15. #define MEM_OFF_SIGN 0x00008000
  16. #define BASE_SP 0x001e0000
  17. #define STK_ALLOC_MATCH(INSTR)
  18.   (((INSTR) & STK_ALLOC_1M) == STK_ALLOC_1
  19.    || ((INSTR) & STK_ALLOC_2M) == STK_ALLOC_2)
  20. #define STK_PUSH_MATCH(INSTR) 
  21.   (((INSTR) & (MAJOR_OP | MEM_BASE | MEM_OFF_SIGN)) == (STQ_OP | BASE_SP))
  22. #define MEM_OP_OFFSET(INSTR) 
  23.   (((long)((INSTR) & MEM_OFF) << 48) >> 48)
  24. #define MEM_OP_REG(INSTR) 
  25.   (((INSTR) & MEM_REG) >> 22)
  26. /* Branches, jumps, PAL calls, and illegal opcodes end a basic block. */
  27. #define BB_END(INSTR)
  28.   (((instr)(INSTR) >= BR_OP) | ((instr)(INSTR) < LDA_OP) |
  29.    ((((instr)(INSTR) ^ 0x60000000) < 0x20000000) &
  30.     (((instr)(INSTR) & 0x0c000000) != 0)))
  31. #define IS_KERNEL_TEXT(PC) ((unsigned long)(PC) > START_ADDR)
  32. static char reg_name[][4] = {
  33. "v0 ", "t0 ", "t1 ", "t2 ", "t3 ", "t4 ", "t5 ", "t6 ", "t7 ",
  34. "s0 ", "s1 ", "s2 ", "s3 ", "s4 ", "s5 ", "s6 ", "a0 ", "a1 ",
  35. "a2 ", "a3 ", "a4 ", "a5 ", "t8 ", "t9 ", "t10", "t11", "ra ",
  36. "pv ", "at ", "gp ", "sp ", "0"
  37. };
  38. static instr *
  39. display_stored_regs(instr * pro_pc, unsigned char * sp)
  40. {
  41. instr * ret_pc = 0;
  42. int reg;
  43. unsigned long value;
  44. printk("Prologue [<%p>], Frame %p:n", pro_pc, sp);
  45. while (!BB_END(*pro_pc))
  46. if (STK_PUSH_MATCH(*pro_pc)) {
  47. reg = (*pro_pc & MEM_REG) >> 21;
  48. value = *(unsigned long *)(sp + (*pro_pc & MEM_OFF));
  49. if (reg == 26)
  50. ret_pc = (instr *)value;
  51. printk("tt%s / 0x%016lxn", reg_name[reg], value);
  52. }
  53. return ret_pc;
  54. }
  55. static instr *
  56. seek_prologue(instr * pc)
  57. {
  58. while (!STK_ALLOC_MATCH(*pc))
  59. --pc;
  60. while (!BB_END(*(pc - 1)))
  61. --pc;
  62. return pc;
  63. }
  64. static long
  65. stack_increment(instr * prologue_pc)
  66. {
  67. while (!STK_ALLOC_MATCH(*prologue_pc))
  68. ++prologue_pc;
  69. /* Count the bytes allocated. */
  70. if ((*prologue_pc & STK_ALLOC_1M) == STK_ALLOC_1M)
  71. return -(((long)(*prologue_pc) << 48) >> 48);
  72. else
  73. return (*prologue_pc >> 13) & 0xff;
  74. }
  75. void
  76. stacktrace(void)
  77. {
  78. instr * ret_pc;
  79. instr * prologue = (instr *)stacktrace;
  80. register unsigned char * sp __asm__ ("$30");
  81. printk("tstack trace:n");
  82. do {
  83. ret_pc = display_stored_regs(prologue, sp);
  84. sp += stack_increment(prologue);
  85. prologue = seek_prologue(ret_pc);
  86. } while (IS_KERNEL_TEXT(ret_pc));
  87. }