Source-to-source compiler

From Wikipedia, the free encyclopedia

A source-to-source compiler, transcompiler, or transpiler is a type of compiler that takes the source code of a programming language as its input and outputs the source code into another programming language. A source-to-source compiler translates between programming languages that operate at approximately the same level of abstraction, while a traditional compiler translates from a higher level programming language to a lower level programming language. For example, a source-to-source compiler may perform a translation of a program from Pascal to C. An automatic parallelizing compiler will frequently take in a high level language program as an input and then transform the code and annotate it with parallel code annotations (e.g., OpenMP) or language constructs (e.g. Fortran's forall statements).[1]

Another purpose of source-to-source-compiling is translating legacy code to use the next version of the underlying programming language or an API that breaks backward compatibility. It will perform automatic code refactoring which is useful when the programs to refactor are outside the control of the original implementer (for example, converting programs from Python 2 to Python 3, or converting programs from an old API to the new API) or when the size of the program makes it impractical or time consuming to refactor it by hand.

Transcompiler may either keep translated code as close to the source code as possible to ease development and debugging of the original source code, or else they may change so much the structure of the original code that the translated code does not look like the source code.[2]

History

One of the earliest programs of this kind was Digital Research's XLT86 in 1981, a program written by Gary Kildall, which translated .ASM source code for the Intel 8080 processor into .A86 source code for the Intel 8086. Using global data flow analysis on 8080 register usage, the translator would also optimize the output for code size and take care of calling conventions, so that CP/M-80 and MP/M-80 programs could be ported to the CP/M-86 and MP/M-86 platforms automatically. XLAT86 itself was written in PL/I-80 and was available for CP/M-80 platforms as well as for DEC VMS (for VAX 11/750 or 11/780).[3]

A similar, but much less sophisticated program was TRANS.COM, written by Tim Paterson in 1980 as part of 86-DOS. It could translate some Z80 assembly source code into .ASM source code for the 8086, but supported only a subset of opcodes, registers and modes, often still requiring significant manual correction and rework afterwards. Also it did not carry out any register and jump optimizations.[4]

Programming language implementation

The first implementations of some programming languages started as transcompilers, and the default implementation for some of those languages are still transcompilers:

Source language Target language Comment
C++
(originally known as "C with classes")
C The cfront transcompiler was doing the conversion
C/Fortran
C Annotated with OpenMP, C Annotated with OpenACC Implemented by Parallware
BCX C
Eiffel C
Lisaac C
Vala C, with additional libraries such as GObject
CoffeeScript JavaScript
ClojureScript JavaScript
TypeScript JavaScript
Haxe JavaScript, PHP, C++, C#, and Java.
Also compiling to bytecode such as ActionScript bytecode
C# JavaScript Transcompiled using ScriptSharp[5]
Dart JavaScript
Mirah Java
Efene Erlang
Xtend[6] Java
PHP C++ Transcompiled using HipHop for PHP
Sass[7] CSS
LESS CSS
Java Objective-C Transcompiled using J2ObjC[8]
Ratfor Fortran
X10 C++ and Java
Chapel C
BASIC C Transcompiled using BaCon[9]
COBOL C Transcompiled using OpenCOBOL
COBOL Java Transcompiled using P3COBOL

Note: AltJS maintains a list of languages transpiling to JavaScript [10]

Porting a codebase

When developers want to switch to a different language while retaining most of an existing codebase, it might be better to use a transcompiler compared to rewriting the whole software by hand. In this case, the code often needs manual correction because the automated translation might not work in all cases.

Tool Source language Target language Comments
2to3 script Python 2 Python 3 Even though 2to3 does its best at automating the translation process, further manual corrections are often needed.
Emscripten LLVM bytecode ECMAScript This allows running C/C++ codebases in a browser for example
Eranea's COBOL to Java Converter COBOL Java This is a commercial product.
Google Web Toolkit Java program that uses a specific API JavaScript The Java code is a little bit constrained compared to normal Java code.
Js_of_ocaml[11] of Ocsigen OCaml JavaScript
Tangible Software Solutions's C# to C++ Converter C# Unmanaged C++ This is a commercial product.
JSIL, SharpKit, Script# CLI bytecode human readable ECMAScript
J2Eif[12] Java Eiffel The resulting Eiffel code has classes and structures similar to the Java program but following Eiffel syntax and conventions.
C2Eif[13] C Eiffel The resulting Eiffel code has classes and structures that try to be as clean as possible. The tool is complete and relies on embedding the C and assembly code if it cannot translate it properly.

Examples

DMS Software Reengineering Toolkit

DMS Software Reengineering Toolkit is a source-to-source program transformation tool, parameterized by explicit source and target (may be the same) computer language definitions. It can be used for translating from one computer language to another, for compiling domain-specific languages to a general purpose language, or for carrying out optimizations or massive modifications within a specific language. DMS has a library of language definitions for most widely used computer languages (including full C++, and a means for defining other languages which it does not presently know).

LLVM

LLVM (Low Level Virtual Machine) can translate from any language supported by gcc 4.2.1 (Ada, C, C++, Fortran, Java, Objective-C, or Objective-C++) or by clang to any of: C, C++, or MSIL by way of the "arch" command in llvm-gcc.

% llvm-g++ -emit-llvm x.cpp -o program.bc -c
% llc -march=c program.bc -o x.c
% cc x.c -lstdc++
 
% llvm-g++ x.cpp -o program.bc -c
% llc -march=msil program.bc -o program.msil

Translation to C has been removed from LLVM since version 3.1. It had numerous problems, to the point of not being able to compile any nontrivial program.[14]

Refactoring tools

The refactoring tools automate transforming source code into another:

See also

References

  1. "Types of compilers". compilers.net. 1997-2005. Retrieved 28 October 2010. 
  2. Fowler, Martin (February 12, 2013). "Transparent Compilation". Retrieved February 13, 2013. 
  3. Digital Research (1981): XLT86 - 8080 to 8086 Assembly Language Translator - User's Guide. Digital Research Inc, Pacific Grove ().
  4. Seattle Computer Products (1980): 86-DOS - Disk Operating System for the 8086. User's manual, version 0.3 - Preliminary. Seattle Computer Products, Seattle ().
  5. "Script# by nikhilk". Scriptsharp.com. Retrieved 2013-08-02. 
  6. Eclipse Xtend
  7. Sass lang website
  8. "j2objc - A Java to iOS Objective-C translation tool and runtime. - Google Project Hosting". Code.google.com. 2012-10-15. Retrieved 2013-08-02. 
  9. BaCon website
  10. "AltJS - Alternative JavaScript". Retrieved February 13, 2013. 
  11. Js_of_ocaml Overview
  12. [http://se.inf.ethz.ch/research/j2eif/
  13. "LLVM 3.1 Release Notes". llvm.org. 
  14. Valerie Henson (January 20, 2009). "Semantic patching with Coccinelle". lwn.net. Retrieved 28 October 2010. 
This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.