JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
SPARC Assembly Language Reference Manual     Oracle Solaris 11.1 Information Library
search filter icon
search icon

Document Information

Preface

1.  SPARC Assembler Syntax

2.  Executable and Linking Format

2.1 Sections

2.1.1 Section Header

2.1.2 Predefined User Sections

2.1.2.1 Creating an .init Section in an Object File

2.1.2.2 Creating a .fini Section in an Object File

2.1.3 Predefined Non-User Sections

2.1.4 Symbol Tables

2.1.5 String Tables

2.2 Locations

2.3 Addresses

2.3.1 Relocation Tables

2.4 Tools

3.  Directives and Pseudo-Operations

4.  Creating Data in Assembler

5.  SPARC Code Models

6.  Writing Functions -- The SPARC ABI

7.  Assembler Inline Functions and __asm Code

A.  Using the Assembler Command Line

B.  A Sample Assembler Program

C.  SPARC Instruction Sets and Mnemonics

Index

2.2 Locations

A location is a specific position within a section. Each location is identified by a section and a byte offset from the beginning of the section. The current location is the location within the current section where code is generated.

A location counter tracks the current offset within each section where code or data is being generated. When a section control directive (for example, the .section pseudo-op) is processed, the location information from the location counter associated with the new section is assigned to and stored with the name and value of the current location.

The current location is updated at the end of processing each statement, but can be updated during processing of data-generating assembler directives (for example, the .word pseudo-op).


Note - Each section has one location counter; if more than one section is present, only one location can be current at any time.