M68HC11_002f68HC12.html 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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 Binutils)
  5. version 2.28.
  6. Copyright (C) 1991-2017 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 5.2, http://www.gnu.org/software/texinfo/ -->
  14. <head>
  15. <title>LD: M68HC11/68HC12</title>
  16. <meta name="description" content="LD: M68HC11/68HC12">
  17. <meta name="keywords" content="LD: M68HC11/68HC12">
  18. <meta name="resource-type" content="document">
  19. <meta name="distribution" content="global">
  20. <meta name="Generator" content="makeinfo">
  21. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  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="i960.html#i960" rel="prev" title="i960">
  28. <style type="text/css">
  29. <!--
  30. a.summary-letter {text-decoration: none}
  31. blockquote.smallquotation {font-size: smaller}
  32. div.display {margin-left: 3.2em}
  33. div.example {margin-left: 3.2em}
  34. div.indentedblock {margin-left: 3.2em}
  35. div.lisp {margin-left: 3.2em}
  36. div.smalldisplay {margin-left: 3.2em}
  37. div.smallexample {margin-left: 3.2em}
  38. div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
  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.nocodebreak {white-space:nowrap}
  50. span.nolinebreak {white-space:nowrap}
  51. span.roman {font-family:serif; font-weight:normal}
  52. span.sansserif {font-family:sans-serif; font-weight:normal}
  53. ul.no-bullet {list-style: none}
  54. -->
  55. </style>
  56. </head>
  57. <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
  58. <a name="M68HC11_002f68HC12"></a>
  59. <div class="header">
  60. <p>
  61. Next: <a href="ARM.html#ARM" accesskey="n" rel="next">ARM</a>, Previous: <a href="i960.html#i960" accesskey="p" rel="prev">i960</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>
  62. </div>
  63. <hr>
  64. <a name="ld-and-the-Motorola-68HC11-and-68HC12-families"></a>
  65. <h3 class="section">4.3 <code>ld</code> and the Motorola 68HC11 and 68HC12 families</h3>
  66. <a name="index-M68HC11-and-68HC12-support"></a>
  67. <a name="Linker-Relaxation"></a>
  68. <h4 class="subsection">4.3.1 Linker Relaxation</h4>
  69. <p>For the Motorola 68HC11, <code>ld</code> can perform these global
  70. optimizations when you specify the &lsquo;<samp>--relax</samp>&rsquo; command-line option.
  71. </p>
  72. <dl compact="compact">
  73. <dd><a name="index-relaxing-on-M68HC11"></a>
  74. </dd>
  75. <dt><em>relaxing address modes</em></dt>
  76. <dd><p><code>ld</code> finds all <code>jsr</code> and <code>jmp</code> instructions whose
  77. targets are within eight bits, and turns them into eight-bit
  78. program-counter relative <code>bsr</code> and <code>bra</code> instructions,
  79. respectively.
  80. </p>
  81. <p><code>ld</code> also looks at all 16-bit extended addressing modes and
  82. transforms them in a direct addressing mode when the address is in
  83. page 0 (between 0 and 0x0ff).
  84. </p>
  85. </dd>
  86. <dt><em>relaxing gcc instruction group</em></dt>
  87. <dd><p>When <code>gcc</code> is called with <samp>-mrelax</samp>, it can emit group
  88. of instructions that the linker can optimize to use a 68HC11 direct
  89. addressing mode. These instructions consists of <code>bclr</code> or
  90. <code>bset</code> instructions.
  91. </p>
  92. </dd>
  93. </dl>
  94. <a name="Trampoline-Generation"></a>
  95. <h4 class="subsection">4.3.2 Trampoline Generation</h4>
  96. <a name="index-trampoline-generation-on-M68HC11"></a>
  97. <a name="index-trampoline-generation-on-M68HC12"></a>
  98. <p>For 68HC11 and 68HC12, <code>ld</code> can generate trampoline code to
  99. call a far function using a normal <code>jsr</code> instruction. The linker
  100. will also change the relocation to some far function to use the
  101. trampoline address instead of the function address. This is typically the
  102. case when a pointer to a function is taken. The pointer will in fact
  103. point to the function trampoline.
  104. </p>
  105. </body>
  106. </html>