Object code: Difference between revisions

Content deleted Content added
No edit summary
hatnote, copyedit, section, fix ref sect, links, sep lede
Line 1:
{{confused|Object-oriented programming}}
{{Use dmy dates|date=July 2012}}
 
{{Program execution}}
'''Object code''', or sometimes an '''object module''', is what a computer [[compiler]] produces.<ref>{{cite web|url=http://whatis.techtarget.com/definition/0,,sid9_gci211824,00.html|title=Compiler|publisher=TechTarget|quote=Traditionally, the output of the compilation has been called object code or sometimes an object module.|accessdate=1 September 2011}}</ref> In a general sense object code is a sequence of [[Statementstatement (computer science)|statements]] or instructions in a computer language,<ref>{{cite book|last1=Aho|first1=Alfred V.|authorlink1=Alfred Aho|last2=Sethi|first2=Ravi|authorlink2=Ravi Sethi|last3=Ullman|first3=Jeffrey D.|authorlink3=Jeffrey Ullman|title=Compilers: principles, techniques, and tools|series=Computer Science|year=1986|publisher=Mark S. Dalton|isbn=0-201-10194-7|page=704|chapter=10 Code Optimization}}</ref> usually a [[machine code]] language (i.e., [[Binary_filebinary file|binary]]) or an intermediate language such as [[Registerregister transfer language]] (RTL).
 
==Details==
Object files can in turn be [[Linkerlinker (computing)|linked]] to form an [[executable file]] or [[library (computing)|library file]]. In order to be used, object code must either be placed in an executable file, a library file, or an [[object file]].
 
Object code is a portion of machine code that has not yet been linked into a complete program. It is the machine code for one particular library or module that will make up the completed product. It may also contain placeholders or offsets, not found in the machine code of a completed program, that the linker will use to connect everything together. Whereas machine code is binary code that can be executed directly by the CPU, object code has the jumps partially parameterized so that a linker can fill them in.
 
An [[assembler (computing)|assembler]] is used to convert [[assembly code]] into machine code (object code). A linker links several object (and library) files to generate an executable. Assemblers can also assemble directly to machine code executable files without the object intermediary step.
 
==References==
{{Reflist|35=35em}}
 
{{Reflist|35=}}
 
{{Application binary interface}}