blob: ce20a53afe9160caa6d664a2ece149b8ceb7d078 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 1999, 2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
5 */
6
7#ifndef _S390_PTRACE_H
8#define _S390_PTRACE_H
9
10/*
11 * Offsets in the user_regs_struct. They are used for the ptrace
12 * system call and in entry.S
13 */
14#ifndef __s390x__
15
16#define PT_PSWMASK 0x00
17#define PT_PSWADDR 0x04
18#define PT_GPR0 0x08
19#define PT_GPR1 0x0C
20#define PT_GPR2 0x10
21#define PT_GPR3 0x14
22#define PT_GPR4 0x18
23#define PT_GPR5 0x1C
24#define PT_GPR6 0x20
25#define PT_GPR7 0x24
26#define PT_GPR8 0x28
27#define PT_GPR9 0x2C
28#define PT_GPR10 0x30
29#define PT_GPR11 0x34
30#define PT_GPR12 0x38
31#define PT_GPR13 0x3C
32#define PT_GPR14 0x40
33#define PT_GPR15 0x44
34#define PT_ACR0 0x48
35#define PT_ACR1 0x4C
36#define PT_ACR2 0x50
37#define PT_ACR3 0x54
38#define PT_ACR4 0x58
39#define PT_ACR5 0x5C
40#define PT_ACR6 0x60
41#define PT_ACR7 0x64
42#define PT_ACR8 0x68
43#define PT_ACR9 0x6C
44#define PT_ACR10 0x70
45#define PT_ACR11 0x74
46#define PT_ACR12 0x78
47#define PT_ACR13 0x7C
48#define PT_ACR14 0x80
49#define PT_ACR15 0x84
50#define PT_ORIGGPR2 0x88
51#define PT_FPC 0x90
52/*
53 * A nasty fact of life that the ptrace api
54 * only supports passing of longs.
55 */
56#define PT_FPR0_HI 0x98
57#define PT_FPR0_LO 0x9C
58#define PT_FPR1_HI 0xA0
59#define PT_FPR1_LO 0xA4
60#define PT_FPR2_HI 0xA8
61#define PT_FPR2_LO 0xAC
62#define PT_FPR3_HI 0xB0
63#define PT_FPR3_LO 0xB4
64#define PT_FPR4_HI 0xB8
65#define PT_FPR4_LO 0xBC
66#define PT_FPR5_HI 0xC0
67#define PT_FPR5_LO 0xC4
68#define PT_FPR6_HI 0xC8
69#define PT_FPR6_LO 0xCC
70#define PT_FPR7_HI 0xD0
71#define PT_FPR7_LO 0xD4
72#define PT_FPR8_HI 0xD8
73#define PT_FPR8_LO 0XDC
74#define PT_FPR9_HI 0xE0
75#define PT_FPR9_LO 0xE4
76#define PT_FPR10_HI 0xE8
77#define PT_FPR10_LO 0xEC
78#define PT_FPR11_HI 0xF0
79#define PT_FPR11_LO 0xF4
80#define PT_FPR12_HI 0xF8
81#define PT_FPR12_LO 0xFC
82#define PT_FPR13_HI 0x100
83#define PT_FPR13_LO 0x104
84#define PT_FPR14_HI 0x108
85#define PT_FPR14_LO 0x10C
86#define PT_FPR15_HI 0x110
87#define PT_FPR15_LO 0x114
88#define PT_CR_9 0x118
89#define PT_CR_10 0x11C
90#define PT_CR_11 0x120
91#define PT_IEEE_IP 0x13C
92#define PT_LASTOFF PT_IEEE_IP
93#define PT_ENDREGS 0x140-1
94
95#define GPR_SIZE 4
96#define CR_SIZE 4
97
98#define STACK_FRAME_OVERHEAD 96 /* size of minimum stack frame */
99
100#else /* __s390x__ */
101
102#define PT_PSWMASK 0x00
103#define PT_PSWADDR 0x08
104#define PT_GPR0 0x10
105#define PT_GPR1 0x18
106#define PT_GPR2 0x20
107#define PT_GPR3 0x28
108#define PT_GPR4 0x30
109#define PT_GPR5 0x38
110#define PT_GPR6 0x40
111#define PT_GPR7 0x48
112#define PT_GPR8 0x50
113#define PT_GPR9 0x58
114#define PT_GPR10 0x60
115#define PT_GPR11 0x68
116#define PT_GPR12 0x70
117#define PT_GPR13 0x78
118#define PT_GPR14 0x80
119#define PT_GPR15 0x88
120#define PT_ACR0 0x90
121#define PT_ACR1 0x94
122#define PT_ACR2 0x98
123#define PT_ACR3 0x9C
124#define PT_ACR4 0xA0
125#define PT_ACR5 0xA4
126#define PT_ACR6 0xA8
127#define PT_ACR7 0xAC
128#define PT_ACR8 0xB0
129#define PT_ACR9 0xB4
130#define PT_ACR10 0xB8
131#define PT_ACR11 0xBC
132#define PT_ACR12 0xC0
133#define PT_ACR13 0xC4
134#define PT_ACR14 0xC8
135#define PT_ACR15 0xCC
136#define PT_ORIGGPR2 0xD0
137#define PT_FPC 0xD8
138#define PT_FPR0 0xE0
139#define PT_FPR1 0xE8
140#define PT_FPR2 0xF0
141#define PT_FPR3 0xF8
142#define PT_FPR4 0x100
143#define PT_FPR5 0x108
144#define PT_FPR6 0x110
145#define PT_FPR7 0x118
146#define PT_FPR8 0x120
147#define PT_FPR9 0x128
148#define PT_FPR10 0x130
149#define PT_FPR11 0x138
150#define PT_FPR12 0x140
151#define PT_FPR13 0x148
152#define PT_FPR14 0x150
153#define PT_FPR15 0x158
154#define PT_CR_9 0x160
155#define PT_CR_10 0x168
156#define PT_CR_11 0x170
157#define PT_IEEE_IP 0x1A8
158#define PT_LASTOFF PT_IEEE_IP
159#define PT_ENDREGS 0x1B0-1
160
161#define GPR_SIZE 8
162#define CR_SIZE 8
163
164#define STACK_FRAME_OVERHEAD 160 /* size of minimum stack frame */
165
166#endif /* __s390x__ */
167
168#define NUM_GPRS 16
169#define NUM_FPRS 16
170#define NUM_CRS 16
171#define NUM_ACRS 16
172
Dan Smitheaf1b6f2009-03-26 15:24:40 +0100173#define NUM_CR_WORDS 3
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#define FPR_SIZE 8
176#define FPC_SIZE 4
177#define FPC_PAD_SIZE 4 /* gcc insists on aligning the fpregs */
178#define ACR_SIZE 4
179
180
181#define PTRACE_OLDSETOPTIONS 21
182
183#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#include <linux/stddef.h>
185#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187typedef union
188{
189 float f;
190 double d;
191 __u64 ui;
192 struct
193 {
194 __u32 hi;
195 __u32 lo;
196 } fp;
197} freg_t;
198
199typedef struct
200{
201 __u32 fpc;
202 freg_t fprs[NUM_FPRS];
203} s390_fp_regs;
204
205#define FPC_EXCEPTION_MASK 0xF8000000
206#define FPC_FLAGS_MASK 0x00F80000
207#define FPC_DXC_MASK 0x0000FF00
208#define FPC_RM_MASK 0x00000003
209#define FPC_VALID_MASK 0xF8F8FF03
210
211/* this typedef defines how a Program Status Word looks like */
212typedef struct
213{
214 unsigned long mask;
215 unsigned long addr;
216} __attribute__ ((aligned(8))) psw_t;
217
Martin Schwidefsky63506c42008-07-14 09:58:54 +0200218typedef struct
219{
220 __u32 mask;
221 __u32 addr;
222} __attribute__ ((aligned(8))) psw_compat_t;
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224#ifndef __s390x__
225
226#define PSW_MASK_PER 0x40000000UL
227#define PSW_MASK_DAT 0x04000000UL
228#define PSW_MASK_IO 0x02000000UL
229#define PSW_MASK_EXT 0x01000000UL
230#define PSW_MASK_KEY 0x00F00000UL
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100231#define PSW_MASK_BASE 0x00080000UL /* always one */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232#define PSW_MASK_MCHECK 0x00040000UL
233#define PSW_MASK_WAIT 0x00020000UL
234#define PSW_MASK_PSTATE 0x00010000UL
235#define PSW_MASK_ASC 0x0000C000UL
236#define PSW_MASK_CC 0x00003000UL
237#define PSW_MASK_PM 0x00000F00UL
Jan Glaubere4b8b3f2012-07-31 10:52:05 +0200238#define PSW_MASK_RI 0x00000000UL
Martin Schwidefskyccf45ca2011-10-30 15:16:48 +0100239#define PSW_MASK_EA 0x00000000UL
240#define PSW_MASK_BA 0x00000000UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100242#define PSW_MASK_USER 0x00003F00UL
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244#define PSW_ADDR_AMODE 0x80000000UL
245#define PSW_ADDR_INSN 0x7FFFFFFFUL
246
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700247#define PSW_DEFAULT_KEY (((unsigned long) PAGE_DEFAULT_ACC) << 20)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249#define PSW_ASC_PRIMARY 0x00000000UL
250#define PSW_ASC_ACCREG 0x00004000UL
251#define PSW_ASC_SECONDARY 0x00008000UL
252#define PSW_ASC_HOME 0x0000C000UL
253
254#else /* __s390x__ */
255
256#define PSW_MASK_PER 0x4000000000000000UL
257#define PSW_MASK_DAT 0x0400000000000000UL
258#define PSW_MASK_IO 0x0200000000000000UL
259#define PSW_MASK_EXT 0x0100000000000000UL
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100260#define PSW_MASK_BASE 0x0000000000000000UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#define PSW_MASK_KEY 0x00F0000000000000UL
262#define PSW_MASK_MCHECK 0x0004000000000000UL
263#define PSW_MASK_WAIT 0x0002000000000000UL
264#define PSW_MASK_PSTATE 0x0001000000000000UL
265#define PSW_MASK_ASC 0x0000C00000000000UL
266#define PSW_MASK_CC 0x0000300000000000UL
267#define PSW_MASK_PM 0x00000F0000000000UL
Jan Glaubere4b8b3f2012-07-31 10:52:05 +0200268#define PSW_MASK_RI 0x0000008000000000UL
Martin Schwidefskyccf45ca2011-10-30 15:16:48 +0100269#define PSW_MASK_EA 0x0000000100000000UL
270#define PSW_MASK_BA 0x0000000080000000UL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Jan Glaubere4b8b3f2012-07-31 10:52:05 +0200272#define PSW_MASK_USER 0x00003F8180000000UL
Martin Schwidefskyb50511e2011-10-30 15:16:50 +0100273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274#define PSW_ADDR_AMODE 0x0000000000000000UL
275#define PSW_ADDR_INSN 0xFFFFFFFFFFFFFFFFUL
276
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700277#define PSW_DEFAULT_KEY (((unsigned long) PAGE_DEFAULT_ACC) << 52)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279#define PSW_ASC_PRIMARY 0x0000000000000000UL
280#define PSW_ASC_ACCREG 0x0000400000000000UL
281#define PSW_ASC_SECONDARY 0x0000800000000000UL
282#define PSW_ASC_HOME 0x0000C00000000000UL
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#endif /* __s390x__ */
285
Heiko Carstens16de0582009-01-09 12:14:46 +0100286#ifdef __KERNEL__
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100287extern long psw_kernel_bits;
288extern long psw_user_bits;
Heiko Carstens16de0582009-01-09 12:14:46 +0100289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291/*
292 * The s390_regs structure is used to define the elf_gregset_t.
293 */
294typedef struct
295{
296 psw_t psw;
297 unsigned long gprs[NUM_GPRS];
298 unsigned int acrs[NUM_ACRS];
299 unsigned long orig_gpr2;
300} s390_regs;
301
Martin Schwidefsky63506c42008-07-14 09:58:54 +0200302typedef struct
303{
304 psw_compat_t psw;
305 __u32 gprs[NUM_GPRS];
306 __u32 acrs[NUM_ACRS];
307 __u32 orig_gpr2;
308} s390_compat_regs;
309
Heiko Carstensea2a4d32009-10-06 10:34:13 +0200310typedef struct
311{
312 __u32 gprs_high[NUM_GPRS];
313} s390_compat_regs_high;
Martin Schwidefsky63506c42008-07-14 09:58:54 +0200314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315#ifdef __KERNEL__
David Woodhouse274f5942006-04-27 04:47:10 +0100316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*
318 * The pt_regs struct defines the way the registers are stored on
319 * the stack during a system call.
320 */
321struct pt_regs
322{
323 unsigned long args[1];
324 psw_t psw;
325 unsigned long gprs[NUM_GPRS];
326 unsigned long orig_gpr2;
Martin Schwidefskyaa33c8c2011-12-27 11:27:18 +0100327 unsigned int int_code;
328 unsigned long int_parm_long;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329};
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100330
331/*
332 * Program event recording (PER) register set.
333 */
334struct per_regs {
335 unsigned long control; /* PER control bits */
336 unsigned long start; /* PER starting address */
337 unsigned long end; /* PER ending address */
338};
339
340/*
341 * PER event contains information about the cause of the last PER exception.
342 */
343struct per_event {
344 unsigned short cause; /* PER code, ATMID and AI */
345 unsigned long address; /* PER address */
346 unsigned char paid; /* PER access identification */
347};
348
349/*
350 * Simplified per_info structure used to decode the ptrace user space ABI.
351 */
352struct per_struct_kernel {
353 unsigned long cr9; /* PER control bits */
354 unsigned long cr10; /* PER starting address */
355 unsigned long cr11; /* PER ending address */
356 unsigned long bits; /* Obsolete software bits */
357 unsigned long starting_addr; /* User specified start address */
358 unsigned long ending_addr; /* User specified end address */
359 unsigned short perc_atmid; /* PER trap ATMID */
360 unsigned long address; /* PER trap instruction address */
361 unsigned char access_id; /* PER trap access identification */
362};
363
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200364#define PER_EVENT_MASK 0xEB000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100365
366#define PER_EVENT_BRANCH 0x80000000UL
367#define PER_EVENT_IFETCH 0x40000000UL
368#define PER_EVENT_STORE 0x20000000UL
369#define PER_EVENT_STORE_REAL 0x08000000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200370#define PER_EVENT_TRANSACTION_END 0x02000000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100371#define PER_EVENT_NULLIFICATION 0x01000000UL
372
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200373#define PER_CONTROL_MASK 0x00e00000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100374
375#define PER_CONTROL_BRANCH_ADDRESS 0x00800000UL
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200376#define PER_CONTROL_SUSPENSION 0x00400000UL
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100377#define PER_CONTROL_ALTERATION 0x00200000UL
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#endif
380
381/*
Martin Schwidefsky5e9a2692011-01-05 12:48:10 +0100382 * Now for the user space program event recording (trace) definitions.
383 * The following structures are used only for the ptrace interface, don't
384 * touch or even look at it if you don't want to modify the user-space
385 * ptrace interface. In particular stay away from it for in-kernel PER.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
387typedef struct
388{
Dan Smitheaf1b6f2009-03-26 15:24:40 +0100389 unsigned long cr[NUM_CR_WORDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390} per_cr_words;
391
392#define PER_EM_MASK 0xE8000000UL
393
394typedef struct
395{
396#ifdef __s390x__
397 unsigned : 32;
398#endif /* __s390x__ */
399 unsigned em_branching : 1;
400 unsigned em_instruction_fetch : 1;
401 /*
402 * Switching on storage alteration automatically fixes
403 * the storage alteration event bit in the users std.
404 */
405 unsigned em_storage_alteration : 1;
406 unsigned em_gpr_alt_unused : 1;
407 unsigned em_store_real_address : 1;
408 unsigned : 3;
409 unsigned branch_addr_ctl : 1;
410 unsigned : 1;
411 unsigned storage_alt_space_ctl : 1;
412 unsigned : 21;
413 unsigned long starting_addr;
414 unsigned long ending_addr;
415} per_cr_bits;
416
417typedef struct
418{
419 unsigned short perc_atmid;
420 unsigned long address;
421 unsigned char access_id;
422} per_lowcore_words;
423
424typedef struct
425{
426 unsigned perc_branching : 1;
427 unsigned perc_instruction_fetch : 1;
428 unsigned perc_storage_alteration : 1;
429 unsigned perc_gpr_alt_unused : 1;
430 unsigned perc_store_real_address : 1;
431 unsigned : 3;
432 unsigned atmid_psw_bit_31 : 1;
433 unsigned atmid_validity_bit : 1;
434 unsigned atmid_psw_bit_32 : 1;
435 unsigned atmid_psw_bit_5 : 1;
436 unsigned atmid_psw_bit_16 : 1;
437 unsigned atmid_psw_bit_17 : 1;
438 unsigned si : 2;
439 unsigned long address;
440 unsigned : 4;
441 unsigned access_id : 4;
442} per_lowcore_bits;
443
444typedef struct
445{
446 union {
447 per_cr_words words;
448 per_cr_bits bits;
449 } control_regs;
450 /*
451 * Use these flags instead of setting em_instruction_fetch
452 * directly they are used so that single stepping can be
453 * switched on & off while not affecting other tracing
454 */
455 unsigned single_step : 1;
456 unsigned instruction_fetch : 1;
457 unsigned : 30;
458 /*
459 * These addresses are copied into cr10 & cr11 if single
460 * stepping is switched off
461 */
462 unsigned long starting_addr;
463 unsigned long ending_addr;
464 union {
465 per_lowcore_words words;
466 per_lowcore_bits bits;
467 } lowcore;
468} per_struct;
469
470typedef struct
471{
472 unsigned int len;
473 unsigned long kernel_addr;
474 unsigned long process_addr;
475} ptrace_area;
476
477/*
478 * S/390 specific non posix ptrace requests. I chose unusual values so
479 * they are unlikely to clash with future ptrace definitions.
480 */
481#define PTRACE_PEEKUSR_AREA 0x5000
482#define PTRACE_POKEUSR_AREA 0x5001
483#define PTRACE_PEEKTEXT_AREA 0x5002
484#define PTRACE_PEEKDATA_AREA 0x5003
485#define PTRACE_POKETEXT_AREA 0x5004
486#define PTRACE_POKEDATA_AREA 0x5005
Martin Schwidefsky86f25522010-05-17 10:00:05 +0200487#define PTRACE_GET_LAST_BREAK 0x5006
Martin Schwidefsky20b40a72011-10-30 15:16:47 +0100488#define PTRACE_PEEK_SYSTEM_CALL 0x5007
489#define PTRACE_POKE_SYSTEM_CALL 0x5008
Martin Schwidefskyd35339a2012-07-31 11:03:04 +0200490#define PTRACE_ENABLE_TE 0x5009
491#define PTRACE_DISABLE_TE 0x5010
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493/*
494 * PT_PROT definition is loosely based on hppa bsd definition in
495 * gdb/hppab-nat.c
496 */
497#define PTRACE_PROT 21
498
499typedef enum
500{
501 ptprot_set_access_watchpoint,
502 ptprot_set_write_watchpoint,
503 ptprot_disable_watchpoint
504} ptprot_flags;
505
506typedef struct
507{
508 unsigned long lowaddr;
509 unsigned long hiaddr;
510 ptprot_flags prot;
511} ptprot_area;
512
513/* Sequence of bytes for breakpoint illegal instruction. */
514#define S390_BREAKPOINT {0x0,0x1}
515#define S390_BREAKPOINT_U16 ((__u16)0x0001)
516#define S390_SYSCALL_OPCODE ((__u16)0x0a00)
517#define S390_SYSCALL_SIZE 2
518
519/*
520 * The user_regs_struct defines the way the user registers are
521 * store on the stack for signal handling.
522 */
523struct user_regs_struct
524{
525 psw_t psw;
526 unsigned long gprs[NUM_GPRS];
527 unsigned int acrs[NUM_ACRS];
528 unsigned long orig_gpr2;
529 s390_fp_regs fp_regs;
530 /*
531 * These per registers are in here so that gdb can modify them
532 * itself as there is no "official" ptrace interface for hardware
533 * watchpoints. This is the way intel does it.
534 */
535 per_struct per_info;
Martin Schwidefskyba6cadf2010-10-25 16:10:41 +0200536 unsigned long ieee_instruction_pointer; /* obsolete, always 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537};
538
539#ifdef __KERNEL__
Roland McGrath0ac30be2008-01-26 14:11:22 +0100540/*
541 * These are defined as per linux/ptrace.h, which see.
542 */
543#define arch_has_single_step() (1)
Roland McGrath0ac30be2008-01-26 14:11:22 +0100544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
546#define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN)
Martin Schwidefsky753c4dd2008-10-10 21:33:20 +0200547#define user_stack_pointer(regs)((regs)->gprs[15])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#define profile_pc(regs) instruction_pointer(regs)
Heiko Carstens952974ac62010-02-12 13:38:40 +0100549
Eric Parisd7e75282012-01-03 14:23:06 -0500550static inline long regs_return_value(struct pt_regs *regs)
551{
552 return regs->gprs[2];
553}
554
Heiko Carstens952974ac62010-02-12 13:38:40 +0100555int regs_query_register_offset(const char *name);
556const char *regs_query_register_name(unsigned int offset);
557unsigned long regs_get_register(struct pt_regs *regs, unsigned int offset);
558unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, unsigned int n);
559
560static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
561{
562 return regs->gprs[15] & PSW_ADDR_INSN;
563}
564
Heiko Carstensdc74d7f2007-06-19 13:10:06 +0200565#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566#endif /* __ASSEMBLY__ */
567
568#endif /* _S390_PTRACE_H */