Home | History | Annotate | Download | only in info

Lines Matching full:subsection

2333 into the same subsection go into the object file together with other
2334 objects in the same subsection. For example, a compiler might want to
2341 goes in subsection number zero.
2343 Each subsection is zero-padded up to a multiple of four bytes.
2354 To specify which subsection you want subsequent statements assembled
2357 also use an extra subsection argument with arbitrary named sections:
2359 use the `.subsection' directive (*note SubSection::) to specify a
2360 subsection: `.subsection EXPRESSION'. EXPRESSION should be an absolute
2364 .text 0 # The default subsection is text 0 anyway.
2365 .ascii "This lives in the first text subsection. *"
2367 .ascii "But this lives in the second text subsection."
2370 .ascii "in the first data subsection."
2377 convenience restricted to `as' there is no concept of a subsection
2945 * Data:: `.data SUBSECTION'
3052 * SubSection:: `.subsection'
3058 * Text:: `.text SUBSECTION'
3105 Pad the location counter (in the current subsection) to a particular
3207 Pad the location counter (in the current subsection) to a particular
3445 7.31 `.data SUBSECTION'
3449 the data subsection numbered SUBSECTION (which is an absolute
3450 expression). If SUBSECTION is omitted, it defaults to zero.
4401 as the current subsection. That is, you can't use `.org' to cross
4405 NEW-LC is the same as the current subsection.
4415 to the start of the subsection. This is compatible with other people's
4418 When the location counter (of the current subsection) is advanced,
4428 Pad the location counter (in the current subsection) to a particular
4466 others are `.section' (*note Section::), `.subsection' (*note
4467 SubSection::), `.pushsection' (*note PushSection::), and `.previous'
4470 This directive replaces the current section (and subsection) with
4471 the top section (and subsection) on the section stack. This section is
4481 others are `.section' (*note Section::), `.subsection' (*note
4482 SubSection::), `.pushsection' (*note PushSection::), and `.popsection'
4485 This directive swaps the current section (and subsection) with most
4486 recently referenced section/subsection pair prior to this one. Multiple
4491 .subsection 1
4493 .subsection 2
4498 Will place 0x1234 and 0x9abc into subsection 1 and 0x5678 into
4499 subsection 2 of section A. Whilst:
4502 .subsection 1
4503 # Now in section A subsection 1
4506 .subsection 0
4507 # Now in section B subsection 0
4509 .subsection 1
4510 # Now in section B subsection 1
4513 # Now in section B subsection 0
4516 Will place 0x1234 into section A, 0x5678 and 0xdef0 into subsection
4517 0 of section B and 0x9abc into subsection 1 of section B.
4578 7.90 `.pushsection NAME [, SUBSECTION] [, "FLAGS"[, @TYPE[,ARGUMENTS]]]'
4582 others are `.section' (*note Section::), `.subsection' (*note
4583 SubSection::), `.popsection' (*note PopSection::), and `.previous'
4586 This directive pushes the current section (and subsection) onto the
4588 subsection with `name' and `subsection'. The optional `flags', `type'
4686 .section NAME[, SUBSECTION]
4729 it is taken as a subsection number (*note Sub-Sections::).
4735 others are `.subsection' (*note SubSection::), `.pushsection' (*note
4868 This directive replaces the current section and subsection. See the
5057 File: as.info, Node: Struct, Next: SubSection, Prev: String, Up: Pseudo Ops
5078 File: as.info, Node: SubSection, Next: Symver, Prev: Struct, Up: Pseudo Ops
5080 7.107 `.subsection NAME'
5088 This directive replaces the current subsection with `name'. The
5089 current section is not changed. The replaced subsection is put onto
5090 the section stack in place of the then current top of stack subsection.
5093 File: as.info, Node: Symver, Next: Tag, Prev: SubSection, Up: Pseudo Ops
5155 7.110 `.text SUBSECTION'
5159 text subsection numbered SUBSECTION, which is an absolute expression.
5160 If SUBSECTION is omitted, subsection number zero is used.
9277 Assemble into the standard section called `$TEXT$', subsection
9379 Similar to `.space', but selects a subsection NAME within the
9381 subsection (in the first instance of `.subspa' for this NAME).
9384 subsection, identified by keywords. The keywords recognized are
9385 `quad=EXPR' ("quadrant" for this subsection), `align=EXPR'
9386 (alignment for beginning of this subsection; a power of two),
9388 (sorting order for this subspace in link), `code_only' (subsection
9389 contains only code), `unloadable' (subsection cannot be loaded
9390 into memory), `comdat' (subsection is comdat), `common'
9391 (subsection is common block), `dup_comm' (subsection may have
9392 duplicate names), or `zero' (subsection is all zeros, do not write
21730 * Section Stack <1>: SubSection. (line 6)
21865 * subsection directive: SubSection. (line 6)
22247 Node: SubSection179908