source: public/doc/gnu-c/restrict-Pointer-Example.html@ 02598c2

Last change on this file since 02598c2 was 02598c2, checked in by Mikhail Kirillov <w96k@…>, on Oct 6, 2022 at 12:36:29 PM

Add gnu-c

  • Property mode set to 100644
File size: 5.1 KB
Line 
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
6licensed to the FSF.)
7
8Permission is granted to copy, distribute and/or modify this document
9under the terms of the GNU Free Documentation License, Version 1.3 or
10any later version published by the Free Software Foundation; with the
11Invariant Sections being "GNU General Public License," with the
12Front-Cover Texts being "A GNU Manual," and with the Back-Cover
13Texts as in (a) below. A copy of the license is included in the
14section entitled "GNU Free Documentation License."
15
16(a) The FSF's Back-Cover Text is: "You have the freedom to copy and
17modify this GNU manual. Buying copies from the FSF supports it in
18developing 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<!--
37a.summary-letter {text-decoration: none}
38blockquote.indentedblock {margin-right: 0em}
39div.display {margin-left: 3.2em}
40div.example {margin-left: 3.2em}
41div.lisp {margin-left: 3.2em}
42kbd {font-style: oblique}
43pre.display {font-family: inherit}
44pre.format {font-family: inherit}
45pre.menu-comment {font-family: serif}
46pre.menu-preformatted {font-family: serif}
47span.nolinebreak {white-space: nowrap}
48span.roman {font-family: initial; font-weight: normal}
49span.sansserif {font-family: sans-serif; font-weight: normal}
50ul.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>
60Previous: <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> &nbsp; [<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>
68points to does not overlap with the array <code>in</code> points to.
69</p>
70<div class="example">
71<pre class="example">void
72process_data (const char *in,
73 char * restrict out,
74 size_t size)
75{
76 for (i = 0; i &lt; size; i++)
77 out[i] = in[i] + in[i + 1];
78}
79</pre></div>
80
81<p>Here&rsquo;s a simple tree structure, where each tree node holds data of
82type <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&rsquo;s a function to null out both pointers in the <code>left</code>
94subtree.
95</p>
96<div class="example">
97<pre class="example">void
98null_left (struct foo *a)
99{
100 a-&gt;left-&gt;left = NULL;
101 a-&gt;left-&gt;right = NULL;
102}
103</pre></div>
104
105<p>Since <code>*a</code> and <code>*a-&gt;left</code> have the same data type,
106they could legitimately alias (see <a href="Aliasing.html">Aliasing</a>). Therefore,
107the compiled code for <code>null_left</code> must read <code>a-&gt;left</code>
108again 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-&gt;left</code> again, by writing <code>null_left</code> this in a less
112obvious way.
113</p>
114<div class="example">
115<pre class="example">void
116null_left (struct foo *a)
117{
118 struct foo *b = a-&gt;left;
119 b-&gt;left = NULL;
120 b-&gt;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
128null_left (struct foo *restrict a)
129{
130 a-&gt;left-&gt;left = NULL;
131 a-&gt;left-&gt;right = NULL;
132}
133</pre></div>
134
135<p>Declaring <code>a</code> as <code>restrict</code> asserts that other pointers such
136as <code>a-&gt;left</code> will not point to the same memory space as <code>a</code>.
137Therefore, the memory location <code>a-&gt;left-&gt;left</code> cannot be the same
138memory as <code>a-&gt;left</code>. Knowing this, the compiled code may avoid
139reloading <code>a-&gt;left</code> for the second statement.
140</p>
141
142
143
144</body>
145</html>
Note: See TracBrowser for help on using the repository browser.