6.7.3.1 Formal definition of restrict

Previous Table of Contents

1492 Let D be a declaration of an ordinary identifier that provides a means of designating an object P as a restrict-qualified pointer to type T.

1493 If D appears inside a block and does not have storage class extern, let B denote the block.

1494 If D appears in the list of parameter declarations of a function definition, let B denote the associated block.

1495 Otherwise, let B denote the block of main (or the block of whatever function is called at program startup in a freestanding environment).

1496 In what follows, a pointer expression E is said to be based on object P if (at some sequence point in the execution of B prior to the evaluation of E) modifying P to point to a copy of the array object into which it formerly pointed would change the value of E.117)

1497 Note that “based” is defined only for expressions with pointer types.

1498 During each execution of B, let L be any lvalue that has &L based on P.

1499 If L is used to access the value of the object X that it designates, and X is also modified (by any means), then the following requirements apply: T shall not be const-qualified.

1500 Every other lvalue used to access the value of X shall also have its address based on P.

1501 Every access that modifies X shall be considered also to modify P, for the purposes of this subclause.

1502 If P is assigned the value of a pointer expression E that is based on another restricted pointer object P2, associated with block B2, then either the execution of B2 shall begin before the execution of B, or the execution of B2 shall end prior to the assignment.

1503 If these requirements are not met, then the behavior is undefined.

1504 Here an execution of B means that portion of the execution of the program that would correspond to the lifetime of an object with scalar type and automatic storage duration associated with B.

1505 A translator is free to ignore any or all aliasing implications of uses of restrict.

1506 EXAMPLE 1 The file scope declarations


        int * restrict a;
        int * restrict b;
        extern int c[];

assert that if an object is accessed using one of a, b, or c, and that object is modified anywhere in the program, then it is never accessed using either of the other two.

1507 117) In other words, E depends on the value of P itself rather than on the value of an object referenced indirectly through P.

1508 For example, if identifier p has type (int **restrict), then the pointer expressions p and p+1 are based on the restricted pointer object designated by p, but the pointer expressions *p and p[1] are not.

1509 EXAMPLE 2 The function parameter declarations in the following example


        void f(int n, int * restrict p, int * restrict q)
        {
                while (n-- > 0)
                        *p++ = *q++;
        }

assert that, during each execution of the function, if an object is accessed through one of the pointer parameters, then it is not also accessed through the other.

The benefit of the restrict qualifiers is that they enable a translator to make an effective dependence analysis of function f without examining any of the calls of f in the program. The cost is that the programmer has to examine all of those calls to ensure that none give undefined behavior. For example, the second call of f in g has undefined behavior because each of d[1] through d[49] is accessed through both p and q.


        void g(void)
        {
                extern int d[100];
                f(50, d + 50, d); // valid
                f(50, d +  1, d); // undefined behavior
        }

1510 EXAMPLE 3 The function parameter declarations


        void h(int n, int * restrict p, int * restrict q, int * restrict r)
        {
                int i;
                for (i = 0; i < n; i++)
                        p[i] = q[i] + r[i];
        }

illustrate how an unmodified object can be aliased through two restricted pointers. In particular, if a and b are disjoint arrays, a call of the form h(100, a, b, b) has defined behavior, because array b is not modified within function h.

1511 EXAMPLE 4 The rule limiting assignments between restricted pointers does not distinguish between a function call and an equivalent nested block. With one exception, only “outer-to-inner” assignments between restricted pointers declared in nested blocks have defined behavior.


        {
                int * restrict p1;
                int * restrict q1;
                p1 = q1; // undefined behavior
                {
                        int * restrict p2 = p1; // valid
                        int * restrict q2 = q1; // valid
                        p1 = q2;                // undefined behavior
                        p2 = q2;                // undefined behavior
                }
        }

The one exception allows the value of a restricted pointer to be carried out of the block in which it (or, more precisely, the ordinary identifier used to designate it) is declared when that block finishes execution. For example, this permits new_vector to return a vector.


        typedef struct { int n; float * restrict v; } vector;
        vector new_vector(int n)
        {
                vector t;
                t.n = n;
                t.v = malloc(n * sizeof (float));
                return t;
        }

Next

Created at: 2005-06-29 02:19:02 The text from WG14/N1124 is copyright © ISO