No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 3 años
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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-2020 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 6.5, http://www.gnu.org/software/texinfo/ -->
  18. <head>
  19. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  20. <title>Modifiers (Using the GNU Compiler Collection (GCC))</title>
  21. <meta name="description" content="Modifiers (Using the GNU Compiler Collection (GCC))">
  22. <meta name="keywords" content="Modifiers (Using the GNU Compiler Collection (GCC))">
  23. <meta name="resource-type" content="document">
  24. <meta name="distribution" content="global">
  25. <meta name="Generator" content="makeinfo">
  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="Constraints.html#Constraints" rel="up" title="Constraints">
  30. <link href="Machine-Constraints.html#Machine-Constraints" rel="next" title="Machine Constraints">
  31. <link href="Multi_002dAlternative.html#Multi_002dAlternative" rel="prev" title="Multi-Alternative">
  32. <style type="text/css">
  33. <!--
  34. a.summary-letter {text-decoration: none}
  35. blockquote.indentedblock {margin-right: 0em}
  36. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  37. blockquote.smallquotation {font-size: smaller}
  38. div.display {margin-left: 3.2em}
  39. div.example {margin-left: 3.2em}
  40. div.lisp {margin-left: 3.2em}
  41. div.smalldisplay {margin-left: 3.2em}
  42. div.smallexample {margin-left: 3.2em}
  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.nolinebreak {white-space: nowrap}
  54. span.roman {font-family: initial; font-weight: normal}
  55. span.sansserif {font-family: sans-serif; font-weight: normal}
  56. ul.no-bullet {list-style: none}
  57. -->
  58. </style>
  59. </head>
  60. <body lang="en">
  61. <a name="Modifiers"></a>
  62. <div class="header">
  63. <p>
  64. Next: <a href="Machine-Constraints.html#Machine-Constraints" accesskey="n" rel="next">Machine Constraints</a>, Previous: <a href="Multi_002dAlternative.html#Multi_002dAlternative" accesskey="p" rel="prev">Multi-Alternative</a>, Up: <a href="Constraints.html#Constraints" accesskey="u" rel="up">Constraints</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>
  65. </div>
  66. <hr>
  67. <a name="Constraint-Modifier-Characters"></a>
  68. <h4 class="subsubsection">6.47.3.3 Constraint Modifier Characters</h4>
  69. <a name="index-modifiers-in-constraints"></a>
  70. <a name="index-constraint-modifier-characters"></a>
  71. <p>Here are constraint modifier characters.
  72. </p>
  73. <dl compact="compact">
  74. <dd><a name="index-_003d-in-constraint"></a>
  75. </dd>
  76. <dt>&lsquo;<samp>=</samp>&rsquo;</dt>
  77. <dd><p>Means that this operand is written to by this instruction:
  78. the previous value is discarded and replaced by new data.
  79. </p>
  80. <a name="index-_002b-in-constraint"></a>
  81. </dd>
  82. <dt>&lsquo;<samp>+</samp>&rsquo;</dt>
  83. <dd><p>Means that this operand is both read and written by the instruction.
  84. </p>
  85. <p>When the compiler fixes up the operands to satisfy the constraints,
  86. it needs to know which operands are read by the instruction and
  87. which are written by it. &lsquo;<samp>=</samp>&rsquo; identifies an operand which is only
  88. written; &lsquo;<samp>+</samp>&rsquo; identifies an operand that is both read and written; all
  89. other operands are assumed to only be read.
  90. </p>
  91. <p>If you specify &lsquo;<samp>=</samp>&rsquo; or &lsquo;<samp>+</samp>&rsquo; in a constraint, you put it in the
  92. first character of the constraint string.
  93. </p>
  94. <a name="index-_0026-in-constraint"></a>
  95. <a name="index-earlyclobber-operand"></a>
  96. </dd>
  97. <dt>&lsquo;<samp>&amp;</samp>&rsquo;</dt>
  98. <dd><p>Means (in a particular alternative) that this operand is an
  99. <em>earlyclobber</em> operand, which is written before the instruction is
  100. finished using the input operands. Therefore, this operand may not lie
  101. in a register that is read by the instruction or as part of any memory
  102. address.
  103. </p>
  104. <p>&lsquo;<samp>&amp;</samp>&rsquo; applies only to the alternative in which it is written. In
  105. constraints with multiple alternatives, sometimes one alternative
  106. requires &lsquo;<samp>&amp;</samp>&rsquo; while others do not. See, for example, the
  107. &lsquo;<samp>movdf</samp>&rsquo; insn of the 68000.
  108. </p>
  109. <p>A operand which is read by the instruction can be tied to an earlyclobber
  110. operand if its only use as an input occurs before the early result is
  111. written. Adding alternatives of this form often allows GCC to produce
  112. better code when only some of the read operands can be affected by the
  113. earlyclobber. See, for example, the &lsquo;<samp>mulsi3</samp>&rsquo; insn of the ARM.
  114. </p>
  115. <p>Furthermore, if the <em>earlyclobber</em> operand is also a read/write
  116. operand, then that operand is written only after it&rsquo;s used.
  117. </p>
  118. <p>&lsquo;<samp>&amp;</samp>&rsquo; does not obviate the need to write &lsquo;<samp>=</samp>&rsquo; or &lsquo;<samp>+</samp>&rsquo;. As
  119. <em>earlyclobber</em> operands are always written, a read-only
  120. <em>earlyclobber</em> operand is ill-formed and will be rejected by the
  121. compiler.
  122. </p>
  123. <a name="index-_0025-in-constraint"></a>
  124. </dd>
  125. <dt>&lsquo;<samp>%</samp>&rsquo;</dt>
  126. <dd><p>Declares the instruction to be commutative for this operand and the
  127. following operand. This means that the compiler may interchange the
  128. two operands if that is the cheapest way to make all operands fit the
  129. constraints. &lsquo;<samp>%</samp>&rsquo; applies to all alternatives and must appear as
  130. the first character in the constraint. Only read-only operands can use
  131. &lsquo;<samp>%</samp>&rsquo;.
  132. </p>
  133. <p>GCC can only handle one commutative pair in an asm; if you use more,
  134. the compiler may fail. Note that you need not use the modifier if
  135. the two alternatives are strictly identical; this would only waste
  136. time in the reload pass.
  137. </p></dd>
  138. </dl>
  139. <hr>
  140. <div class="header">
  141. <p>
  142. Next: <a href="Machine-Constraints.html#Machine-Constraints" accesskey="n" rel="next">Machine Constraints</a>, Previous: <a href="Multi_002dAlternative.html#Multi_002dAlternative" accesskey="p" rel="prev">Multi-Alternative</a>, Up: <a href="Constraints.html#Constraints" accesskey="u" rel="up">Constraints</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>
  143. </div>
  144. </body>
  145. </html>