Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

121 rinda
4.8KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- This file documents the GNU linker LD
  4. (GNU Arm Embedded Toolchain 10-2020-q4-major)
  5. version 2.35.1.
  6. Copyright (C) 1991-2020 Free Software Foundation, Inc.
  7. Permission is granted to copy, distribute and/or modify this document
  8. under the terms of the GNU Free Documentation License, Version 1.3
  9. or any later version published by the Free Software Foundation;
  10. with no Invariant Sections, with no Front-Cover Texts, and with no
  11. Back-Cover Texts. A copy of the license is included in the
  12. section entitled "GNU Free Documentation License". -->
  13. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  14. <head>
  15. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  16. <title>M68HC11/68HC12 (LD)</title>
  17. <meta name="description" content="M68HC11/68HC12 (LD)">
  18. <meta name="keywords" content="M68HC11/68HC12 (LD)">
  19. <meta name="resource-type" content="document">
  20. <meta name="distribution" content="global">
  21. <meta name="Generator" content="makeinfo">
  22. <link href="index.html#Top" rel="start" title="Top">
  23. <link href="LD-Index.html#LD-Index" rel="index" title="LD Index">
  24. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  25. <link href="Machine-Dependent.html#Machine-Dependent" rel="up" title="Machine Dependent">
  26. <link href="ARM.html#ARM" rel="next" title="ARM">
  27. <link href="H8_002f300.html#H8_002f300" rel="prev" title="H8/300">
  28. <style type="text/css">
  29. <!--
  30. a.summary-letter {text-decoration: none}
  31. blockquote.indentedblock {margin-right: 0em}
  32. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  33. blockquote.smallquotation {font-size: smaller}
  34. div.display {margin-left: 3.2em}
  35. div.example {margin-left: 3.2em}
  36. div.lisp {margin-left: 3.2em}
  37. div.smalldisplay {margin-left: 3.2em}
  38. div.smallexample {margin-left: 3.2em}
  39. div.smalllisp {margin-left: 3.2em}
  40. kbd {font-style: oblique}
  41. pre.display {font-family: inherit}
  42. pre.format {font-family: inherit}
  43. pre.menu-comment {font-family: serif}
  44. pre.menu-preformatted {font-family: serif}
  45. pre.smalldisplay {font-family: inherit; font-size: smaller}
  46. pre.smallexample {font-size: smaller}
  47. pre.smallformat {font-family: inherit; font-size: smaller}
  48. pre.smalllisp {font-size: smaller}
  49. span.nolinebreak {white-space: nowrap}
  50. span.roman {font-family: initial; font-weight: normal}
  51. span.sansserif {font-family: sans-serif; font-weight: normal}
  52. ul.no-bullet {list-style: none}
  53. -->
  54. </style>
  55. </head>
  56. <body lang="en">
  57. <a name="M68HC11_002f68HC12"></a>
  58. <div class="header">
  59. <p>
  60. Next: <a href="ARM.html#ARM" accesskey="n" rel="next">ARM</a>, Previous: <a href="H8_002f300.html#H8_002f300" accesskey="p" rel="prev">H8/300</a>, Up: <a href="Machine-Dependent.html#Machine-Dependent" accesskey="u" rel="up">Machine Dependent</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="LD-Index.html#LD-Index" title="Index" rel="index">Index</a>]</p>
  61. </div>
  62. <hr>
  63. <a name="ld-and-the-Motorola-68HC11-and-68HC12-families"></a>
  64. <h3 class="section">4.2 <code>ld</code> and the Motorola 68HC11 and 68HC12 families</h3>
  65. <a name="index-M68HC11-and-68HC12-support"></a>
  66. <a name="Linker-Relaxation"></a>
  67. <h4 class="subsection">4.2.1 Linker Relaxation</h4>
  68. <p>For the Motorola 68HC11, <code>ld</code> can perform these global
  69. optimizations when you specify the &lsquo;<samp>--relax</samp>&rsquo; command-line option.
  70. </p>
  71. <dl compact="compact">
  72. <dd><a name="index-relaxing-on-M68HC11"></a>
  73. </dd>
  74. <dt><em>relaxing address modes</em></dt>
  75. <dd><p><code>ld</code> finds all <code>jsr</code> and <code>jmp</code> instructions whose
  76. targets are within eight bits, and turns them into eight-bit
  77. program-counter relative <code>bsr</code> and <code>bra</code> instructions,
  78. respectively.
  79. </p>
  80. <p><code>ld</code> also looks at all 16-bit extended addressing modes and
  81. transforms them in a direct addressing mode when the address is in
  82. page 0 (between 0 and 0x0ff).
  83. </p>
  84. </dd>
  85. <dt><em>relaxing gcc instruction group</em></dt>
  86. <dd><p>When <code>gcc</code> is called with <samp>-mrelax</samp>, it can emit group
  87. of instructions that the linker can optimize to use a 68HC11 direct
  88. addressing mode. These instructions consists of <code>bclr</code> or
  89. <code>bset</code> instructions.
  90. </p>
  91. </dd>
  92. </dl>
  93. <a name="Trampoline-Generation"></a>
  94. <h4 class="subsection">4.2.2 Trampoline Generation</h4>
  95. <a name="index-trampoline-generation-on-M68HC11"></a>
  96. <a name="index-trampoline-generation-on-M68HC12"></a>
  97. <p>For 68HC11 and 68HC12, <code>ld</code> can generate trampoline code to
  98. call a far function using a normal <code>jsr</code> instruction. The linker
  99. will also change the relocation to some far function to use the
  100. trampoline address instead of the function address. This is typically the
  101. case when a pointer to a function is taken. The pointer will in fact
  102. point to the function trampoline.
  103. </p>
  104. </body>
  105. </html>