Retargeting
From Wikipedia, the free encyclopedia
In software engineering, retargeting is an attribute of software development tools that have been specifically designed to generate code for more than one computing platform.
[edit] Compilers
A retargetable compiler is a compiler that has been designed to be relatively easy to modify to generate code for different CPU architectures. The machine code produced by these is sometimes of lower quality than that produced by a compiler developed specifically for a single processor.
The goal of easily retargeting the compiler conflicts to some degree with the goal of providing fast execution and small code size. The optimization of code for some high performance processors requires a detailed and specific knowledge of the architecture and how the instructions are executed. The optimizations usually done by a retargetable compiler are only those applicable to any processor. This is unless developers have taken the large amount of time necessary to write a code generator specifically for an architecture.
Examples of retargetable compilers:
[edit] Assemblers
Conversely, retargetable assemblers are capable of generating object files of different formats, which is useful in porting assembly language programs to various operating systems that run on the same CPU architecture (such as Windows and Linux on the x86 platform). NASM is one such assembler.
[edit] External reference
- A Retargetable C Compiler: Design and Implementation (ISBN 0-8053-1670-1)
- Retargetable Compiler Technology for Embedded Systems (ISBN 0-7923-7578-5)
- LANCE compiler website
- The LLVM compiler infrastructure website
- The (open-source) ACK sourceforge page
- Nils Weller's C compiler page