⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 comm.html

📁 gcc手册
💻 HTML
字号:
<html lang="en">

<head>

<title>Using as</title>

<meta http-equiv="Content-Type" content="text/html">

<meta name="description" content="Using as">

<meta name="generator" content="makeinfo 4.3">

<link href="http://www.gnu.org/software/texinfo/" rel="generator-home">

</head>

<body>

<div class="node">

<p>

Node:<a name="Comm">Comm</a>,

Next:<a rel="next" accesskey="n" href="Data.html#Data">Data</a>,

Previous:<a rel="previous" accesskey="p" href="Byte.html#Byte">Byte</a>,

Up:<a rel="up" accesskey="u" href="Pseudo-Ops.html#Pseudo%20Ops">Pseudo Ops</a>

<hr><br>

</div>



<h3 class="section"><code>.comm </code><var>symbol</var><code> , </code><var>length</var><code> </code></h3>



   <p><code>.comm</code> declares a common symbol named <var>symbol</var>.  When linking, a

common symbol in one object file may be merged with a defined or common symbol

of the same name in another object file.  If <code>ld</code> does not see a

definition for the symbol-just one or more common symbols-then it will

allocate <var>length</var> bytes of uninitialized memory.  <var>length</var> must be an

absolute expression.  If <code>ld</code> sees multiple common symbols with

the same name, and they do not all have the same size, it will allocate space

using the largest size.



   <p>When using ELF, the <code>.comm</code> directive takes an optional third argument. 

This is the desired alignment of the symbol, specified as a byte boundary (for

example, an alignment of 16 means that the least significant 4 bits of the

address should be zero).  The alignment must be an absolute expression, and it

must be a power of two.  If <code>ld</code> allocates uninitialized memory

for the common symbol, it will use the alignment when placing the symbol.  If

no alignment is specified, <code>as</code> will set the alignment to the

largest power of two less than or equal to the size of the symbol, up to a

maximum of 16.



   <p>The syntax for <code>.comm</code> differs slightly on the HPPA.  The syntax is

<code></code><var>symbol</var><code> .comm, </code><var>length</var><code></code>; <var>symbol</var> is optional.



   </body></html>



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -