Home
last modified time | relevance | path

Searched defs:pt_regs (Results 1 – 8 of 8) sorted by relevance

/kvm-unit-tests/lib/riscv/asm/
H A Dptrace.h5 struct pt_regs { struct
6 unsigned long epc;
7 unsigned long ra;
8 unsigned long sp;
9 unsigned long gp;
10 unsigned long tp;
11 unsigned long t0;
12 unsigned long t1;
13 unsigned long t2;
14 unsigned long s0;
[all …]
/kvm-unit-tests/lib/ppc64/asm/
H A Dptrace.h11 struct pt_regs { struct
23 static inline bool regs_is_prefix(volatile struct pt_regs *regs) in regs_is_prefix() argument
/kvm-unit-tests/lib/riscv/
H A Dprocessor.c63 void install_irq_handler(unsigned long cause, void (*handler)(struct pt_regs *)) in install_irq_handler()
71 void install_exception_handler(unsigned long cause, void (*handler)(struct pt_regs *)) in install_exception_handler()
/kvm-unit-tests/lib/arm64/asm/
H A Dptrace.h72 struct pt_regs { struct
74 struct user_pt_regs user_regs; argument
82 u64 orig_x0;
83 u64 syscallno;
/kvm-unit-tests/lib/arm/asm/
H A Dptrace.h58 struct pt_regs { struct
59 unsigned long uregs[18];
/kvm-unit-tests/lib/powerpc/
H A Dprocessor.c29 void handle_exception(int trap, void (*func)(struct pt_regs *, void *), in handle_exception() argument
H A Dsmp.c125 void register_ipi(void (*fn)(struct pt_regs *, void *), void *data) in register_ipi() argument
/kvm-unit-tests/riscv/
H A Dsbi.c151 static void timer_setup(void (*handler)(struct pt_regs *)) in timer_setup()