GTY-Options.html 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Copyright (C) 1988-2017 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation; with the
  7. Invariant Sections being "Funding Free Software", the Front-Cover
  8. Texts being (a) (see below), and with the Back-Cover Texts being (b)
  9. (see below). A copy of the license is included in the section entitled
  10. "GNU Free Documentation License".
  11. (a) The FSF's Front-Cover Text is:
  12. A GNU Manual
  13. (b) The FSF's Back-Cover Text is:
  14. You have freedom to copy and modify this GNU Manual, like GNU
  15. software. Copies published by the Free Software Foundation raise
  16. funds for GNU development. -->
  17. <!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
  18. <head>
  19. <title>GNU Compiler Collection (GCC) Internals: GTY Options</title>
  20. <meta name="description" content="GNU Compiler Collection (GCC) Internals: GTY Options">
  21. <meta name="keywords" content="GNU Compiler Collection (GCC) Internals: GTY Options">
  22. <meta name="resource-type" content="document">
  23. <meta name="distribution" content="global">
  24. <meta name="Generator" content="makeinfo">
  25. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  26. <link href="index.html#Top" rel="start" title="Top">
  27. <link href="Option-Index.html#Option-Index" rel="index" title="Option Index">
  28. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  29. <link href="Type-Information.html#Type-Information" rel="up" title="Type Information">
  30. <link href="Inheritance-and-GTY.html#Inheritance-and-GTY" rel="next" title="Inheritance and GTY">
  31. <link href="Type-Information.html#Type-Information" rel="prev" title="Type Information">
  32. <style type="text/css">
  33. <!--
  34. a.summary-letter {text-decoration: none}
  35. blockquote.smallquotation {font-size: smaller}
  36. div.display {margin-left: 3.2em}
  37. div.example {margin-left: 3.2em}
  38. div.indentedblock {margin-left: 3.2em}
  39. div.lisp {margin-left: 3.2em}
  40. div.smalldisplay {margin-left: 3.2em}
  41. div.smallexample {margin-left: 3.2em}
  42. div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
  43. div.smalllisp {margin-left: 3.2em}
  44. kbd {font-style:oblique}
  45. pre.display {font-family: inherit}
  46. pre.format {font-family: inherit}
  47. pre.menu-comment {font-family: serif}
  48. pre.menu-preformatted {font-family: serif}
  49. pre.smalldisplay {font-family: inherit; font-size: smaller}
  50. pre.smallexample {font-size: smaller}
  51. pre.smallformat {font-family: inherit; font-size: smaller}
  52. pre.smalllisp {font-size: smaller}
  53. span.nocodebreak {white-space:nowrap}
  54. span.nolinebreak {white-space:nowrap}
  55. span.roman {font-family:serif; font-weight:normal}
  56. span.sansserif {font-family:sans-serif; font-weight:normal}
  57. ul.no-bullet {list-style: none}
  58. -->
  59. </style>
  60. </head>
  61. <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
  62. <a name="GTY-Options"></a>
  63. <div class="header">
  64. <p>
  65. Next: <a href="Inheritance-and-GTY.html#Inheritance-and-GTY" accesskey="n" rel="next">Inheritance and GTY</a>, Up: <a href="Type-Information.html#Type-Information" accesskey="u" rel="up">Type Information</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
  66. </div>
  67. <hr>
  68. <a name="The-Inside-of-a-GTY_0028_0028_0029_0029"></a>
  69. <h3 class="section">22.1 The Inside of a <code>GTY(())</code></h3>
  70. <p>Sometimes the C code is not enough to fully describe the type
  71. structure. Extra information can be provided with <code>GTY</code> options
  72. and additional markers. Some options take a parameter, which may be
  73. either a string or a type name, depending on the parameter. If an
  74. option takes no parameter, it is acceptable either to omit the
  75. parameter entirely, or to provide an empty string as a parameter. For
  76. example, <code>GTY&nbsp;((skip))<!-- /@w --></code> and <code>GTY&nbsp;((skip&nbsp;(&quot;&quot;)))<!-- /@w --></code> are
  77. equivalent.
  78. </p>
  79. <p>When the parameter is a string, often it is a fragment of C code. Four
  80. special escapes may be used in these strings, to refer to pieces of
  81. the data structure being marked:
  82. </p>
  83. <a name="index-_0025-in-GTY-option"></a>
  84. <dl compact="compact">
  85. <dt><code>%h</code></dt>
  86. <dd><p>The current structure.
  87. </p></dd>
  88. <dt><code>%1</code></dt>
  89. <dd><p>The structure that immediately contains the current structure.
  90. </p></dd>
  91. <dt><code>%0</code></dt>
  92. <dd><p>The outermost structure that contains the current structure.
  93. </p></dd>
  94. <dt><code>%a</code></dt>
  95. <dd><p>A partial expression of the form <code>[i1][i2]&hellip;</code> that indexes
  96. the array item currently being marked.
  97. </p></dd>
  98. </dl>
  99. <p>For instance, suppose that you have a structure of the form
  100. </p><div class="smallexample">
  101. <pre class="smallexample">struct A {
  102. &hellip;
  103. };
  104. struct B {
  105. struct A foo[12];
  106. };
  107. </pre></div>
  108. <p>and <code>b</code> is a variable of type <code>struct B</code>. When marking
  109. &lsquo;<samp>b.foo[11]</samp>&rsquo;, <code>%h</code> would expand to &lsquo;<samp>b.foo[11]</samp>&rsquo;,
  110. <code>%0</code> and <code>%1</code> would both expand to &lsquo;<samp>b</samp>&rsquo;, and <code>%a</code>
  111. would expand to &lsquo;<samp>[11]</samp>&rsquo;.
  112. </p>
  113. <p>As in ordinary C, adjacent strings will be concatenated; this is
  114. helpful when you have a complicated expression.
  115. </p><div class="smallexample">
  116. <pre class="smallexample">GTY ((chain_next (&quot;TREE_CODE (&amp;%h.generic) == INTEGER_TYPE&quot;
  117. &quot; ? TYPE_NEXT_VARIANT (&amp;%h.generic)&quot;
  118. &quot; : TREE_CHAIN (&amp;%h.generic)&quot;)))
  119. </pre></div>
  120. <p>The available options are:
  121. </p>
  122. <dl compact="compact">
  123. <dd><a name="index-length"></a>
  124. </dd>
  125. <dt><code>length (&quot;<var>expression</var>&quot;)</code></dt>
  126. <dd>
  127. <p>There are two places the type machinery will need to be explicitly told
  128. the length of an array of non-atomic objects. The first case is when a
  129. structure ends in a variable-length array, like this:
  130. </p><div class="smallexample">
  131. <pre class="smallexample">struct GTY(()) rtvec_def {
  132. int num_elem; /* <span class="roman">number of elements</span> */
  133. rtx GTY ((length (&quot;%h.num_elem&quot;))) elem[1];
  134. };
  135. </pre></div>
  136. <p>In this case, the <code>length</code> option is used to override the specified
  137. array length (which should usually be <code>1</code>). The parameter of the
  138. option is a fragment of C code that calculates the length.
  139. </p>
  140. <p>The second case is when a structure or a global variable contains a
  141. pointer to an array, like this:
  142. </p><div class="smallexample">
  143. <pre class="smallexample">struct gimple_omp_for_iter * GTY((length (&quot;%h.collapse&quot;))) iter;
  144. </pre></div>
  145. <p>In this case, <code>iter</code> has been allocated by writing something like
  146. </p><div class="smallexample">
  147. <pre class="smallexample"> x-&gt;iter = ggc_alloc_cleared_vec_gimple_omp_for_iter (collapse);
  148. </pre></div>
  149. <p>and the <code>collapse</code> provides the length of the field.
  150. </p>
  151. <p>This second use of <code>length</code> also works on global variables, like:
  152. </p><pre class="verbatim">static GTY((length(&quot;reg_known_value_size&quot;))) rtx *reg_known_value;
  153. </pre>
  154. <p>Note that the <code>length</code> option is only meant for use with arrays of
  155. non-atomic objects, that is, objects that contain pointers pointing to
  156. other GTY-managed objects. For other GC-allocated arrays and strings
  157. you should use <code>atomic</code>.
  158. </p>
  159. <a name="index-skip"></a>
  160. </dd>
  161. <dt><code>skip</code></dt>
  162. <dd>
  163. <p>If <code>skip</code> is applied to a field, the type machinery will ignore it.
  164. This is somewhat dangerous; the only safe use is in a union when one
  165. field really isn&rsquo;t ever used.
  166. </p>
  167. <a name="index-for_005fuser"></a>
  168. </dd>
  169. <dt><code>for_user</code></dt>
  170. <dd>
  171. <p>Use this to mark types that need to be marked by user gc routines, but are not
  172. refered to in a template argument. So if you have some user gc type T1 and a
  173. non user gc type T2 you can give T2 the for_user option so that the marking
  174. functions for T1 can call non mangled functions to mark T2.
  175. </p>
  176. <a name="index-desc"></a>
  177. <a name="index-tag"></a>
  178. <a name="index-default"></a>
  179. </dd>
  180. <dt><code>desc (&quot;<var>expression</var>&quot;)</code></dt>
  181. <dt><code>tag (&quot;<var>constant</var>&quot;)</code></dt>
  182. <dt><code>default</code></dt>
  183. <dd>
  184. <p>The type machinery needs to be told which field of a <code>union</code> is
  185. currently active. This is done by giving each field a constant
  186. <code>tag</code> value, and then specifying a discriminator using <code>desc</code>.
  187. The value of the expression given by <code>desc</code> is compared against
  188. each <code>tag</code> value, each of which should be different. If no
  189. <code>tag</code> is matched, the field marked with <code>default</code> is used if
  190. there is one, otherwise no field in the union will be marked.
  191. </p>
  192. <p>In the <code>desc</code> option, the &ldquo;current structure&rdquo; is the union that
  193. it discriminates. Use <code>%1</code> to mean the structure containing it.
  194. There are no escapes available to the <code>tag</code> option, since it is a
  195. constant.
  196. </p>
  197. <p>For example,
  198. </p><div class="smallexample">
  199. <pre class="smallexample">struct GTY(()) tree_binding
  200. {
  201. struct tree_common common;
  202. union tree_binding_u {
  203. tree GTY ((tag (&quot;0&quot;))) scope;
  204. struct cp_binding_level * GTY ((tag (&quot;1&quot;))) level;
  205. } GTY ((desc (&quot;BINDING_HAS_LEVEL_P ((tree)&amp;%0)&quot;))) xscope;
  206. tree value;
  207. };
  208. </pre></div>
  209. <p>In this example, the value of BINDING_HAS_LEVEL_P when applied to a
  210. <code>struct tree_binding *</code> is presumed to be 0 or 1. If 1, the type
  211. mechanism will treat the field <code>level</code> as being present and if 0,
  212. will treat the field <code>scope</code> as being present.
  213. </p>
  214. <p>The <code>desc</code> and <code>tag</code> options can also be used for inheritance
  215. to denote which subclass an instance is. See <a href="Inheritance-and-GTY.html#Inheritance-and-GTY">Inheritance and GTY</a>
  216. for more information.
  217. </p>
  218. <a name="index-cache"></a>
  219. </dd>
  220. <dt><code>cache</code></dt>
  221. <dd>
  222. <p>When the <code>cache</code> option is applied to a global variable gt_clear_cache is
  223. called on that variable between the mark and sweep phases of garbage
  224. collection. The gt_clear_cache function is free to mark blocks as used, or to
  225. clear pointers in the variable.
  226. </p>
  227. <a name="index-deletable"></a>
  228. </dd>
  229. <dt><code>deletable</code></dt>
  230. <dd>
  231. <p><code>deletable</code>, when applied to a global variable, indicates that when
  232. garbage collection runs, there&rsquo;s no need to mark anything pointed to
  233. by this variable, it can just be set to <code>NULL</code> instead. This is used
  234. to keep a list of free structures around for re-use.
  235. </p>
  236. <a name="index-maybe_005fundef"></a>
  237. </dd>
  238. <dt><code>maybe_undef</code></dt>
  239. <dd>
  240. <p>When applied to a field, <code>maybe_undef</code> indicates that it&rsquo;s OK if
  241. the structure that this fields points to is never defined, so long as
  242. this field is always <code>NULL</code>. This is used to avoid requiring
  243. backends to define certain optional structures. It doesn&rsquo;t work with
  244. language frontends.
  245. </p>
  246. <a name="index-nested_005fptr"></a>
  247. </dd>
  248. <dt><code>nested_ptr (<var>type</var>, &quot;<var>to expression</var>&quot;, &quot;<var>from expression</var>&quot;)</code></dt>
  249. <dd>
  250. <p>The type machinery expects all pointers to point to the start of an
  251. object. Sometimes for abstraction purposes it&rsquo;s convenient to have
  252. a pointer which points inside an object. So long as it&rsquo;s possible to
  253. convert the original object to and from the pointer, such pointers
  254. can still be used. <var>type</var> is the type of the original object,
  255. the <var>to expression</var> returns the pointer given the original object,
  256. and the <var>from expression</var> returns the original object given
  257. the pointer. The pointer will be available using the <code>%h</code>
  258. escape.
  259. </p>
  260. <a name="index-chain_005fnext"></a>
  261. <a name="index-chain_005fprev"></a>
  262. <a name="index-chain_005fcircular"></a>
  263. </dd>
  264. <dt><code>chain_next (&quot;<var>expression</var>&quot;)</code></dt>
  265. <dt><code>chain_prev (&quot;<var>expression</var>&quot;)</code></dt>
  266. <dt><code>chain_circular (&quot;<var>expression</var>&quot;)</code></dt>
  267. <dd>
  268. <p>It&rsquo;s helpful for the type machinery to know if objects are often
  269. chained together in long lists; this lets it generate code that uses
  270. less stack space by iterating along the list instead of recursing down
  271. it. <code>chain_next</code> is an expression for the next item in the list,
  272. <code>chain_prev</code> is an expression for the previous item. For singly
  273. linked lists, use only <code>chain_next</code>; for doubly linked lists, use
  274. both. The machinery requires that taking the next item of the
  275. previous item gives the original item. <code>chain_circular</code> is similar
  276. to <code>chain_next</code>, but can be used for circular single linked lists.
  277. </p>
  278. <a name="index-reorder"></a>
  279. </dd>
  280. <dt><code>reorder (&quot;<var>function name</var>&quot;)</code></dt>
  281. <dd>
  282. <p>Some data structures depend on the relative ordering of pointers. If
  283. the precompiled header machinery needs to change that ordering, it
  284. will call the function referenced by the <code>reorder</code> option, before
  285. changing the pointers in the object that&rsquo;s pointed to by the field the
  286. option applies to. The function must take four arguments, with the
  287. signature &lsquo;<samp>void&nbsp;*,&nbsp;void&nbsp;*,&nbsp;<span class="nolinebreak">gt_pointer_operator,</span>&nbsp;void&nbsp;*<!-- /@w --></samp>&rsquo;.
  288. The first parameter is a pointer to the structure that contains the
  289. object being updated, or the object itself if there is no containing
  290. structure. The second parameter is a cookie that should be ignored.
  291. The third parameter is a routine that, given a pointer, will update it
  292. to its correct new value. The fourth parameter is a cookie that must
  293. be passed to the second parameter.
  294. </p>
  295. <p>PCH cannot handle data structures that depend on the absolute values
  296. of pointers. <code>reorder</code> functions can be expensive. When
  297. possible, it is better to depend on properties of the data, like an ID
  298. number or the hash of a string instead.
  299. </p>
  300. <a name="index-atomic"></a>
  301. </dd>
  302. <dt><code>atomic</code></dt>
  303. <dd>
  304. <p>The <code>atomic</code> option can only be used with pointers. It informs
  305. the GC machinery that the memory that the pointer points to does not
  306. contain any pointers, and hence it should be treated by the GC and PCH
  307. machinery as an &ldquo;atomic&rdquo; block of memory that does not need to be
  308. examined when scanning memory for pointers. In particular, the
  309. machinery will not scan that memory for pointers to mark them as
  310. reachable (when marking pointers for GC) or to relocate them (when
  311. writing a PCH file).
  312. </p>
  313. <p>The <code>atomic</code> option differs from the <code>skip</code> option.
  314. <code>atomic</code> keeps the memory under Garbage Collection, but makes the
  315. GC ignore the contents of the memory. <code>skip</code> is more drastic in
  316. that it causes the pointer and the memory to be completely ignored by
  317. the Garbage Collector. So, memory marked as <code>atomic</code> is
  318. automatically freed when no longer reachable, while memory marked as
  319. <code>skip</code> is not.
  320. </p>
  321. <p>The <code>atomic</code> option must be used with great care, because all
  322. sorts of problem can occur if used incorrectly, that is, if the memory
  323. the pointer points to does actually contain a pointer.
  324. </p>
  325. <p>Here is an example of how to use it:
  326. </p><div class="smallexample">
  327. <pre class="smallexample">struct GTY(()) my_struct {
  328. int number_of_elements;
  329. unsigned int * GTY ((atomic)) elements;
  330. };
  331. </pre></div>
  332. <p>In this case, <code>elements</code> is a pointer under GC, and the memory it
  333. points to needs to be allocated using the Garbage Collector, and will
  334. be freed automatically by the Garbage Collector when it is no longer
  335. referenced. But the memory that the pointer points to is an array of
  336. <code>unsigned int</code> elements, and the GC must not try to scan it to
  337. find pointers to mark or relocate, which is why it is marked with the
  338. <code>atomic</code> option.
  339. </p>
  340. <p>Note that, currently, global variables can not be marked with
  341. <code>atomic</code>; only fields of a struct can. This is a known
  342. limitation. It would be useful to be able to mark global pointers
  343. with <code>atomic</code> to make the PCH machinery aware of them so that
  344. they are saved and restored correctly to PCH files.
  345. </p>
  346. <a name="index-special"></a>
  347. </dd>
  348. <dt><code>special (&quot;<var>name</var>&quot;)</code></dt>
  349. <dd>
  350. <p>The <code>special</code> option is used to mark types that have to be dealt
  351. with by special case machinery. The parameter is the name of the
  352. special case. See <samp>gengtype.c</samp> for further details. Avoid
  353. adding new special cases unless there is no other alternative.
  354. </p>
  355. <a name="index-user"></a>
  356. </dd>
  357. <dt><code>user</code></dt>
  358. <dd>
  359. <p>The <code>user</code> option indicates that the code to mark structure
  360. fields is completely handled by user-provided routines. See section
  361. <a href="User-GC.html#User-GC">User GC</a> for details on what functions need to be provided.
  362. </p></dd>
  363. </dl>
  364. <hr>
  365. <div class="header">
  366. <p>
  367. Next: <a href="Inheritance-and-GTY.html#Inheritance-and-GTY" accesskey="n" rel="next">Inheritance and GTY</a>, Up: <a href="Type-Information.html#Type-Information" accesskey="u" rel="up">Type Information</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Option-Index.html#Option-Index" title="Index" rel="index">Index</a>]</p>
  368. </div>
  369. </body>
  370. </html>