ptrace.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Amit Bhor, Sameer Dhavale: Codito Technologies 2004
  10. */
  11. #ifndef _UAPI__ASM_ARC_PTRACE_H
  12. #define _UAPI__ASM_ARC_PTRACE_H
  13. #define PTRACE_GET_THREAD_AREA 25
  14. #ifndef __ASSEMBLY__
  15. /*
  16. * Userspace ABI: Register state needed by
  17. * -ptrace (gdbserver)
  18. * -sigcontext (SA_SIGNINFO signal frame)
  19. *
  20. * This is to decouple pt_regs from user-space ABI, to be able to change it
  21. * w/o affecting the ABI.
  22. *
  23. * The intermediate pad,pad2 are relics of initial layout based on pt_regs
  24. * for optimizations when copying pt_regs to/from user_regs_struct.
  25. * We no longer need them, but can't be changed as they are part of ABI now.
  26. *
  27. * Also, sigcontext only care about the scratch regs as that is what we really
  28. * save/restore for signal handling. However gdb also uses the same struct
  29. * hence callee regs need to be in there too.
  30. */
  31. struct user_regs_struct {
  32. unsigned long pad;
  33. struct {
  34. unsigned long bta, lp_start, lp_end, lp_count;
  35. unsigned long status32, ret, blink, fp, gp;
  36. unsigned long r12, r11, r10, r9, r8, r7, r6, r5, r4, r3, r2, r1, r0;
  37. unsigned long sp;
  38. } scratch;
  39. unsigned long pad2;
  40. struct {
  41. unsigned long r25, r24, r23, r22, r21, r20;
  42. unsigned long r19, r18, r17, r16, r15, r14, r13;
  43. } callee;
  44. unsigned long efa; /* break pt addr, for break points in delay slots */
  45. unsigned long stop_pc; /* give dbg stop_pc after ensuring brkpt trap */
  46. };
  47. struct user_regs_arcv2 {
  48. unsigned long r30, r58, r59;
  49. };
  50. #endif /* !__ASSEMBLY__ */
  51. #endif /* _UAPI__ASM_ARC_PTRACE_H */