blob: 0b3ef63d4a03b3ef2ff119535ee3c020641e1888 [file] [log] [blame]
Vineet Gupta8c2f4a82013-02-11 19:55:33 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Amit Bhor, Sameer Dhavale: Codito Technologies 2004
9 */
10
11#ifndef _UAPI__ASM_ARC_PTRACE_H
12#define _UAPI__ASM_ARC_PTRACE_H
13
Anton Kolesova4b6cb72014-06-20 20:28:39 +040014#define PTRACE_GET_THREAD_AREA 25
Vineet Gupta8c2f4a82013-02-11 19:55:33 +053015
16#ifndef __ASSEMBLY__
17/*
18 * Userspace ABI: Register state needed by
19 * -ptrace (gdbserver)
20 * -sigcontext (SA_SIGNINFO signal frame)
21 *
22 * This is to decouple pt_regs from user-space ABI, to be able to change it
23 * w/o affecting the ABI.
Vineet Gupta2fa91902013-05-28 09:43:17 +053024 *
25 * The intermediate pad,pad2 are relics of initial layout based on pt_regs
26 * for optimizations when copying pt_regs to/from user_regs_struct.
27 * We no longer need them, but can't be changed as they are part of ABI now.
Vineet Gupta8c2f4a82013-02-11 19:55:33 +053028 *
29 * Also, sigcontext only care about the scratch regs as that is what we really
Vineet Gupta2fa91902013-05-28 09:43:17 +053030 * save/restore for signal handling. However gdb also uses the same struct
31 * hence callee regs need to be in there too.
Vineet Gupta8c2f4a82013-02-11 19:55:33 +053032*/
33struct user_regs_struct {
34
Vineet Gupta87ce6282015-08-05 11:12:00 +053035 unsigned long pad;
Vineet Gupta1540c852013-03-07 16:47:23 +053036 struct {
Vineet Gupta87ce6282015-08-05 11:12:00 +053037 unsigned long bta, lp_start, lp_end, lp_count;
38 unsigned long status32, ret, blink, fp, gp;
39 unsigned long r12, r11, r10, r9, r8, r7, r6, r5, r4, r3, r2, r1, r0;
40 unsigned long sp;
Vineet Gupta8c2f4a82013-02-11 19:55:33 +053041 } scratch;
Vineet Gupta87ce6282015-08-05 11:12:00 +053042 unsigned long pad2;
Vineet Gupta1540c852013-03-07 16:47:23 +053043 struct {
Vineet Gupta87ce6282015-08-05 11:12:00 +053044 unsigned long r25, r24, r23, r22, r21, r20;
45 unsigned long r19, r18, r17, r16, r15, r14, r13;
Vineet Gupta8c2f4a82013-02-11 19:55:33 +053046 } callee;
Vineet Gupta87ce6282015-08-05 11:12:00 +053047 unsigned long efa; /* break pt addr, for break points in delay slots */
48 unsigned long stop_pc; /* give dbg stop_pc after ensuring brkpt trap */
Vineet Gupta8c2f4a82013-02-11 19:55:33 +053049};
50#endif /* !__ASSEMBLY__ */
51
52#endif /* _UAPI__ASM_ARC_PTRACE_H */