Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

157 lines
7.6KB

  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>CC0 Condition Codes (GNU Compiler Collection (GCC) Internals)</title>
  21. <meta name="description" content="CC0 Condition Codes (GNU Compiler Collection (GCC) Internals)">
  22. <meta name="keywords" content="CC0 Condition Codes (GNU Compiler Collection (GCC) Internals)">
  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="Condition-Code.html#Condition-Code" rel="up" title="Condition Code">
  30. <link href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes" rel="next" title="MODE_CC Condition Codes">
  31. <link href="Condition-Code.html#Condition-Code" rel="prev" title="Condition Code">
  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="CC0-Condition-Codes"></a>
  62. <div class="header">
  63. <p>
  64. Next: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes" accesskey="n" rel="next">MODE_CC Condition Codes</a>, Up: <a href="Condition-Code.html#Condition-Code" accesskey="u" rel="up">Condition Code</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="Representation-of-condition-codes-using-_0028cc0_0029"></a>
  68. <h4 class="subsection">18.15.1 Representation of condition codes using <code>(cc0)</code></h4>
  69. <a name="index-cc0-1"></a>
  70. <a name="index-cc_005fstatus"></a>
  71. <p>The file <samp>conditions.h</samp> defines a variable <code>cc_status</code> to
  72. describe how the condition code was computed (in case the interpretation of
  73. the condition code depends on the instruction that it was set by). This
  74. variable contains the RTL expressions on which the condition code is
  75. currently based, and several standard flags.
  76. </p>
  77. <p>Sometimes additional machine-specific flags must be defined in the machine
  78. description header file. It can also add additional machine-specific
  79. information by defining <code>CC_STATUS_MDEP</code>.
  80. </p>
  81. <dl>
  82. <dt><a name="index-CC_005fSTATUS_005fMDEP"></a>Macro: <strong>CC_STATUS_MDEP</strong></dt>
  83. <dd><p>C code for a data type which is used for declaring the <code>mdep</code>
  84. component of <code>cc_status</code>. It defaults to <code>int</code>.
  85. </p>
  86. <p>This macro is not used on machines that do not use <code>cc0</code>.
  87. </p></dd></dl>
  88. <dl>
  89. <dt><a name="index-CC_005fSTATUS_005fMDEP_005fINIT"></a>Macro: <strong>CC_STATUS_MDEP_INIT</strong></dt>
  90. <dd><p>A C expression to initialize the <code>mdep</code> field to &ldquo;empty&rdquo;.
  91. The default definition does nothing, since most machines don&rsquo;t use
  92. the field anyway. If you want to use the field, you should probably
  93. define this macro to initialize it.
  94. </p>
  95. <p>This macro is not used on machines that do not use <code>cc0</code>.
  96. </p></dd></dl>
  97. <dl>
  98. <dt><a name="index-NOTICE_005fUPDATE_005fCC"></a>Macro: <strong>NOTICE_UPDATE_CC</strong> <em>(<var>exp</var>, <var>insn</var>)</em></dt>
  99. <dd><p>A C compound statement to set the components of <code>cc_status</code>
  100. appropriately for an insn <var>insn</var> whose body is <var>exp</var>. It is
  101. this macro&rsquo;s responsibility to recognize insns that set the condition
  102. code as a byproduct of other activity as well as those that explicitly
  103. set <code>(cc0)</code>.
  104. </p>
  105. <p>This macro is not used on machines that do not use <code>cc0</code>.
  106. </p>
  107. <p>If there are insns that do not set the condition code but do alter
  108. other machine registers, this macro must check to see whether they
  109. invalidate the expressions that the condition code is recorded as
  110. reflecting. For example, on the 68000, insns that store in address
  111. registers do not set the condition code, which means that usually
  112. <code>NOTICE_UPDATE_CC</code> can leave <code>cc_status</code> unaltered for such
  113. insns. But suppose that the previous insn set the condition code
  114. based on location &lsquo;<samp>a4@(102)</samp>&rsquo; and the current insn stores a new
  115. value in &lsquo;<samp>a4</samp>&rsquo;. Although the condition code is not changed by
  116. this, it will no longer be true that it reflects the contents of
  117. &lsquo;<samp>a4@(102)</samp>&rsquo;. Therefore, <code>NOTICE_UPDATE_CC</code> must alter
  118. <code>cc_status</code> in this case to say that nothing is known about the
  119. condition code value.
  120. </p>
  121. <p>The definition of <code>NOTICE_UPDATE_CC</code> must be prepared to deal
  122. with the results of peephole optimization: insns whose patterns are
  123. <code>parallel</code> RTXs containing various <code>reg</code>, <code>mem</code> or
  124. constants which are just the operands. The RTL structure of these
  125. insns is not sufficient to indicate what the insns actually do. What
  126. <code>NOTICE_UPDATE_CC</code> should do when it sees one is just to run
  127. <code>CC_STATUS_INIT</code>.
  128. </p>
  129. <p>A possible definition of <code>NOTICE_UPDATE_CC</code> is to call a function
  130. that looks at an attribute (see <a href="Insn-Attributes.html#Insn-Attributes">Insn Attributes</a>) named, for example,
  131. &lsquo;<samp>cc</samp>&rsquo;. This avoids having detailed information about patterns in
  132. two places, the <samp>md</samp> file and in <code>NOTICE_UPDATE_CC</code>.
  133. </p></dd></dl>
  134. <hr>
  135. <div class="header">
  136. <p>
  137. Next: <a href="MODE_005fCC-Condition-Codes.html#MODE_005fCC-Condition-Codes" accesskey="n" rel="next">MODE_CC Condition Codes</a>, Up: <a href="Condition-Code.html#Condition-Code" accesskey="u" rel="up">Condition Code</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>
  138. </div>
  139. </body>
  140. </html>