]> Git Repo - linux.git/blob - arch/arm64/include/asm/uprobes.h
Linux 6.14-rc3
[linux.git] / arch / arm64 / include / asm / uprobes.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (C) 2014-2016 Pratyush Anand <[email protected]>
4  */
5
6 #ifndef _ASM_UPROBES_H
7 #define _ASM_UPROBES_H
8
9 #include <asm/debug-monitors.h>
10 #include <asm/insn.h>
11 #include <asm/probes.h>
12
13 #define UPROBE_SWBP_INSN        cpu_to_le32(BRK64_OPCODE_UPROBES)
14 #define UPROBE_SWBP_INSN_SIZE   AARCH64_INSN_SIZE
15 #define UPROBE_XOL_SLOT_BYTES   AARCH64_INSN_SIZE
16
17 typedef __le32 uprobe_opcode_t;
18
19 struct arch_uprobe_task {
20 };
21
22 struct arch_uprobe {
23         union {
24                 __le32 insn;
25                 __le32 ixol;
26         };
27         struct arch_probe_insn api;
28         bool simulate;
29 };
30
31 #endif
This page took 0.029847 seconds and 4 git commands to generate.