The first assembly code in which a language is used to represent machine code instructions is found inKathleen andAndrew Donald Booth's 1947 work,Coding for A.R.C..[8] Assembly code is converted into executable machine code by autility program referred to as anassembler. The term "assembler" is generally attributed toWilkes,Wheeler andGill in their 1951 bookThe Preparation of Programs for an Electronic Digital Computer,[9] who, however, used the term to mean "a program that assembles another program consisting of several sections into a single program".[10] The conversion process is referred to asassembly, as inassembling thesource code. The computational step when an assembler is processing a program is calledassembly time.
Sometimes there is more than one assembler for the same architecture, and sometimes an assembler is specific to anoperating system or to particular operating systems. Most assembly languages do not provide specificsyntax for operating system calls, and most assembly languages can be used universally with any operating system,[nb 2] as the language provides access to all the real capabilities of theprocessor, upon which allsystem call mechanisms ultimately rest. In contrast to assembly languages, mosthigh-level programming languages are generallyportable across multiple architectures but requireinterpreting orcompiling, much more complicated tasks than assembling.
In the first decades of computing, it was commonplace for bothsystems programming andapplication programming to take place entirely in assembly language. While still irreplaceable for some purposes, the majority of programming is now conducted in higher-level interpreted and compiled languages. In "No Silver Bullet",Fred Brooks summarised the effects of the switch away from assembly language programming: "Surely the most powerful stroke for software productivity, reliability, and simplicity has been the progressive use of high-level languages for programming. Most observers credit that development with at least a factor of five in productivity, and with concomitant gains in reliability, simplicity, and comprehensibility."[14]
Today, it is typical to use small amounts of assembly language code within larger systems implemented in a higher-level language, for performance reasons or to interact directly with hardware in ways unsupported by the higher-level language. For instance, just under 2% of version 4.9 of theLinux kernel source code is written in assembly; more than 97% is written inC.[15]
Assembly language uses amnemonic to represent, e.g., each low-levelmachine instruction oropcode, eachdirective, typically also eacharchitectural register,flag, etc. Some of the mnemonics may be built-in and some user-defined. Many operations require one or moreoperands in order to form a complete instruction. Most assemblers permit named constants, registers, andlabels for program and memory locations, and can calculateexpressions for operands. Thus, programmers are freed from tedious repetitive calculations and assembler programs are much more readable than machine code. Depending on the architecture, these elements may also be combined for specific instructions oraddressing modes usingoffsets or other data as well as fixed addresses. Many assemblers offer additional mechanisms to facilitate program development, to control the assembly process, and to aiddebugging.
Some are column oriented, with specific fields in specific columns; this was very common for machines usingpunched cards in the 1950s and early 1960s. Some assemblers have free-form syntax, with fields separated by delimiters, e.g., punctuation,white space. Some assemblers are hybrid, with, e.g., labels, in a specific column and other fields separated by delimiters; this became more common than column-oriented syntax in the 1960s.
Amacro assembler is an assembler that includes amacroinstruction facility so that (parameterized) assembly language text can be represented by a name, and that name can be used to insert the expanded text into other code.
Open code refers to any assembler input outside of a macro definition.
Across assembler (see alsocross compiler) is an assembler that is run on a computer oroperating system (thehost system) of a different type from the system on which the resulting code is to run (thetarget system). Cross-assembling facilitates the development of programs for systems that do not have the resources to support software development, such as anembedded system or amicrocontroller. In such a case, the resultingobject code must be transferred to the target system, viaread-only memory (ROM,EPROM, etc.), aprogrammer (when the read-only memory is integrated in the device, as in microcontrollers), or a data link using either an exact bit-by-bit copy of the object code or a text-based representation of that code (such asIntel hex orMotorola S-record).
Ahigh-level assembler is a program that provides language abstractions more often associated with high-level languages, such as advanced control structures (IF/THEN/ELSE, DO CASE, etc.) and high-level abstract data types, including structures/records, unions, classes, and sets.
Amicroassembler is a program that helps prepare amicroprogram to control the low level operation of a computer.
Ameta-assembler is "a program that accepts the syntactic and semantic description of an assembly language, and generates an assembler for that language",[16] or that accepts an assembler source file along with such a description and assembles the source file in accordance with that description. "Meta-Symbol" assemblers for theSDS 9 Series andSDS Sigma series of computers are meta-assemblers.[17]Sperry Univac also provided a Meta-Assembler for theUNIVAC 1100/2200 series.[18]
inline assembler (orembedded assembler) is assembler code contained within a high-level language program.[19] This is most often used in systems programs which need direct access to the hardware.
Anassembler program createsobject code bytranslating combinations ofmnemonics andsyntax for operations and addressing modes into their numerical equivalents. This representation typically includes anoperation code ("opcode") as well as other controlbits and data. The assembler also calculates constant expressions and resolvessymbolic names for memory locations and other entities.[20] The use of symbolic references is a key feature of assemblers, saving tedious calculations and manual address updates after program modifications. Most assemblers also includemacro facilities for performing textual substitution – e.g., to generate common short sequences of instructions asinline, instead ofcalledsubroutines.
Some assemblers may also be able to perform some simple types ofinstruction set-specificoptimizations. One concrete example of this may be the ubiquitousx86 assemblers from various vendors. Calledjump-sizing,[20] most of them are able to perform jump-instruction replacements (long jumps replaced by short or relative jumps) in any number of passes, on request. Others may even do simple rearrangement or insertion of instructions, such as some assemblers forRISC architectures that can help optimize a sensibleinstruction scheduling to exploit theCPU pipeline as efficiently as possible.[21]
Assemblers have been available since the 1950s, as the first step above machine language and beforehigh-level programming languages such asFortran,Algol,COBOL andLisp. There have also been several classes of translators and semi-automaticcode generators with properties similar to both assembly and high-level languages, withSpeedcode as perhaps one of the better-known examples.
There may be several assemblers with differentsyntax for a particularCPU orinstruction set architecture. For instance, an instruction to add memory data to a register in ax86-family processor might beadd eax,[ebx], in originalIntel syntax, whereas this would be writtenaddl (%ebx),%eax in theAT&T syntax used by theGNU Assembler. Despite different appearances, different syntactic forms generally generate the same numericmachine code. A single assembler may also have different modes in order to support variations in syntactic forms as well as their exact semantic interpretations (such asFASM-syntax,TASM-syntax, ideal mode, etc., in the special case ofx86 assembly programming).
There are two types of assemblers based on how many passes through the source are needed (how many times the assembler reads the source) to produce the object file.
One-pass assemblers process the source code once. For symbols used before they are defined, the assembler will emit"errata" after the eventual definition, telling thelinker or the loader to patch the locations where the as yet undefined symbols had been used.
Multi-pass assemblers create a table with all symbols and their values in the first passes, then use the table in later passes to generate code.
In both cases, the assembler must be able to determine the size of each instruction on the initial passes in order to calculate the addresses of subsequent symbols. This means that if the size of an operation referring to an operand defined later depends on the type or distance of the operand, the assembler will make a pessimistic estimate when first encountering the operation, and if necessary, pad it with one or more"no-operation" instructions in a later pass or the errata. In an assembler withpeephole optimization, addresses may be recalculated between passes to allow replacing pessimistic code with code tailored to the exact distance from the target.
The original reason for the use of one-pass assemblers was memory size and speed of assembly – often a second pass would require storing the symbol table in memory (to handleforward references), rewinding and rereading the program source ontape, or rereading a deck ofcards orpunched paper tape. Later computers with much larger memories (especially disc storage), had the space to perform all necessary processing without such re-reading. The advantage of the multi-pass assembler is that the absence of errata makes thelinking process (or theprogram load if the assembler directly produces executable code) faster.[22]
Example: in the following code snippet, a one-pass assembler would be able to determine the address of the backward referenceBKWD when assembling statementS2, but would not be able to determine the address of the forward referenceFWD when assembling the branch statementS1; indeed,FWD may be undefined. A two-pass assembler would determine both addresses in pass 1, so they would be known when generating code in pass 2.
High-level procedure/function declarations and invocations
Advanced control structures (IF/THEN/ELSE, SWITCH)
High-level abstract data types, including structures/records, unions, classes, and sets
Sophisticated macro processing (although available on ordinary assemblers since the late 1950s for, e.g., theIBM 700 series andIBM 7000 series, and since the 1960s forIBM System/360 (S/360), amongst other machines)
A program written in assembly language consists of a series ofmnemonic processor instructions and meta-statements (known variously as declarative operations, directives, pseudo-instructions, pseudo-operations and pseudo-ops), comments and data. Assembly language instructions usually consist of anopcode mnemonic followed by anoperand, which might be a list of data, arguments or parameters.[24] Some instructions may be "implied", which means the data upon which the instruction operates is implicitly defined by the instruction itself—such an instruction does not take an operand. The resulting statement is translated by anassembler intomachine language instructions that can be loaded into memory and executed.
For example, the instruction below tells anx86/IA-32 processor to move animmediate 8-bit value into aregister. Thebinary code for this instruction is 10110 followed by a 3-bit identifier for which register to use. The identifier for theAL register is 000, so the followingmachine code loads theAL register with the data 01100001.[24]
10110000 01100001
This binary computer code can be made more human-readable by expressing it inhexadecimal as follows.
B0 61
Here,B0 means "Move a copy of the following value intoAL", and61 is a hexadecimal representation of the value 01100001, which is 97 indecimal. Assembly language for the 8086 family provides themnemonicMOV (an abbreviation ofmove) for instructions such as this, so the machine code above can be written as follows in assembly language, complete with an explanatory comment if required, after the semicolon. This is much easier to read and to remember.
MOVAL,61h; Load AL with 97 decimal (61 hex)
In some assembly languages (including this one) the same mnemonic, such as MOV, may be used for a family of related instructions for loading, copying and moving data, whether these are immediate values, values in registers, or memory locations pointed to by values in registers or by immediate (a.k.a. direct) addresses. Other assemblers may use separate opcode mnemonics such as L for "move memory to register", ST for "move register to memory", LR for "move register to register", MVI for "move immediate operand to memory", etc.
If the same mnemonic is used for different instructions, that means that the mnemonic corresponds to several different binary instruction codes, excluding data (e.g. the61h in this example), depending on the operands that follow the mnemonic. For example, for the x86/IA-32 CPUs, the Intel assembly language syntaxMOV AL, AH represents an instruction that moves the contents of registerAH into registerAL. The[nb 3] hexadecimal form of this instruction is:
88 E0
The first byte, 88h, identifies a move between a byte-sized register and either another register or memory, and the second byte, E0h, is encoded (with three bit-fields) to specify that both operands are registers, the source isAH, and the destination isAL.
In a case like this where the same mnemonic can represent more than one binary instruction, the assembler determines which instruction to generate by examining the operands. In the first example, the operand61h is a valid hexadecimal numeric constant and is not a valid register name, so only theB0 instruction can be applicable. In the second example, the operandAH is a valid register name and not a valid numeric constant (hexadecimal, decimal, octal, or binary), so only the88 instruction can be applicable.
Assembly languages are always designed so that this sort of lack of ambiguity is universally enforced by their syntax. For example, in the Intel x86 assembly language, a hexadecimal constant must start with a numeral digit, so that the hexadecimal number 'A' (equal to decimal ten) would be written as0Ah or0AH, notAH, specifically so that it cannot appear to be the name of registerAH. (The same rule also prevents ambiguity with the names of registersBH,CH, andDH, as well as with any user-defined symbol that ends with the letterH and otherwise contains only characters that are hexadecimal digits, such as the word "BEACH".)
Returning to the original example, while the x86 opcode 10110000 (B0) copies an 8-bit value into theAL register, 10110001 (B1) moves it intoCL and 10110010 (B2) does so intoDL. Assembly language examples for these follow.[24]
MOVAL,1h; Load AL with immediate value 1MOVCL,2h; Load CL with immediate value 2MOVDL,3h; Load DL with immediate value 3
The syntax of MOV can also be more complex as the following examples show.[25]
MOVEAX,[EBX]; Move the 4 bytes in memory at the address contained in EBX into EAXMOV[ESI+EAX],CL; Move the contents of CL into the byte at address ESI+EAXMOVDS,DX; Move the contents of DX into segment register DS
In each case, the MOV mnemonic is translated directly into one of the opcodes 88-8C, 8E, A0-A3, B0-BF, C6 or C7 by an assembler, and the programmer normally does not have to know or remember which.[24]
Transforming assembly language into machine code is the job of an assembler, and the reverse can at least partially be achieved by adisassembler. Unlikehigh-level languages, there is aone-to-one correspondence between many simple assembly statements and machine language instructions. However, in some cases, an assembler may providepseudoinstructions (essentially macros) which expand into several machine language instructions to provide commonly needed functionality. For example, for a machine that lacks a "branch if greater or equal" instruction, an assembler may provide a pseudoinstruction that expands to the machine's "set if less than" and "branch if zero (on the result of the set instruction)". Most full-featured assemblers also provide a richmacro language (discussed below) which is used by vendors and programmers to generate more complex code and data sequences. Since the information about pseudoinstructions and macros defined in the assembler environment is not present in the object program, a disassembler cannot reconstruct the macro and pseudoinstruction invocations but can only disassemble the actual machine instructions that the assembler generated from those abstract assembly-language entities. Likewise, since comments in the assembly language source file are ignored by the assembler and have no effect on the object code it generates, a disassembler is always completely unable to recover source comments.
Eachcomputer architecture has its own machine language. Computers differ in the number and type of operations they support, in the different sizes and numbers of registers, and in the representations of data in storage. While most general-purpose computers are able to carry out essentially the same functionality, the ways they do so differ; the corresponding assembly languages reflect these differences.
Multiple sets ofmnemonics or assembly-language syntax may exist for a single instruction set, typically instantiated in different assembler programs. In these cases, the most popular one is usually that supplied by the CPU manufacturer and used in its documentation.
Two examples of CPUs that have two different sets of mnemonics are the Intel 8080 family and the Intel 8086/8088. Because Intel claimed copyright on its assembly language mnemonics (on each page of their documentation published in the 1970s and early 1980s, at least), some companies that independently produced CPUs compatible with Intel instruction sets invented their own mnemonics. TheZilog Z80 CPU, an enhancement of theIntel 8080A, supports all the 8080A instructions plus many more; Zilog invented an entirely new assembly language, not only for the new instructions but also for all of the 8080A instructions. For example, where Intel uses the mnemonicsMOV,MVI,LDA,STA,LXI,LDAX,STAX,LHLD, andSHLD for various data transfer instructions, the Z80 assembly language uses the mnemonicLD for all of them. A similar case is theNEC V20 andV30 CPUs, enhanced copies of the Intel 8086 and 8088, respectively. Like Zilog with the Z80, NEC invented new mnemonics for all of the 8086 and 8088 instructions, to avoid accusations of infringement of Intel's copyright. (It is questionable whether such copyrights can be valid, and later CPU companies such asAMD[nb 4] andCyrix republished Intel's x86/IA-32 instruction mnemonics exactly with neither permission nor legal penalty.) It is doubtful whether in practice many people who programmed the V20 and V30 actually wrote in NEC's assembly language rather than Intel's; since any two assembly languages for the same instruction set architecture are isomorphic (somewhat like English andPig Latin), there is no requirement to use a manufacturer's own published assembly language with that manufacturer's products.
In 32-bit assembly language for Linux on anx86 processor, "Hello, world!" can be printed like this.
section.textglobal_start_start:movedx,len; length of string, third argument to write()movecx,msg; address of string, second argument to write()movebx,1; file descriptor (standard output), first argument to write()moveax,4; system call number for write()int0x80; system call trapmovebx,0; exit code, first argument to exit()moveax,1; system call number for exit()int0x80; system call trapsection.datamsgdb'Hello, world!',0xalenequ$-msg
There is a large degree of diversity in the way the authors of assemblers categorize statements and in the nomenclature that they use. In particular, some describe anything other than a machine mnemonic or extended mnemonic as a pseudo-operation (pseudo-op). A typical assembly language consists of 3 types of instruction statements that are used to define program operations:
Instructions (statements) in assembly language are generally very simple, unlike those inhigh-level languages. Generally, a mnemonic is a symbolic name for a single executable machine language instruction (anopcode), and there is at least one opcode mnemonic defined for each machine language instruction. Each instruction typically consists of anoperation oropcode plus zero or moreoperands. Most instructions refer to a single value or a pair of values. Operands can be immediate (value coded in the instruction itself), registers specified in the instruction or implied, or the addresses of data located elsewhere in storage. This is determined by the underlying processor architecture: the assembler merely reflects how this architecture works.Extended mnemonics are often used to specify a combination of an opcode with a specific operand, e.g., the System/360 assemblers useB as an extended mnemonic forBC with a mask of 15 andNOP ("NO OPeration" – do nothing for one step) forBC with a mask of 0.
Extended mnemonics are often used to support specialized uses of instructions, often for purposes not obvious from the instruction name. For example, many CPU's do not have an explicit NOP instruction, but do have instructions that can be used for the purpose. In 8086 CPUs the instructionxchgax,ax is used fornop, withnop being a pseudo-opcode to encode the instructionxchgax,ax. Some disassemblers recognize this and will decode thexchgax,ax instruction asnop. Similarly, IBM assemblers forSystem/360 andSystem/370 use the extended mnemonicsNOP andNOPR forBC andBCR with zero masks. For the SPARC architecture, these are known assynthetic instructions.[26]
Some assemblers also support simple built-in macro-instructions that generate two or more machine instructions. For instance, with some Z80 assemblers the instructionld hl,bc is recognized to generateld l,c followed byld h,b.[27] These are sometimes known aspseudo-opcodes.
Mnemonics are arbitrary symbols; in 1985 theIEEE published Standard 694 for a uniform set of mnemonics to be used by all assemblers.[28] The standard has since been withdrawn.
There are instructions used to define data elements to hold data and variables. They define the type of data, the length and thealignment of data. These instructions can also define whether the data is available to outside programs (programs assembled separately) or only to the program in which the data section is defined. Some assemblers classify these as pseudo-ops.
Assembly directives, also called pseudo-opcodes, pseudo-operations or pseudo-ops, are commands given to an assembler "directing it to perform operations other than assembling instructions".[20] Directives affect how the assembler operates and "may affect the object code, the symbol table, the listing file, and the values of internal assembler parameters". Sometimes the termpseudo-opcode is reserved for directives that generate object code, such as those that generate data.[29]
The names of pseudo-ops often start with a dot to distinguish them from machine instructions. Pseudo-ops can make the assembly of the program dependent on parameters input by a programmer, so that one program can be assembled in different ways, perhaps for different applications. Or, a pseudo-op can be used to manipulate presentation of a program to make it easier to read and maintain. Another common use of pseudo-ops is to reserve storage areas for run-time data and optionally initialize their contents to known values.
Symbolic assemblers let programmers associate arbitrary names (labels orsymbols) with memory locations and various constants. Usually, every constant and variable is given a name so instructions can reference those locations by name, thus promotingself-documenting code. In executable code, the name of each subroutine is associated with its entry point, so any calls to a subroutine can use its name. Inside subroutines,GOTO destinations are given labels. Some assemblers supportlocal symbols which are often lexically distinct from normal symbols (e.g., the use of "10$" as a GOTO destination).
Some assemblers, such asNASM, provide flexible symbol management, letting programmers manage differentnamespaces, automatically calculate offsets withindata structures, and assign labels that refer to literal values or the result of simple computations performed by the assembler. Labels can also be used to initialize constants and variables with relocatable addresses.
Assembly languages, like most other computer languages, allow comments to be added to programsource code that will be ignored during assembly. Judicious commenting is essential in assembly language programs, as the meaning and purpose of a sequence of binary machine instructions can be difficult to determine. The "raw" (uncommented) assembly language generated by compilers or disassemblers is quite difficult to read when changes must be made.
Many assemblers supportpredefined macros, and others supportprogrammer-defined (and repeatedly re-definable) macros involving sequences of text lines in which variables and constants are embedded. The macro definition is most commonly[nb 5] a mixture of assembler statements, e.g., directives, symbolic machine instructions, and templates for assembler statements. This sequence of text lines may include opcodes or directives. Once a macro has been defined its name may be used in place of a mnemonic. When the assembler processes such a statement, it replaces the statement with the text lines associated with that macro, then processes them as if they existed in the source code file (including, in some assemblers, expansion of any macros existing in the replacement text). Macros in this sense date to IBMautocoders of the 1950s.[30]
Macro assemblers typically have directives to, e.g., define macros, define variables, set variables to the result of an arithmetic, logical or string expression, iterate, conditionally generate code. Some of those directives may be restricted to use within a macro definition, e.g.,MEXIT inHLASM, while others may be permitted within open code (outside macro definitions), e.g.,AIF andCOPY in HLASM.
In assembly language, the term "macro" represents a more comprehensive concept than it does in some other contexts, such as thepre-processor in theC programming language, where its #define directive typically is used to create short single line macros. Assembler macro instructions, like macros inPL/I and some other languages, can be lengthy "programs" by themselves, executed by interpretation by the assembler during assembly.
Since macros can have 'short' names but expand to several or indeed many lines of code, they can be used to make assembly language programs appear to be far shorter, requiring fewer lines of source code, as with higher level languages. They can also be used to add higher levels of structure to assembly programs, optionally introduce embedded debugging code via parameters and other similar features.
Macro assemblers often allow macros to takeparameters. Some assemblers include quite sophisticated macro languages, incorporating such high-level language elements as optional parameters, symbolic variables, conditionals, string manipulation, and arithmetic operations, all usable during the execution of a given macro, and allowing macros to save context or exchange information. Thus a macro might generate numerous assembly language instructions or data definitions, based on the macro arguments. This could be used to generate record-style data structures or "unrolled" loops, for example, or could generate entire algorithms based on complex parameters. For instance, a "sort" macro could accept the specification of a complex sort key and generate code crafted for that specific key, not needing the run-time tests that would be required for a general procedure interpreting the specification. An organization using assembly language that has been heavily extended using such a macro suite can be considered to be working in a higher-level language since such programmers are not working with a computer's lowest-level conceptual elements. Underlining this point, macros were used to implement an earlyvirtual machine inSNOBOL4 (1967), which was written in the SNOBOL Implementation Language (SIL), an assembly language for a virtual machine. The target machine would translate this to its native code using amacro assembler.[31] This allowed a high degree of portability for the time.
Macros were used to customize large scale software systems for specific customers in the mainframe era and were also used by customer personnel to satisfy their employers' needs by making specific versions of manufacturer operating systems. This was done, for example, by systems programmers working withIBM's Conversational Monitor System / Virtual Machine (VM/CMS) and with IBM's "real time transaction processing" add-ons, Customer Information Control SystemCICS, andACP/TPF, the airline/financial system that began in the 1970s and still runs many largecomputer reservation systems (CRS) and credit card systems today.
It is also possible to use solely the macro processing abilities of an assembler to generate code written in completely different languages, for example, to generate a version of a program inCOBOL using a pure macro assembler program containing lines of COBOL code inside assembly time operators instructing the assembler to generate arbitrary code. IBMOS/360 uses macros to performsystem generation. The user specifies options by coding a series of assembler macros. Assembling these macros generates ajob stream to build the system, includingjob control language andutility control statements.
This is because, as was realized in the 1960s, the concept of "macro processing" is independent of the concept of "assembly", the former being in modern terms more word processing, text processing, than generating object code. The concept of macro processing appeared, and appears, in the C programming language, which supports "preprocessor instructions" to set variables, and make conditional tests on their values. Unlike certain previous macro processors inside assemblers, the C preprocessor is notTuring-complete because it lacks the ability to either loop or "go to", the latter allowing programs to loop.
Despite the power of macro processing, it fell into disuse in many high level languages (major exceptions beingC,C++ and PL/I) while remaining a perennial for assemblers.
Macro parameter substitution is strictly by name: at macro processing time, the value of a parameter is textually substituted for its name. The most famous class of bugs resulting was the use of a parameter that itself was an expression and not a simple name when the macro writer expected a name. In the macro:
foo: macro aload a*b
the intention was that the caller would provide the name of a variable, and the "global" variable or constant b would be used to multiply "a". If foo is called with the parametera-c, the macro expansion ofload a-c*b occurs. To avoid any possible ambiguity, users of macro processors can parenthesize formal parameters inside macro definitions, or callers can parenthesize the input parameters.[32]
Packages of macros have been written providingstructured programming elements to encode execution flow. The earliest example of this approach was in theConcept-14 macro set,[33] originally proposed byHarlan Mills (March 1970), and implemented by Marvin Kessler at IBM's Federal Systems Division, which provided IF/ELSE/ENDIF and similar control flow blocks for OS/360 assembler programs. This was a way to reduce or eliminate the use ofGOTO operations in assembly code, one of the main factors causingspaghetti code in assembly language. This approach was widely accepted in the early 1980s (the latter days of large-scale assembly language use). IBM's High Level Assembler Toolkit[34] includes such a macro package.
Another design wasA-Natural,[35] a "stream-oriented" assembler for 8080/Z80 processors fromWhitesmiths Ltd. (developers of theUnix-likeIdris operating system, and what was reported to be the first commercialCcompiler). The language was classified as an assembler because it worked with raw machine elements such asopcodes,registers, and memory references; but it incorporated an expression syntax to indicate execution order. Parentheses and other special symbols, along with block-oriented structured programming constructs, controlled the sequence of the generated instructions. A-natural was built as the object language of a C compiler, rather than for hand-coding, but its logical syntax won some fans.
There has been little apparent demand for more sophisticated assemblers since the decline of large-scale assembly language development.[36] In spite of that, they are still being developed and applied in cases where resource constraints or peculiarities in the target system's architecture prevent the effective use of higher-level languages.[37]
Assemblers with a strong macro engine allow structured programming via macros, such as the switch macro provided with the Masm32 package (this code is a complete program):
include\masm32\include\masm32rt.inc; use the Masm32 library.codedemomain:REPEAT20switchrv(nrandom,9); generate a number between 0 and 8movecx,7case0print"case 0"caseecx; in contrast to most other programming languages,print"case 7"; the Masm32 switch allows "variable cases"case1..3.ifeax==1print"case 1".elseifeax==2print"case 2".elseprint"cases 1 to 3: other".endifcase4,6,8print"cases 4, 6 or 8"defaultmovebx,19; print 20 stars.Repeatprint"*"decebx.UntilSign?; loop until the sign flag is setendswprintchr$(13,10)ENDMexitenddemomain
In late 1948, theElectronic Delay Storage Automatic Calculator (EDSAC) had an assembler (named "initial orders") integrated into itsbootstrap program. It used one-letter mnemonics developed byDavid Wheeler, who is credited by the IEEE Computer Society as the creator of the first "assembler".[20][41][42] Reports on the EDSAC introduced the term "assembly" for the process of combining fields into an instruction word.[43] SOAP (Symbolic Optimal Assembly Program) was an assembly language for theIBM 650 computer written by Stan Poley in 1955.[44]
Assembly languages eliminated much of the error-prone, tedious, and time-consumingfirst-generation programming needed with the earliest computers, freeing programmers from tedium such as remembering numeric codes and calculating addresses. They were once widely used for all sorts of programming. By the late 1950s their use had largely been supplanted by higher-level languages in the search for improvedprogramming productivity.[45] Today, assembly language is still used for direct hardware manipulation, access to specialized processor instructions, or to address critical performance issues.[46] Typical uses aredevice drivers, low-levelembedded systems, andreal-time systems (see§ Current usage).
Numerous programs were written entirely in assembly language. TheBurroughs MCP (1961) was the first computer for which an operating system was not developed entirely in assembly language; it was written inExecutive Systems Problem Oriented Language (ESPOL), an Algol dialect. Many commercial applications were written in assembly language as well, including a large amount of theIBM mainframe software developed by large corporations.COBOL,FORTRAN and some PL/I eventually displaced assembly language, although a number of large organizations retained assembly-language application infrastructures well into the 1990s.
Key software forIBM PC compatibles such asMS-DOS,Turbo Pascal, and theLotus 1-2-3 spreadsheet was written in assembly language. As computer speed grew exponentially, assembly language became a tool for speeding up parts of programs, such as the rendering ofDoom, rather than a dominant development language. In the 1990s, assembly language was used to maximise performance from systems such as theSega Saturn,[47] and as the primary language for arcade hardware using theTMS34010 integrated CPU/GPU such asMortal Kombat andNBA Jam.
There has been debate over the usefulness and performance of assembly language relative to high-level languages.[48]
Although assembly language has specific niche uses where it is important (see below), there are other tools for optimization.[49]
As of July 2017[update], theTIOBE index of programming language popularity ranks assembly language at 11, ahead ofVisual Basic, for example.[50] Assembler can be used to optimize for speed or optimize for size. In the case of speed optimization, modernoptimizing compilers are claimed[51] to render high-level languages into code that can run as fast as hand-written assembly, despite some counter-examples.[52][53][54] The complexity of modern processors and memory sub-systems makes effective optimization increasingly difficult for compilers and assembly programmers alike.[55][56] Increasing processor performance has meant that most CPUs sit idle most of the time,[57] with delays caused by predictable bottlenecks such as cache misses,I/O operations andpaging, making raw code execution speed a non-issue for many programmers.
There are still certain computer programming domains in which the use of assembly programming is more common:
In an embedded processor orDSP, high-repetition interrupts require the shortest number of cycles per interrupt, such as an interrupt that occurs 1000 or 10000 times a second.
Programs that need to use processor-specific instructions not implemented in a compiler. A common example is thebitwise rotation instruction at the core of many encryption algorithms, as well as querying the parity of a byte or the 4-bit carry of an addition.
Stand-alone executables that are required to execute without recourse to therun-time components orlibraries associated with a high-level language, such as the firmware for telephones, automobile fuel and ignition systems, air-conditioning control systems, and security systems.
Programs with performance-sensitive inner loops, where assembly language provides optimization opportunities that are difficult to achieve in a high-level language. For example,linear algebra withBLAS[52][59] ordiscrete cosine transformation (e.g.SIMD assembly version fromx264[60]).
Programs that create vectorized functions for programs in higher-level languages such as C. In the higher-level language this is sometimes aided by compilerintrinsic functions which map directly to SIMD mnemonics, but nevertheless result in a one-to-one assembly conversion specific for the given vector processor.
Real-time programs such as simulations, flight navigation systems, and medical equipment. For example, in afly-by-wire system, telemetry must be interpreted and acted upon within strict time constraints. Such systems must eliminate sources of unpredictable delays, which may be created by interpreted languages, automaticgarbage collection, paging operations, orpreemptive multitasking. Choosing assembly orlower-level languages for such systems gives programmers greater visibility and control over processing details.
Cryptographic algorithms that must always take strictly the same time to execute, preventingtiming attacks.
Video encoders and decoders such as rav1e (an encoder forAV1)[61] and dav1d (the reference decoder for AV1)[62] contain assembly to leverageAVX2 andARM Neon instructions when available.
Modify and extend legacy code written for IBM mainframe computers.[63][64]
Situations where complete control over the environment is required, in extremely high-security situations wherenothing can be taken for granted.
existingbinaries that may or may not have originally been written in a high-level language, for example when trying to recreate programs for which source code is not available or has been lost, or cracking copy protection of proprietary software.
Video games (also termedROM hacking), which is possible via several methods. The most widely employed method is altering program code at the assembly language level.
Assembly language is still taught in mostcomputer science andelectronic engineering programs. Although few programmers today regularly work with assembly language as a tool, the underlying concepts remain important. Such fundamental topics asbinary arithmetic,memory allocation,stack processing,character set encoding,interrupt processing, andcompiler design would be hard to study in detail without a grasp of how a computer operates at the hardware level. Since a computer's behaviour is fundamentally defined by its instruction set, the logical way to learn such concepts is to study an assembly language. Most modern computers have similar instruction sets. Therefore, studying a single assembly language is sufficient to learn the basic concepts, recognize situations where the use of assembly language might be appropriate, and to see how efficient executable code can be created from high-level languages.[23]
Assembly language is typically used in a system'sboot code, the low-level code that initializes and tests the system hardware prior to booting the operating system and is often stored inROM. (BIOS onIBM-compatible PC systems andCP/M is an example.)
Assembly language is often used for low-level code, for instance foroperating system kernels, which cannot rely on the availability of pre-existing system calls and must indeed implement them for the particular processor architecture on which the system will be running.
Some compilers translate high-level languages into assembly first before fully compiling, allowing the assembly code to be viewed fordebugging and optimization purposes.
Some compilers for relatively low-level languages, such asPascal orC, allow the programmer to embed assembly language directly in the source code (so calledinline assembly). Programs using such facilities can then construct abstractions using different assembly language on each hardware platform. The system'sportable code can then use these processor-specific components through a uniform interface.
Assembly language is useful inreverse engineering. Many programs are distributed only in machine code form which is straightforward to translate into assembly language by adisassembler, but more difficult to translate into a higher-level language through adecompiler. Tools such as theInteractive Disassembler make extensive use of disassembly for such a purpose. This technique is used by hackers to crack commercial software, and competitors to produce software with similar results from competing companies.
Assembly language is used to enhance speed of execution, especially in early personal computers with limited processing power and RAM.
Assemblers can be used to generate blocks of data, with no high-level language overhead, from formatted and commented source code, to be used by other code.[65][66]
^However, that does not mean that the assembler programs implementing those languages are universal.
^This is one of two redundant forms of this instruction that operate identically. The 8086 and several other CPUs from the late 1970s/early 1980s have redundancies in their instruction sets, because it was simpler for engineers to design these CPUs (to fit on silicon chips of limited sizes) with the redundant codes than to eliminate them (seedon't-care terms). Each assembler will typically generate only one of two or more redundant instruction encodings, but adisassembler will usually recognize any of them.
^AMD manufactured second-source Intel 8086, 8088, and 80286 CPUs, and perhaps 8080A and 8085A CPUs, under license from Intel, but starting with the 80386, Intel refused to share their x86 CPU designs with anyone—AMD sued about this for breach of contract—and AMD designed, made, and sold 32-bit and 64-bit x86-family CPUs without Intel's help or endorsement.
^In 7070 Autocoder, a macro definition is a 7070 macro generator program that the assembler calls; Autocoder provides special macros for macro generators to use.
^Streib, James T. (2020). "Guide to Assembly Language".Undergraduate Topics in Computer Science. Cham: Springer International Publishing.doi:10.1007/978-3-030-35639-2.ISBN978-3-030-35638-5.ISSN1863-7310.S2CID195930813.Programming in assembly language has the same benefits as programming in machine language, except it is easier.
^Austerlitz, Howard (2003). "Computer Programming Languages".Data Acquisition Techniques Using PCs. Elsevier. pp. 326–360.doi:10.1016/b978-012068377-2/50013-9.ISBN9780120683772.Assembly language (or Assembler) is a compiled, low-level computer language. It is processor-dependent since it basically translates the Assembler's mnemonics directly into the commands a particular CPU understands, on a one-to-one basis. These Assembler mnemonics are the instruction set for that processor.
^Carnes, Beau (2022-04-27)."Learn Assembly Language Programming with ARM".freeCodeCamp.org. Retrieved2022-06-21.Assembly language is often specific to a particular computer architecture so there are multiple types of assembly languages. ARM is an increasingly popular assembly language.{{cite web}}: CS1 maint: url-status (link)
^Brooks, Frederick P. (1986). "No Silver Bullet—Essence and Accident in Software Engineering".Proceedings of the IFIP Tenth World Computing Conference. pp. 1069–1076.
^abcdSalomon, David (February 1993) [1992]. Written at California State University, Northridge, California, US. Chivers, Ian D. (ed.).Assemblers and Loaders(PDF). Ellis Horwood Series In Computers And Their Applications (1 ed.). Chicester, West Sussex, UK:Ellis Horwood Limited /Simon & Schuster International Group. pp. 7,237–238.ISBN0-13-052564-2.Archived(PDF) from the original on 2020-03-23. Retrieved2008-10-01. (xiv+294+4 pages)
^Ferrari, Adam; Batson, Alan; Lack, Mike; Jones, Anita (2018-11-19) [Spring 2006]. Evans, David (ed.)."x86 Assembly Guide". Computer Science CS216: Program and Data Representation.University of Virginia.Archived from the original on 2020-03-24. Retrieved2010-11-18.
^Hsieh, Paul (2020-03-24) [2016, 1996]."Programming Optimization".Archived from the original on 2020-03-24. Retrieved2020-03-24.... design changes tend to affect performance more than ... one should not skip straight to assembly language until ...
"ASM Community Book". 2009. Archived fromthe original on 2013-05-30. Retrieved2013-05-30. ("An online book full of helpful ASM info, tutorials and code examples" by the ASM Community, archived at the internet archive.)