You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
tools/memory-model: Add types to litmus tests
This commit adds type information for global variables in the litmus tests in order to allow easier use with klitmus7. Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
This commit is contained in:
@@ -7,7 +7,9 @@ C CoRR+poonceonce+Once
|
||||
* reads from the same variable are ordered.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
}
|
||||
|
||||
P0(int *x)
|
||||
{
|
||||
|
||||
@@ -7,7 +7,9 @@ C CoRW+poonceonce+Once
|
||||
* a given variable and a later write to that same variable are ordered.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
}
|
||||
|
||||
P0(int *x)
|
||||
{
|
||||
|
||||
@@ -7,7 +7,9 @@ C CoWR+poonceonce+Once
|
||||
* given variable and a later read from that same variable are ordered.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
}
|
||||
|
||||
P0(int *x)
|
||||
{
|
||||
|
||||
@@ -7,7 +7,9 @@ C CoWW+poonceonce
|
||||
* writes to the same variable are ordered.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
}
|
||||
|
||||
P0(int *x)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,10 @@ C IRIW+fencembonceonces+OnceOnce
|
||||
* process? This litmus test exercises LKMM's "propagation" rule.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,10 @@ C IRIW+poonceonces+OnceOnce
|
||||
* different process?
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x)
|
||||
{
|
||||
|
||||
@@ -7,7 +7,12 @@ C ISA2+pooncelock+pooncelock+pombonce
|
||||
* (in P0() and P1()) is visible to external process P2().
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
spinlock_t mylock;
|
||||
int x;
|
||||
int y;
|
||||
int z;
|
||||
}
|
||||
|
||||
P0(int *x, int *y, spinlock_t *mylock)
|
||||
{
|
||||
|
||||
@@ -9,7 +9,11 @@ C ISA2+poonceonces
|
||||
* of the smp_load_acquire() invocations are replaced by READ_ONCE()?
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
int z;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -11,7 +11,11 @@ C ISA2+pooncerelease+poacquirerelease+poacquireonce
|
||||
* (AKA non-rf) link, so release-acquire is all that is needed.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
int z;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -11,7 +11,10 @@ C LB+fencembonceonce+ctrlonceonce
|
||||
* another control dependency and order would still be maintained.)
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,10 @@ C LB+poacquireonce+pooncerelease
|
||||
* to the other?
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -7,7 +7,10 @@ C LB+poonceonces
|
||||
* be prevented even with no explicit ordering?
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,10 @@ C MP+fencewmbonceonce+fencermbonceonce
|
||||
* is usually better to use smp_store_release() and smp_load_acquire().
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -10,8 +10,9 @@ C MP+onceassign+derefonce
|
||||
*)
|
||||
|
||||
{
|
||||
y=z;
|
||||
z=0;
|
||||
int x;
|
||||
int *y=z;
|
||||
int z=0;
|
||||
}
|
||||
|
||||
P0(int *x, int **y)
|
||||
|
||||
@@ -11,6 +11,8 @@ C MP+polockmbonce+poacquiresilsil
|
||||
*)
|
||||
|
||||
{
|
||||
spinlock_t lo;
|
||||
int x;
|
||||
}
|
||||
|
||||
P0(spinlock_t *lo, int *x)
|
||||
|
||||
@@ -11,6 +11,8 @@ C MP+polockonce+poacquiresilsil
|
||||
*)
|
||||
|
||||
{
|
||||
spinlock_t lo;
|
||||
int x;
|
||||
}
|
||||
|
||||
P0(spinlock_t *lo, int *x)
|
||||
|
||||
@@ -11,7 +11,11 @@ C MP+polocks
|
||||
* to see all prior accesses by those other CPUs.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
spinlock_t mylock;
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y, spinlock_t *mylock)
|
||||
{
|
||||
|
||||
@@ -7,7 +7,10 @@ C MP+poonceonces
|
||||
* no ordering at all?
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -8,7 +8,10 @@ C MP+pooncerelease+poacquireonce
|
||||
* pattern.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y)
|
||||
{
|
||||
|
||||
@@ -11,7 +11,11 @@ C MP+porevlocks
|
||||
* see all prior accesses by those other CPUs.
|
||||
*)
|
||||
|
||||
{}
|
||||
{
|
||||
spinlock_t mylock;
|
||||
int x;
|
||||
int y;
|
||||
}
|
||||
|
||||
P0(int *x, int *y, spinlock_t *mylock)
|
||||
{
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user