Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

143 lines
7.0KB

  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 "Free Software" and "Free Software Needs
  8. Free Documentation", with the Front-Cover Texts being "A GNU Manual,"
  9. and with the Back-Cover Texts as in (a) below.
  10. (a) The FSF's Back-Cover Text is: "You are free to copy and modify
  11. this GNU Manual. Buying copies from GNU Press supports the FSF in
  12. developing GNU and promoting software freedom." -->
  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>Lazy Strings In Guile (Debugging with GDB)</title>
  17. <meta name="description" content="Lazy Strings In Guile (Debugging with GDB)">
  18. <meta name="keywords" content="Lazy Strings In Guile (Debugging with GDB)">
  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="Concept-Index.html#Concept-Index" rel="index" title="Concept Index">
  24. <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
  25. <link href="Guile-API.html#Guile-API" rel="up" title="Guile API">
  26. <link href="Architectures-In-Guile.html#Architectures-In-Guile" rel="next" title="Architectures In Guile">
  27. <link href="Breakpoints-In-Guile.html#Breakpoints-In-Guile" rel="prev" title="Breakpoints In Guile">
  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="Lazy-Strings-In-Guile"></a>
  58. <div class="header">
  59. <p>
  60. Next: <a href="Architectures-In-Guile.html#Architectures-In-Guile" accesskey="n" rel="next">Architectures In Guile</a>, Previous: <a href="Breakpoints-In-Guile.html#Breakpoints-In-Guile" accesskey="p" rel="prev">Breakpoints In Guile</a>, Up: <a href="Guile-API.html#Guile-API" accesskey="u" rel="up">Guile API</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
  61. </div>
  62. <hr>
  63. <a name="Guile-representation-of-lazy-strings_002e"></a>
  64. <h4 class="subsubsection">23.3.3.20 Guile representation of lazy strings.</h4>
  65. <a name="index-lazy-strings-in-guile"></a>
  66. <a name="index-_003cgdb_003alazy_002dstring_003e"></a>
  67. <p>A <em>lazy string</em> is a string whose contents is not retrieved or
  68. encoded until it is needed.
  69. </p>
  70. <p>A <code>&lt;gdb:lazy-string&gt;</code> is represented in <small>GDB</small> as an
  71. <code>address</code> that points to a region of memory, an <code>encoding</code>
  72. that will be used to encode that region of memory, and a <code>length</code>
  73. to delimit the region of memory that represents the string. The
  74. difference between a <code>&lt;gdb:lazy-string&gt;</code> and a string wrapped within
  75. a <code>&lt;gdb:value&gt;</code> is that a <code>&lt;gdb:lazy-string&gt;</code> will be treated
  76. differently by <small>GDB</small> when printing. A <code>&lt;gdb:lazy-string&gt;</code> is
  77. retrieved and encoded during printing, while a <code>&lt;gdb:value&gt;</code>
  78. wrapping a string is immediately retrieved and encoded on creation.
  79. </p>
  80. <p>The following lazy-string-related procedures are provided by the
  81. <code>(gdb)</code> module:
  82. </p>
  83. <dl>
  84. <dt><a name="index-lazy_002dstring_003f"></a>Scheme Procedure: <strong>lazy-string?</strong> <em>object</em></dt>
  85. <dd><p>Return <code>#t</code> if <var>object</var> is an object of type <code>&lt;gdb:lazy-string&gt;</code>.
  86. Otherwise return <code>#f</code>.
  87. </p></dd></dl>
  88. <dl>
  89. <dt><a name="index-lazy_002dstring_002daddress"></a>Scheme Procedure: <strong>lazy-string-address</strong> <em>lazy-sring</em></dt>
  90. <dd><p>Return the address of <var>lazy-string</var>.
  91. </p></dd></dl>
  92. <dl>
  93. <dt><a name="index-lazy_002dstring_002dlength"></a>Scheme Procedure: <strong>lazy-string-length</strong> <em>lazy-string</em></dt>
  94. <dd><p>Return the length of <var>lazy-string</var> in characters. If the
  95. length is -1, then the string will be fetched and encoded up to the
  96. first null of appropriate width.
  97. </p></dd></dl>
  98. <dl>
  99. <dt><a name="index-lazy_002dstring_002dencoding"></a>Scheme Procedure: <strong>lazy-string-encoding</strong> <em>lazy-string</em></dt>
  100. <dd><p>Return the encoding that will be applied to <var>lazy-string</var>
  101. when the string is printed by <small>GDB</small>. If the encoding is not
  102. set, or contains an empty string, then <small>GDB</small> will select the
  103. most appropriate encoding when the string is printed.
  104. </p></dd></dl>
  105. <dl>
  106. <dt><a name="index-lazy_002dstring_002dtype"></a>Scheme Procedure: <strong>lazy-string-type</strong> <em>lazy-string</em></dt>
  107. <dd><p>Return the type that is represented by <var>lazy-string</var>&rsquo;s type.
  108. For a lazy string this is a pointer or array type. To
  109. resolve this to the lazy string&rsquo;s character type, use <code>type-target-type</code>.
  110. See <a href="Types-In-Guile.html#Types-In-Guile">Types In Guile</a>.
  111. </p></dd></dl>
  112. <dl>
  113. <dt><a name="index-lazy_002dstring_002d_003evalue"></a>Scheme Procedure: <strong>lazy-string-&gt;value</strong> <em>lazy-string</em></dt>
  114. <dd><p>Convert the <code>&lt;gdb:lazy-string&gt;</code> to a <code>&lt;gdb:value&gt;</code>. This value
  115. will point to the string in memory, but will lose all the delayed
  116. retrieval, encoding and handling that <small>GDB</small> applies to a
  117. <code>&lt;gdb:lazy-string&gt;</code>.
  118. </p></dd></dl>
  119. <hr>
  120. <div class="header">
  121. <p>
  122. Next: <a href="Architectures-In-Guile.html#Architectures-In-Guile" accesskey="n" rel="next">Architectures In Guile</a>, Previous: <a href="Breakpoints-In-Guile.html#Breakpoints-In-Guile" accesskey="p" rel="prev">Breakpoints In Guile</a>, Up: <a href="Guile-API.html#Guile-API" accesskey="u" rel="up">Guile API</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
  123. </div>
  124. </body>
  125. </html>