0001
0002
0003
0004
0005
0006 #ifndef __ARM_KERNEL_UPROBES_H
0007 #define __ARM_KERNEL_UPROBES_H
0008
0009 enum probes_insn uprobe_decode_ldmstm(probes_opcode_t insn,
0010 struct arch_probes_insn *asi,
0011 const struct decode_header *d);
0012
0013 enum probes_insn decode_ldr(probes_opcode_t insn,
0014 struct arch_probes_insn *asi,
0015 const struct decode_header *d);
0016
0017 enum probes_insn
0018 decode_rd12rn16rm0rs8_rwflags(probes_opcode_t insn,
0019 struct arch_probes_insn *asi,
0020 const struct decode_header *d);
0021
0022 enum probes_insn
0023 decode_wb_pc(probes_opcode_t insn, struct arch_probes_insn *asi,
0024 const struct decode_header *d, bool alu);
0025
0026 enum probes_insn
0027 decode_pc_ro(probes_opcode_t insn, struct arch_probes_insn *asi,
0028 const struct decode_header *d);
0029
0030 extern const union decode_action uprobes_probes_actions[];
0031
0032 #endif