1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
---|
2 | <html>
|
---|
3 | <!-- Copyright (C) 2022 Richard Stallman and Free Software Foundation, Inc.
|
---|
4 |
|
---|
5 | (The work of Trevis Rothwell and Nelson Beebe has been assigned or
|
---|
6 | licensed to the FSF.)
|
---|
7 |
|
---|
8 | Permission is granted to copy, distribute and/or modify this document
|
---|
9 | under the terms of the GNU Free Documentation License, Version 1.3 or
|
---|
10 | any later version published by the Free Software Foundation; with the
|
---|
11 | Invariant Sections being "GNU General Public License," with the
|
---|
12 | Front-Cover Texts being "A GNU Manual," and with the Back-Cover
|
---|
13 | Texts as in (a) below. A copy of the license is included in the
|
---|
14 | section entitled "GNU Free Documentation License."
|
---|
15 |
|
---|
16 | (a) The FSF's Back-Cover Text is: "You have the freedom to copy and
|
---|
17 | modify this GNU manual. Buying copies from the FSF supports it in
|
---|
18 | developing GNU and promoting software freedom." -->
|
---|
19 | <!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
|
---|
20 | <head>
|
---|
21 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
---|
22 | <title>restrict Pointer Example (GNU C Language Manual)</title>
|
---|
23 |
|
---|
24 | <meta name="description" content="restrict Pointer Example (GNU C Language Manual)">
|
---|
25 | <meta name="keywords" content="restrict Pointer Example (GNU C Language Manual)">
|
---|
26 | <meta name="resource-type" content="document">
|
---|
27 | <meta name="distribution" content="global">
|
---|
28 | <meta name="Generator" content="makeinfo">
|
---|
29 | <link href="index.html" rel="start" title="Top">
|
---|
30 | <link href="Symbol-Index.html" rel="index" title="Symbol Index">
|
---|
31 | <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
---|
32 | <link href="Type-Qualifiers.html" rel="up" title="Type Qualifiers">
|
---|
33 | <link href="Functions.html" rel="next" title="Functions">
|
---|
34 | <link href="restrict-Pointers.html" rel="prev" title="restrict Pointers">
|
---|
35 | <style type="text/css">
|
---|
36 | <!--
|
---|
37 | a.summary-letter {text-decoration: none}
|
---|
38 | blockquote.indentedblock {margin-right: 0em}
|
---|
39 | div.display {margin-left: 3.2em}
|
---|
40 | div.example {margin-left: 3.2em}
|
---|
41 | div.lisp {margin-left: 3.2em}
|
---|
42 | kbd {font-style: oblique}
|
---|
43 | pre.display {font-family: inherit}
|
---|
44 | pre.format {font-family: inherit}
|
---|
45 | pre.menu-comment {font-family: serif}
|
---|
46 | pre.menu-preformatted {font-family: serif}
|
---|
47 | span.nolinebreak {white-space: nowrap}
|
---|
48 | span.roman {font-family: initial; font-weight: normal}
|
---|
49 | span.sansserif {font-family: sans-serif; font-weight: normal}
|
---|
50 | ul.no-bullet {list-style: none}
|
---|
51 | -->
|
---|
52 | </style>
|
---|
53 |
|
---|
54 |
|
---|
55 | </head>
|
---|
56 |
|
---|
57 | <body lang="en">
|
---|
58 | <span id="restrict-Pointer-Example"></span><div class="header">
|
---|
59 | <p>
|
---|
60 | Previous: <a href="restrict-Pointers.html" accesskey="p" rel="prev">restrict Pointers</a>, Up: <a href="Type-Qualifiers.html" accesskey="u" rel="up">Type Qualifiers</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Symbol-Index.html" title="Index" rel="index">Index</a>]</p>
|
---|
61 | </div>
|
---|
62 | <hr>
|
---|
63 | <span id="restrict-Pointer-Example-1"></span><h3 class="section">21.4 <code>restrict</code> Pointer Example</h3>
|
---|
64 |
|
---|
65 | <p>Here are examples where <code>restrict</code> enables real optimization.
|
---|
66 | </p>
|
---|
67 | <p>In this example, <code>restrict</code> assures GCC that the array <code>out</code>
|
---|
68 | points to does not overlap with the array <code>in</code> points to.
|
---|
69 | </p>
|
---|
70 | <div class="example">
|
---|
71 | <pre class="example">void
|
---|
72 | process_data (const char *in,
|
---|
73 | char * restrict out,
|
---|
74 | size_t size)
|
---|
75 | {
|
---|
76 | for (i = 0; i < size; i++)
|
---|
77 | out[i] = in[i] + in[i + 1];
|
---|
78 | }
|
---|
79 | </pre></div>
|
---|
80 |
|
---|
81 | <p>Here’s a simple tree structure, where each tree node holds data of
|
---|
82 | type <code>PAYLOAD</code> plus two subtrees.
|
---|
83 | </p>
|
---|
84 | <div class="example">
|
---|
85 | <pre class="example">struct foo
|
---|
86 | {
|
---|
87 | PAYLOAD payload;
|
---|
88 | struct foo *left;
|
---|
89 | struct foo *right;
|
---|
90 | };
|
---|
91 | </pre></div>
|
---|
92 |
|
---|
93 | <p>Now here’s a function to null out both pointers in the <code>left</code>
|
---|
94 | subtree.
|
---|
95 | </p>
|
---|
96 | <div class="example">
|
---|
97 | <pre class="example">void
|
---|
98 | null_left (struct foo *a)
|
---|
99 | {
|
---|
100 | a->left->left = NULL;
|
---|
101 | a->left->right = NULL;
|
---|
102 | }
|
---|
103 | </pre></div>
|
---|
104 |
|
---|
105 | <p>Since <code>*a</code> and <code>*a->left</code> have the same data type,
|
---|
106 | they could legitimately alias (see <a href="Aliasing.html">Aliasing</a>). Therefore,
|
---|
107 | the compiled code for <code>null_left</code> must read <code>a->left</code>
|
---|
108 | again from memory when executing the second assignment statement.
|
---|
109 | </p>
|
---|
110 | <p>We can enable optimization, so that it does not need to read
|
---|
111 | <code>a->left</code> again, by writing <code>null_left</code> this in a less
|
---|
112 | obvious way.
|
---|
113 | </p>
|
---|
114 | <div class="example">
|
---|
115 | <pre class="example">void
|
---|
116 | null_left (struct foo *a)
|
---|
117 | {
|
---|
118 | struct foo *b = a->left;
|
---|
119 | b->left = NULL;
|
---|
120 | b->right = NULL;
|
---|
121 | }
|
---|
122 | </pre></div>
|
---|
123 |
|
---|
124 | <p>A more elegant way to fix this is with <code>restrict</code>.
|
---|
125 | </p>
|
---|
126 | <div class="example">
|
---|
127 | <pre class="example">void
|
---|
128 | null_left (struct foo *restrict a)
|
---|
129 | {
|
---|
130 | a->left->left = NULL;
|
---|
131 | a->left->right = NULL;
|
---|
132 | }
|
---|
133 | </pre></div>
|
---|
134 |
|
---|
135 | <p>Declaring <code>a</code> as <code>restrict</code> asserts that other pointers such
|
---|
136 | as <code>a->left</code> will not point to the same memory space as <code>a</code>.
|
---|
137 | Therefore, the memory location <code>a->left->left</code> cannot be the same
|
---|
138 | memory as <code>a->left</code>. Knowing this, the compiled code may avoid
|
---|
139 | reloading <code>a->left</code> for the second statement.
|
---|
140 | </p>
|
---|
141 |
|
---|
142 |
|
---|
143 |
|
---|
144 | </body>
|
---|
145 | </html>
|
---|