show_thread.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file cbuf interface
  8. */
  9. #include <kernel.h>
  10. #include <string.h>
  11. #ifdef CONFIG_ARM_UNWIND
  12. void unwind_backtrace(struct k_thread *th);
  13. static void stack_dump(const struct k_thread *th)
  14. {
  15. unwind_backtrace((struct k_thread *)th);
  16. }
  17. #else
  18. static void stack_dump(const struct k_thread *th)
  19. {
  20. const z_arch_esf_t *esf;
  21. const struct _callee_saved *callee = &th->callee_saved;
  22. esf = (z_arch_esf_t *)callee->psp;
  23. printk("############ thread: %s info############\n", thread_get_name(th));
  24. printk("r0/a1: 0x%08x r1/a2: 0x%08x r2/a3: 0x%08x\n",
  25. esf->basic.a1, esf->basic.a2, esf->basic.a3);
  26. printk("r3/a4: 0x%08x r12/ip: 0x%08x r14/lr: 0x%08x\n",
  27. esf->basic.a4, esf->basic.ip, esf->basic.lr);
  28. printk("r4/v1: 0x%08x r5/v2: 0x%08x r6/v3: 0x%08x\n",
  29. callee->v1, callee->v2, callee->v3);
  30. printk("r7/v4: 0x%08x r8/v5: 0x%08x r9/v6: 0x%08x\n",
  31. callee->v4, callee->v5, callee->v6);
  32. printk("r10/v7: 0x%08x r11/v8: 0x%08x psp: 0x%08x\n",
  33. callee->v7, callee->v8, callee->psp);
  34. printk(" xpsr: 0x%08x\n", esf->basic.xpsr);
  35. printk("(r15/pc): 0x%08x\n", esf->basic.pc);
  36. }
  37. #endif
  38. static void thread_show_info(const struct k_thread *cthread, void *user_data)
  39. {
  40. const struct k_thread *cur = (const struct k_thread *)user_data;
  41. if(cur == cthread)
  42. return;
  43. stack_dump(cthread);
  44. }
  45. void show_stack(void)
  46. {
  47. struct k_thread *cur = (struct k_thread *) k_current_get();
  48. printk("****show thread stack cur=%s ****\n", k_thread_name_get(cur));
  49. k_thread_foreach(thread_show_info, NULL);
  50. }