lkml.org 
[lkml]   [2016]   [Jul]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRe: [RFC v2] Restartable sequences: Add self-tests for PPC
----- On Jul 28, 2016, at 3:37 AM, Boqun Feng boqun.feng@gmail.com wrote:

> As rseq syscall is enabled on PPC, implement the self-tests on PPC to
> verify the implementation of the syscall.
>
> Please note we only support 32bit userspace on BE kernel.

Picked into my rseq-fallback dev branch, thanks!

Mathieu

>
> Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
> ---
> v1-->v2:
> 1. Remove branch in rseq_finish() fastpath
>
> 2. Use bne- instead of bne to jump when failure.
>
> 3. Use r17 instead of r16 for storing zero to rseq_cs, which
> could save a register in rseq_finish() asm block.
>
> tools/testing/selftests/rseq/param_test.c | 14 ++++
> tools/testing/selftests/rseq/rseq.h | 112 ++++++++++++++++++++++++++++++
> 2 files changed, 126 insertions(+)
>
> diff --git a/tools/testing/selftests/rseq/param_test.c
> b/tools/testing/selftests/rseq/param_test.c
> index db25e0a818e5..e2cb1b165f81 100644
> --- a/tools/testing/selftests/rseq/param_test.c
> +++ b/tools/testing/selftests/rseq/param_test.c
> @@ -75,6 +75,20 @@ static __thread unsigned int yield_mod_cnt, nr_retry;
> "bne 222b\n\t" \
> "333:\n\t"
>
> +#elif __PPC__
> +#define INJECT_ASM_REG "r18"
> +
> +#define RSEQ_INJECT_CLOBBER \
> + , INJECT_ASM_REG
> +
> +#define RSEQ_INJECT_ASM(n) \
> + "lwz %%" INJECT_ASM_REG ", %[loop_cnt_" #n "]\n\t" \
> + "cmpwi %%" INJECT_ASM_REG ", 0\n\t" \
> + "beq 333f\n\t" \
> + "222:\n\t" \
> + "subic. %%" INJECT_ASM_REG ", %%" INJECT_ASM_REG ", 1\n\t" \
> + "bne 222b\n\t" \
> + "333:\n\t"
> #else
> #error unsupported target
> #endif
> diff --git a/tools/testing/selftests/rseq/rseq.h
> b/tools/testing/selftests/rseq/rseq.h
> index 35b60ee3bb02..b5336cf54788 100644
> --- a/tools/testing/selftests/rseq/rseq.h
> +++ b/tools/testing/selftests/rseq/rseq.h
> @@ -138,6 +138,35 @@ do { \
> #define has_fast_acquire_release() 0
> #define has_single_copy_load_64() 1
>
> +#elif __PPC__
> +#define smp_mb() __asm__ __volatile__ ("sync" : : : "memory")
> +#define smp_lwsync() __asm__ __volatile__ ("lwsync" : : : "memory")
> +#define smp_rmb() smp_lwsync()
> +#define smp_wmb() smp_lwsync()
> +
> +#define smp_load_acquire(p) \
> +__extension__ ({ \
> + __typeof(*p) ____p1 = READ_ONCE(*p); \
> + smp_lwsync(); \
> + ____p1; \
> +})
> +
> +#define smp_acquire__after_ctrl_dep() smp_lwsync()
> +
> +#define smp_store_release(p, v) \
> +do { \
> + smp_lwsync(); \
> + WRITE_ONCE(*p, v); \
> +} while (0)
> +
> +#define has_fast_acquire_release() 0
> +
> +# if __PPC64__
> +# define has_single_copy_load_64() 1
> +# else
> +# define has_single_copy_load_64() 0
> +# endif
> +
> #else
> #error unsupported target
> #endif
> @@ -398,6 +427,89 @@ bool rseq_finish(struct rseq_lock *rlock,
> : failure
> );
> }
> +#elif __PPC64__
> + {
> + /*
> + * The __rseq_table section can be used by debuggers to better
> + * handle single-stepping through the restartable critical
> + * sections.
> + */
> + __asm__ __volatile__ goto (
> + ".pushsection __rseq_table, \"aw\"\n\t"
> + ".balign 8\n\t"
> + "3:\n\t"
> + ".quad 1f, 2f, %l[failure]\n\t"
> + ".popsection\n\t"
> + "1:\n\t"
> + RSEQ_INJECT_ASM(1)
> + "lis %%r17, (3b)@highest\n\t"
> + "ori %%r17, %%r17, (3b)@higher\n\t"
> + "rldicr %%r17, %%r17, 32, 31\n\t"
> + "oris %%r17, %%r17, (3b)@h\n\t"
> + "ori %%r17, %%r17, (3b)@l\n\t"
> + "std %%r17, 0(%[rseq_cs])\n\t"
> + RSEQ_INJECT_ASM(2)
> + "lwz %%r17, %[current_event_counter]\n\t"
> + "cmpw cr7, %[start_event_counter], %%r17\n\t"
> + "bne- cr7, %l[failure]\n\t"
> + RSEQ_INJECT_ASM(3)
> + "std %[to_write], 0(%[target])\n\t"
> + "2:\n\t"
> + RSEQ_INJECT_ASM(4)
> + "li %%r17, 0\n\t"
> + "std %%r17, 0(%[rseq_cs])\n\t"
> + : /* no outputs */
> + : [start_event_counter]"r"(start_value.event_counter),
> + [current_event_counter]"m"(start_value.rseqp->abi.u.e.event_counter),
> + [to_write]"r"(to_write),
> + [target]"b"(p),
> + [rseq_cs]"b"(&start_value.rseqp->abi.rseq_cs)
> + RSEQ_INJECT_INPUT
> + : "r17", "memory", "cc"
> + RSEQ_INJECT_CLOBBER
> + : failure
> + );
> + }
> +#elif __PPC__
> + {
> + /*
> + * The __rseq_table section can be used by debuggers to better
> + * handle single-stepping through the restartable critical
> + * sections.
> + */
> + __asm__ __volatile__ goto (
> + ".pushsection __rseq_table, \"aw\"\n\t"
> + ".balign 8\n\t"
> + "3:\n\t"
> + ".long 0x0, 1f, 0x0, 2f, 0x0, %l[failure]\n\t" /* 32 bit only supported on
> BE */
> + ".popsection\n\t"
> + "1:\n\t"
> + RSEQ_INJECT_ASM(1)
> + "lis %%r17, (3b)@ha\n\t"
> + "addi %%r17, %%r17, (3b)@l\n\t"
> + "stw %%r17, 0(%[rseq_cs])\n\t"
> + RSEQ_INJECT_ASM(2)
> + "lwz %%r17, %[current_event_counter]\n\t"
> + "cmpw cr7, %[start_event_counter], %%r17\n\t"
> + "bne- cr7, %l[failure]\n\t"
> + RSEQ_INJECT_ASM(3)
> + "stw %[to_write], 0(%[target])\n\t"
> + "2:\n\t"
> + RSEQ_INJECT_ASM(4)
> + "li %%r17, 0\n\t"
> + "stw %%r17, 0(%[rseq_cs])\n\t"
> + : /* no outputs */
> + : [start_event_counter]"r"(start_value.event_counter),
> + [current_event_counter]"m"(start_value.rseqp->abi.u.e.event_counter),
> + [to_write]"r"(to_write),
> + [target]"b"(p),
> + [rseq_cs]"b"(&start_value.rseqp->abi.rseq_cs)
> + RSEQ_INJECT_INPUT
> + : "r17", "memory", "cc"
> + RSEQ_INJECT_CLOBBER
> + : failure
> + );
> + }
> #else
> #error unsupported target
> #endif
> --
> 2.9.0

--
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com

\
 
 \ /
  Last update: 2016-07-28 16:41    [W:0.127 / U:0.148 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site