| Program execution |
|---|
| General concepts |
| Types of code |
| Compilation strategies |
| Notable runtimes |
|
| Notable compilers & toolchains |
|
| Data transformation |
|---|
| Concepts |
| Transformation languages |
| Techniques and transforms |
| Applications |
| Related |
Asource-to-source translator,source-to-source compiler (S2S compiler),transcompiler, ortranspiler[1][2][3] is a type oftranslator that takes thesource code of a program written in aprogramming language as its input and produces an equivalent source code in the same or a different programming language, usually as anintermediate representation. A source-to-source translator converts between programming languages that operate at approximately the same level ofabstraction, while a traditionalcompiler translates from ahigher level language to alower level language. For example, a source-to-source translator may perform a translation of a program fromPython toJavaScript, while a traditional compiler translates from a language likeC toassembly orJava tobytecode.[4] Anautomatic 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'sforall statements).[2][5]
Another purpose of source-to-source-compiling is translating legacy code to use the next version of the underlying programming language or an application programming interface (API) that breaks backward compatibility. It will perform automaticcode 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.
Transcompilers may either keep translated code structure as close to the source code as possible to ease development anddebugging of the original source code or may change the structure of the original code so much that the translated code does not look like the source code.[6] There are also debugging utilities that map the transcompiled source code back to the original code; for example, theJavaScript Source Map standard[citation needed] allows mapping of the JavaScript code executed by aweb browser back to the original source when the JavaScript code was, for example, minified or produced by a transcompiled-to-JavaScript language.[citation needed]
Examples includeClosure Compiler,CoffeeScript,Dart,Haxe,Opal,TypeScript andEmscripten.[7]
So calledAssembly language translators are a class of source-to-source translators converting code from oneassembly language into another, including (but not limited to) across different processor families andsystem platforms.
Intel marketed their 16-bit processor8086 to besource compatible to the8080, an 8-bit processor.[8] To support this, Intel had anISIS-II-based translator from 8080 to 8086 source code named CONV86[9][10][11][12] (also referred to as CONV-86[13] and CONVERT 86[14][15]) available toOEM customers since 1978, possibly the earliest program of this kind.[nb 1] It supported multiple levels of translation and ran at 2 MHz on an Intel Microprocessor Development SystemMDS-800 with 8-inchfloppy drives. According to user reports, it did not work very reliably.[16][17]
Seattle Computer Products (SCP) offered TRANS86.COM,[15][18][19] written byTim Paterson in 1980 while developing86-DOS.[20][21][22] The utility could translate Intel 8080 andZilogZ80 assembly source code (with Zilog/Mostekmnemonics) into .ASM source code for the Intel 8086 (in a format only compatible with SCP'scross-assembler ASM86 forCP/M-80), but supported only a subset ofopcodes, registers and modes, and often still required significant manual correction and rework afterwards.[23][20] Also, performing only a meretransliteration,[14][18][9][10] the brute-forcesingle-pass translator did not carry out any register and jump optimizations.[24][25] It took about 24 KB of RAM.[15] The SCP version 1 of TRANS86.COM ran on Z80-based systems.[15][18] Once 86-DOS was running, Paterson, in aself-hosting-inspired approach, utilized TRANS86 to convert itself into a program running under 86-DOS.[22][18] Numbered version 2, this was named TRANS.COM instead.[18][25][24][26][27] Later in 1982, the translator was apparently also available fromMicrosoft.[15][28]
Also named TRANS86,Sorcim offered an 8080 to 8086 translator as well since December 1980.[29][14] Like SCP's program it was designed to port CP/M-80 application code (in ASM, MAC, RMAC or ACT80 assembly format) toMS-DOS (in a format compatible with ACT86).[29][15][30][31] In ACT80 format it also supported a few Z80 mnemonics. The translation occurred on an instruction-by-instruction basis with some optimization applied to conditional jumps. The program ran under CP/M-80,MP/M-80 andCromemco DOS with a minimum of 24 KB of RAM, and had no restrictions on the source file size.[15][32]
Much more sophisticated and the first to introduceoptimizing compiler technologies into the source translation process wasDigital Research's XLT86 1.0 in September 1981. XLT86 1.1 was available by April 1982.[33] The program was written byGary Kildall[14][34][35][36] and translated .ASM source code for the Intel 8080 processor (in a format compatible with ASM, MAC or RMAC assemblers) into.A86 source code for the 8086 (compatible with ASM86). Usingglobal data flow analysis on 8080 register usage,[37][14][38][39] the five-phasemulti-pass translator would also optimize the output for code size and take care of calling conventions (CP/M-80BDOS calls were mapped into BDOS calls forCP/M-86), so that CP/M-80 and MP/M-80 programs could be ported to the CP/M-86 andMP/M-86 platforms automatically. XLT86.COM itself was written inPL/I-80 for CP/M-80 platforms.[40][15][33][41] The program occupied 30 KB of RAM for itself plus additional memory for theprogram graph. On a 64 KB memory system, the maximum source file size supported was about 6 KB,[40][15][42][33] so that larger files had to be broken down accordingly before translation.[15][33] Alternatively, XLT86 was also available forDECVAX/VMS.[15][33] Although XLT86's input and output worked on source-code level, the translator's in-memory representation of the program and the applied code optimizing technologies set the foundation tobinary recompilation.[43][44][45]
2500 AD Software offered an 8080 to 8086 source-code translator as part of their XASM suite for CP/M-80 machines with Z80 as well as forZilog ZEUS andOlivetti PCOS systems.[46]
Since 1979, Zilog offered a Z80 toZ8000 translator as part of their PDS 8000 development system.[47][48][49][50][51][17]Advanced Micro Computers (AMC)[51][17] and 2500 AD Software offered Z80 to Z8000 translators as well.[46] The latter was named TRANS[52][53] and was available for Z80 CP/M, CP/M-86, MS-DOS and PCOS.[46]
The Z88DK development kit provides a Z80 toi486 source code translator targetingnasm named "to86.awk", written in 2008 by Stefano Bodrato.[54] It is in turn based on an 8080 to Z80 converter written in 2003 by Douglas Beattie, Jr., named "toz80.awk".[54]
In 2021, Brian Callahan wrote an 8080 CP/M 2.2 to MS-DOS source code translator targetingnasm named 8088ify.[55]
The first implementations of some programming languages started as transcompilers, and the default implementation for some of those languages are still transcompilers. In addition to the table below, aCoffeeScript maintainer provides a list of languages that compile to JavaScript.[56]
| Name | Source language | Target language | Comments |
|---|---|---|---|
| Babel | ECMAScript 6+ (JavaScript) | ES5 | |
| Cerberus X | Cerberus | JavaScript,Java,C++,C# | |
| Cfront | C++ | C | |
| ClojureScript | Clojure | JavaScript | |
| CoffeeScript | CoffeeScript | JavaScript | |
| Dafny | Dafny | C#,JavaScript,Java, C++,Go,Python | |
| Dart | Dart | JavaScript | |
| h5[57] | C# | JavaScript | |
| Eiffel, viaEiffelStudio | Eiffel | C,Common Intermediate Language | |
| Elm | Elm | JavaScript | |
| Fable | F# | JavaScript | |
| Fable Python | F# | Python | |
| Haxe | Haxe | ActionScript 3, JavaScript, Java, C++, C#,PHP,Python,Lua | |
| HipHop for PHP (HPHPc) | PHP | C++ | |
| J2ObjC[58] | Java | Objective-C | |
| JSweet[59] | Java | TypeScript | |
| Kotlin/JS | Kotlin | JavaScript | |
| Maia[60] | Maia | Verilog | |
| Melange | OCaml,Reason | JavaScript | |
| mrustc | Rust | C | Experimental compiler able to bootstrap official Rust compiler (rustc) |
| NACA | COBOL | Java | |
| Nim | Nim | C, C++,Objective-C, JavaScript | |
| PureScript | PureScript | JavaScript | |
| ReScript | ReScript | JavaScript | |
| Sather | Sather | C | |
| Scala.js | Scala | JavaScript | |
| Swiftify[61] | Objective-C | Swift | |
| V | V | C | |
| Vala | Vala | C | |
| Visual Eiffel | Eiffel | C |
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. Depending on the quality of the transcompiler, the code may or may not need manual intervention in order to work properly. This is different from "transcompiled languages" where the specifications demand that the output source code always works without modification. All transcompilers used toport a codebase will expect manual adjustment of the output source code if there is a need to achieve maximum code quality in terms of readability and platform convention.
| 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 | JavaScript | This allows running C/C++ codebases in a browser for example |
| c2go[62] | C | Go | Before the 1.5 release, the Go compiler was written in C. An automatic translator was developed to automatically convert the compiler codebase from C into Go.[63][64] Since Go 1.5, the "compiler and runtime are now implemented in Go and assembler, without C". |
| C2Rust[65] | C | Rust | C2Rust takes C code as input and outputsunsafe Rust code, focusing on preserving compatibility with the original codebase. Several documented limitations exist for this process. Converting the resulting code to safe and idiomatic Rust code is a manual effort post translation, although an automated tool exists to ease this task.[65] |
| Google Web Toolkit | Java program that uses a specificAPI | JavaScript | The Java code is a little bit constrained compared to normal Java code. |
| Js_of_ocaml[66] of Ocsigen | OCaml | JavaScript | |
| J2Eif[67] | Java | Eiffel | The resulting Eiffel code has classes and structures similar to the Java program but following Eiffel syntax and conventions. |
| C2Eif[68] | 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. |
| Skip[69] | Swift | Kotlin | Skip is an Xcode plug-in that transpiles a Swift iOS app or library using SwiftUI into equivalent native Kotlin code for Android using Jetpack Compose. |
| Swiftify[70] | Objective-C | Swift | Swiftify is an online source to source conversion tool from Objective-C into Swift. It assists developers who are migrating all or part of their iOS codebase into Swift. The conversion is aimed primarily at converting the syntax between Objective-C and Swift, and is helped because Apple took efforts to ensure compatibility between Swift and Objective-C runtimes. |
| Runtime Converter[71] | PHP | Java | The Runtime Converter is an automatic tool which converts PHP source code into Java source code. There is a Java runtime library for certain features of the PHP language, as well as the ability to call into the PHP binary itself using JNI for PHP standard library and extension function calls. |
A transcompiler pipeline is what results fromrecursive transcompiling. By stringing together multiple layers of tech, with a transcompile step between each layer, technology can be repeatedly transformed, effectively creating a distributedlanguage independent specification.
XSLT is a general-purpose transform tool that can be used between many different technologies, to create such aderivative code pipeline.[72]
This sectiondoes notcite anysources. Please helpimprove this section byadding citations to reliable sources. Unsourced material may be challenged andremoved.(November 2021) (Learn how and when to remove this message) |
Recursive transcompilation (orrecursive transpiling) is the process of applying the notion of transcompiling recursively, to create a pipeline of transformations (often starting from asingle source of truth) which repeatedly turn one technology into another.
By repeating this process, one can turn A → B → C → D → E → F and then back into A(v2). Some information will be preserved through this pipeline, from A → A(v2), and that information (at an abstract level) demonstrates what each of the components A–F agree on.
In each of the different versions that the transcompiler pipeline produces, that information is preserved. It might take on many different shapes and sizes, but by the time it comes back to A (v2), having been transcompiled six times in the pipeline above, the information returns to its original state.
This information which survives the transform through each format, from A–F–A(v2), is (by definition) derivative content orderivative code.
Recursive transcompilation takes advantage of the fact that transcompilers may either keep translated code as close to the source code as possible to ease development anddebugging of the original source code, or else they may change the structure of the original code so much, that the translated code does not look like the source code. There are also debugging utilities that map the transcompiled source code back to the original code; for example,JavaScript source maps allow mapping of the JavaScript code executed by aweb browser back to the original source in a transcompiled-to-JavaScript language.
[…] AchtungC- undBasic-Programmierer! […] Jetzt gibt es den B→C TRANSPILER das einzigartige Umwandlungs-Software-System von ARC […] Der B→C TRANSPILER übersetzt lauffähigeAMIGA-Basicprogramme in compilierbaren C-Code. […] Durch Spezialbefehle kann C-Code in Basicprogramme direkt integriert werden. […] Basic-Befehle werden erweitert transpiliert. (HAM-Modus,IFF, usw. werden unterstützt). […] Mit diesem Konzept neuester Generation verbindet der B→C TRANSPILER auf einzigartige Weise die Vorteile eines Interpreters mit denen eines Compilers […][1]
[…] The nameTranspiler is meant to suggest a combination oftransputer andcompiler, in just the same way thattransputer was coined fromtransistor andcomputer (i.e., a computer that is also a component). […](NB. Uses the termOccam transpiler as a synonym for a source-to-source compiler working as apre-processor that takes a normalOccam program as input and derives a new Occam source code as output with link-to-channel assignments etc. added to it therebyconfiguring it forparallel processing to run as efficient as possible on a network oftransputers.)
[…] Priority claimed under Sec. 44(D) on United Kingdom Application No. 1495953, filed 1992-03-31 Reg. No. A1495953, dated 1992-03-31, expires 1999-03-31. For computer software and programs (U.S. Cl. 38). First use 1991-08-01, in commerce 1991-08-01.(NB. This company develops products such as VX/BASIC, a BASIC-to-C transpiler forDEC VMS. Despite their claim, theirs is not the first public use of the term transpiler, see i.e.ARC's BASIC-to-C transpiler for theAmiga in 1988 and theOccam Transpiler by Concurrent Technology Systems (CTS) in 1989.)
[…] The8086 is software-compatible with the8080 at the assembly-language level. […]
[…] AnIntel translator program could convert8080 assembler programs into8086 assembler programs […]
[…] other programs round out the software development tools available for the8086 and8088. […] CONV-86 can do most of the conversion work required to translate8080/8085 assembly language source modules into ASM-86 source modules. […] To facilitate conversion of 8080A/8085A assembly language programs to run on the iSBC 86/12A board CONV-86 is available under theISIS-II operating system.[5][6]
[…] "Unless you have a translating scheme that takes account of the peculiar idiosyncrasies of the target microprocessor, there is no way that an automatic translator can work," explains Daniel Davis, a programmer withDigital Research. "You'll end up with directtransliterations." […] In spite of all these limitations, progress has been made recently in the development of translators. Most notably, Digital Research has introduced its eight- to 16-bit assembly code translator. Based on research performed by Digital Research presidentGary Kildall, the XLT86 appears to offer advances over previously available software translator technology. LikeSorcim's Trans andIntel's Convert 86, Kildall's package translates assembly-language code from an8080 microprocessor to an8086. However, Kildall has applied aglobal flow analysis technique that takes into account some of the major drawbacks of other translators. The procedure analyzes the register and flag usage in sections of 8080 code in order to eliminate nonessential code. According to Digital Research programmer Davis, the algorithm Kildall uses allows the translator to consider the context as it translates the program. Until now, one of the major problems with any translator program has been the inability of the software to do much more than transliteration. If Digital Research's new translator actually advances the technology to the point where context can be considered, then more software translators may proliferate in the microcomputer marketplace.
[…]Digital Research's XLT86 takes standard8080 source code in a format compatible with ASM, MAC, or RMAC assemblers and converts the 8080 source code to8086 source code in a format compatible with ASM86 operating under eitherCP/M-80 orCP/M-86. Since XLT86 is written inPL/I-80, the translator can run either stand-alone under CP/M-80 or forcross development under VAX/VMS. It produces optimized 8086 code in a five-phase,multipass process, doingglobal data-flow analysis to determine optimal register usage. Although macro definitions are not supported, conditional-assembly directives are […] if you want macro expansion, you can use a pass through MAC or RMAC to produce a PRN file that can be edited […] to produce an expanded source file for input acceptable to XLT86. XLT86 does not recognizeZ80 instructions. XLT86 passes repeat loops through to the 8086 source code. XLT86 analyzes the source program in its entirety, determining theblock structure and the register/flag usage. Working from this information, it translates the code to 8086 assembler code in an optimized way. The decision algorithm for each instruction type is given in […] the manual […] Register mapping generally follows […] with a loose relationship between the 8086AX and the 8080PSW; the exact relationship is determined from register usage attranslate time. Manyruntime options are available to control the translation process, both on the command line and embedded in the 8080 source text. […] XLT86 is a sophisticated program that does a reasonable job of optimizing the translation of 8080 source code to 8086 source code.BDOS calls from CP/M-80 are mapped into BDOS calls that are compatible with CP/M-86. XLT86 has special features for handling translation of conditional JMP and CALL instructions in 8080 source code. In the 8080 instructions, JMP and CALL instructions are capable of reaching any address within the 64K-byte region. The 8086 conditional JMP instructions can reach only 128 bytes on either side of theIP […] register. XLT86 examines the target of the conditional JMP. If the target cannot be reached, XLT86 changes the sense of the conditional JMP and skips over a long JMP to the target address. Since there are no conditional CALL or RET instructions in the 8086, the sense of the condition is changed and a short conditional JMP is performed to skip over an unconditional CALL or RET. […] the segment registers allow for separation of code and data regions. […] XLT86 examines an expression and determines the proper segment for the particular instruction. […][7][8][9][10][11][12][13][14][15][16][17][18][19][20] (13 pages)
[…] The original8086 assembler ran on an8080-equipped MDS-80 dev system. One of the first products was a 8080 to 8086 source level translator. I recall that the speed of translation was phenomenally slow. […] our sales guy offered to run a conversion and verification test at the local sales office […] We […] started the job on theISIS-II MDS 200 series there--they even had a hard disk, which was an outrageously expensive option for an MDS […] still crunching when we left for the night. It still wasn't done the next morning […] About 2 weeks later, after theIntel software guys had a look at the translator, Ed returned with the translated program. It was about 50% larger in size than the original8085 version, which sort of went counter to Intel's claims for the translator. […]
[…]Intel had an ISIS-hosted translator from8080-to-8086 code. I can remember spending a very frustrating day at the local Intel sales office with a sample bit of 8080 code--a basicBCD floating-point package for the 8080 and waiting for hours for the translator to finish its work--and going home disappointed. About a week later, I received a call that they'd finally figured out the bugs and I could pick up my translated program. Said program was more than half-again as large as the original in terms of object bytes. I was a bit skeptical of the Intel claim back then that the 8086 code was far more compact than its 8080 counterpart. And the blasted thing didn't work anyway when it was put to the test. […] There were other 80-to-86 translators forCP/M. I recall thatSorcim had one.AMC had aZ80-to-Z8000 translator as well. […] The [Intel] translator had several levels of translation […] there was the "literal", preserving detailed operation […] it wasISIS-II, running on an MDS-800, at, what, 2 MHz with 8" floppies. […]
[…]Tim Paterson […] had the following to say about his8086 Assembler he wrote while atSCP: "The 8086 assembler I wrote originally was inZ80 assembly language and ran underCP/M. I believe it was distributed with the SCP 8086 CPU card as ASM86. I also wrote a translator that converted Z80 source code to inefficient but workable 8086 source code (Intel promoted this idea with apublished translation table). This was called TRANS86 and was also written in Z80 assembly for CP/M. OnceDOS was working, I applied the translator to ASM86 (and to itself) to create 8086 versions that ran under DOS. I do not have the change history in front of me […], but I believe that versions >= 2 marked the translated (DOS) version. If any history shows version numbers < 2, that was the CP/M version." […]
[…]MS-DOS Design Criteria […] The primary design requirement of MS-DOS wasCP/M-80translation compatibility, meaning that, if an8080 orZ80 program for CP/M were translated for the8086 according toIntel'spublished rules, that program would execute properly under MS-DOS. Making CP/M-80 translation compatibility a requirement served to promote rapid development of 8086 software, which, naturally,Seattle Computer was interested in. There was partial success: those software developers who chose to translate their CP/M-80 programs found that they did indeed run under MS-DOS, often on the first try. Unfortunately, many of the software developers Seattle Computer talked to in the earlier days preferred to simply ignore MS-DOS. Until theIBM Personal Computer was announced, these developers felt thatCP/M-86 would be the operating system of 8086/8088 computers. […][21][22]
[…] 1. ReadZ80 source code file written inCP/M format and convert to86-DOS format. 2. Translator program translates Z80 source code to8086 source code. 3. Resident assembler assembles the translated 8086 source code to 8086object code. 4. Minor hand correction and optimization. (A recent 19K Z80 program translation took us about four hours to fix up. Even without optimization, it ran twice as fast as the original! […])[23]
[…] To get major software developers to port their products from the8080/Z80 to the8086, I decided we had to make it as easy as possible. I had already written a Z80-to-8086 source code translator (hosted on the 8080 andCP/M). My plan was that running an 8080 CP/M program through the translator would be the only work required by software developers to port the program to the 8086. In other words, the interface used by applications to request operating system services would be exactly the same as CP/M's after applying thetranslation rules. […]
[…]CP/M Translation Compatibility […] ForDOS to succeed, it would need useful applications (like word processing) to be written for it. I was concerned thatSCP might have trouble persuading authors of application software to put in the effort to create a DOS version of their programs. Few people had bought SCP's 16-bit computer, so the installed base was small. Without the applications, there wouldn't be many users, and without the users, there wouldn't be many applications. […] My hope was that by making it as easy as possible to port existing 8-bit applications to our 16-bit computer, we would get more rogrammers to take the plunge. And it seemed to me that CP/M translation compatibility was what would make the job as easy as possible.Intel haddefined rules for translating 8-bit programs into 16-bit programs; CP/M translation compatibility means that when a program's request to CP/M went through the translation, it would become an equivalent request to DOS. […] So I made CP/M translation compatibility a fundamental design goal. This required me to create a very specific Application Program Interface that implemented the translation compatibility. I did not consider this the primary API – there was, in fact, another API more suited to the 16-bit world and that had more capabilities. Both APIs used CP/M-defined constructs (such as the "File Control Block"); the compatibility API had to, and I didn't see a reason to define something different for the primary API. […] I myself took advantage of translation compatibility. The development tools I had written, such as the assembler, were originally 8-bit programs that ran under CP/M (CDOS). I put them through the translator and came up with 16-bit programs that ran under DOS. These translated tools were included with DOS when shipped by SCP. But I don't think anyone else ever took advantage of this process. […]
[…] TheSeattle Computer ProductsZ80 to8086 Translator runs on the Z80 underCP/M. It accepts as input a Z80 source file written usingZilog/Mostek mnemonics and converts it to an 8086 source file in a format acceptable to our 8086 Cross Assembler. To translate a file, simply type TRANS86 <filename>.<ext>. Regardless of the original extension, the output file will be named <filename>.A86 and will appear on the same drive as the input file. A file named TRNTEST.Z80 is included to demonstrate the translator. The entire Z80 assembly language is not translated. […][24]
[…] The source code translator can translate mostZ80 source code into8086 source code acceptable to the assembler after minor manual correction. This provides a relatively quick and easy way to transport programs between the processors. […] TRANS file […] The Z80-to-8086 Source Code Translator, called by this command, is essentially identical to our version that runs on the Z80, which is described in the back of the Assembler manual. The only differences: 1. The Translator is called TRANS, not TRANS86, and it runs on the 8086 under86-DOS, not on the Z80 underCP/M. 2. The extension of the output file is "ASM", not "A86". […][26]
[…] An impressive and useful array of software development utilities is a standard feature ofMS-DOS. A program that translates8080 orZ80 code into8086 source code, a linker, and a library runtime combine with a powerful assembler to give the programmer everything needed to take full advantage of the PC's 16-bit processor. The MS-DOS translation program allows the user to translate code developed underCP/M-80 orSB-80 […] 8-bit operating system […] toMS-DOS 1.2 or2.0. Some modification beyond simple translation may be necessary to get the programs to run on 16-bit systems, so I suggest that this tool be used primarily by a technically trained user. […]
[…] Last week was the semi-annualCalifornia Computer Swap Meet. This event is organized by John Craig […]Sorcim […] was debuting […] new products at the show […] Their other product was TRANS-86. TRANS-86 will take anyCP/M compatible8080/8085/Z-80 source code file and translate it into8086 code. You can then assemble the new file with ACT-86. […]
[…] WHY? FLEXIBILITY.CompuPro's 85/88 CPU runs CP/M 80, 86, MP/M II and MP/M 86. We offer WORDSTAR dBASE II SUPERCALC a host of languages, 8080 to 8088 translators and more! COMPATIBILITY. Our systems can use CP/M 2.2 utilities to write programs for the IBM PC. You simply create 8088 source (either write it with your favorite CP/M 80 editor or translate it withSorcim's TRANS 86), cross-assemble your source (with Sorcim's ACT86), link your hex file (with CP/M 80's LOAD command), translate it to the IBM PC (with G&G's CPM-IBM program), and run it on your IBM PC! This procedure DOES NOT require MS-DOS! […] WHY? FLEXIBILITY.CompuPro's 85/88 CPU runs CP/M 80 & 86 or MS-DOS. We offer WORDSTAR, dBASE II, TRANS86, XLT86, ACT86, SUPERCALC, CBASIC, MBASIC, MFORTRAN and more! […][28][29]
[…]Sorcim just completed the purchase ofISA. […] They have also had an 8080-to-8086 translator – Trans-86 – operational for over a year […]
[…] XLT-86 1.1 […] XLT-86 is an analytical translator program written inPL/I-80. It reads the entire 8080 source program, assembles it to machine code, analyzes the register, memory and flag utilization, and emits an optimized8086 assembly-language program. […] There is also a version of XLT-86 for those of you who have access to aVAX 11/750 or11/780. This version can translate much larger programs. It also costs $8000. […] While the translator adds some labels and equates to the source program as part of the translation, all original comments and program labels are passed through intact to the translated program. […] The program translation proceeds in a five-step process. First, the program is scanned and assembled to produce symbol values and locations. Second, the program structure is analyzed and decomposed intobasic blocks. Third, the basic blocks are analyzed to determineprogram flow and resource usage. Forth, theblock structure andregister allocation data is gathered into a listing for the user. Fifth, the flow information and source program are used to produce the8086 source program. […]
[…] Kildall: […] A year and a half ago I was probably spending 75% of my time on the business and 25% on programming. XLT-86 was a product I was working on at that time, and it took me nine months to do it. That would have been a three-month project if I had been able to concentrate on it. […]
[…] PC: What are some of the complexities involved in translating a program from8080 to8086 form?Kildall: Straight translations at the source program level you can do pretty much mechanically. For example, an 8080 "Add immediate 5" instruction turns into an "Add AL 5" on the 8086 — very straightforward translation of the op codes themselves. The complexity inmechanical translation comes from situations such as this: The 8080 instruction DAD H takes the HL register and adds DE to it. For the 8086 the equivalent instruction would be something like ADD DX BX, which is fine, no particular problem. You just say the DX register is the same as HL and BX the same as DE. The problem is that the 8086 instruction has a side effect of setting the zero flag, and the 8080 instruction does not. In mechanical translation you end up doing something like saving the flags, restoring the flags, doing some shifts and rotates, and so forth. These add about five or six extra instructions to get the same semantic effect. There are a lot of sequences in 8080 code that produce very strange sequences in 8086 code; they just don't map very well because of flag registers and things of that sort. The way we get software over is a thing called XLT-86. It's been out six months or so. PC: By "better" code do you mean smaller? Kildall: Twenty percent smaller than if you just took every op code and did a straight translation, saving the registers to preserve semantics. PC: How does the size of the translated program compare to the 8080 version? Kildall: If you take an 8080 program, move it over to 86 land and do an XLT-86 translation, you'll find that it is roughly 10 to 20 percent larger. With 16-bit machines it's more difficult to address everything; you get op codes that are a little bit bigger on the average. An interesting phenomenon is that one of the reasons you don't get a tremendous speed increase in the 16-bit world is because you're running more op codes over the data bus. […]
[…]Rolander: I mentioned earlier thatGary liked to approach a problem as an architect. […] And he would draw the most beautiful pictures of his data structures. […] And when he finished that […] and was convinced those data structures were now correct, he would go into just an unbelievable manic coding mode. He would just go for as many as 20 hours a day […] he was just gone during these periods of time. On a couple of those occasions, when he'd get something running the first time, which could be in the middle of night. And all you who have written software have seen that, for example, that the first time it comes up on the screen, you've got to tell somebody. My wife Lori will tell you that I had a couple of those calls in the middle of the night,LOGO was one example, XLT 86 was another, where he got it running the first time, and he had to have somebody see it. So it didn't matter what time it was, he'd call me, I'd have to come over and see it running. […][30][31] (33 pages)
[…] An 8- to 16-bit assembly code translator is now available fromDigital Research. Called XLT86, it is designed to help ease the time-consuming process of convertingCP/M software products from8080- to8086-based microcomputers. XLT86 can be used to translate any assembly language programs that are compatible with Digital Research's ASM, MAC or RMAC assembler format. The XLT86 program translator first reads an 8080 assembly language program and then produces an output file containing 8086 assembly language statements acceptable to the Digital Research ASM-86 assembler. Unlike other 8086 code converters that translate a single 8080 instruction into as many as ten 8086 instructions, XLT86 performs extensivedata flow analysis to determine register usage throughout the original program. The information collected through this analysis is used during program translation to eliminate unnecessary flag save and restore operations. "The resulting 8086 program is both simpler and more compact than equivalent programs produced by other translators," according to Curt Geske, of the Digital Research marketing group. "Furthermore, XLT86 allows OEMs, end users and software vendors to preserve their investment in 8080-based assembly language programs when changing to 16-bit 8086-based computers by reducing the conversion effort." Programs translated by XLT86 run on bothCP/M-86 andMP/M-86 […] XLT86 is available immediately. It operates on any 8-bit CP/M orMP/M system, or under theVMS operating-system for use onDigital Equipment CorporationVAX seriesminicomputers. The CP/M version is priced at$150. The VAX version sells for $8,000. […]
{{cite book}}: CS1 maint: location missing publisher (link)[…] The XLT86 program occupies approximately 30K bytes of main memory. The remainder of memory, up to the base ofCP/M, stores theprogram graph that represents the 8086 program being translated […] A 64K CP/M system allows translation of8080 programs of up to approximately 6K. […][32][33]
[…] Ironically, many of the techniquesGary pioneered are being rediscovered now, ten years later.Apple andDEC are toutingbinary recompilation as a "new" technology for porting existing software to thePowerPC orAlpha architecture. Actually, DRI introduced an8080-to-8086 binary recompiler in the early 1980s. […]
[…]Kildall foundedDigital Research, Inc. (DRI) in 1976, which is now part ofNovell. […] In the 1980's, DRI introduced abinary recompiler. […]
In March, 1995, theSoftware Publishers Association posthumously honoredGary for his contributions to the computer industry. They listed some of his accomplishments: […] In the 1980s, throughDRI, he introduced abinary recompiler. […]
[…] 8086/88 Assembler With Translator $99.50 Available for MSDOS, PCDOS, or CP/M-86 […] This package also includes […] an 8080 to 8086 source code translator (no limit on program size to translate) […] Z-8000 Cross Development Package $199.50 […] This powerful package includes a Z-80/8080 to Z-8000 Assembly Language Source Code Translator […] The Translators provide Z-8000 source code from the Intel 8080 or Zilog Z-80 source code. The Z-8000 source code used by these packages are in the unique 2500AD syntax using Zilog mnemonics designed to make the transition from Z-80 code writing to Z-8000 easy […] 8086 and Z-8000 XASM includes source code translators […](NB. 8086/88 XASM available for Z-80 CP/M,Zilog System 8000 UNIX, Olivetti M-20PCOS; Z-8000 XASM for Z-80 CP/M, MS-DOS, CP/M-86, Olivetti M-20 PCOS.)
[…]Zilog, Inc. has introduced a series of modular and expandable product development systems (PDS) forZ8-,Z80-, andZ8000-based microcomputer designs. All four versions of the PDS 8000 system – models 10, 15, 25, and 30 – have […] A standard feature of each system is a Z8000 software development package, which includes theZDOSII file management routine, PLZ/ASM high-level structured assemblers, a Z80/Z8000 translator and a Z8000 L and MACP macroprocessor. […] The models 10 and 25 have the same specifications as the models 15 and 30, respectively. but the 10 and 25 do not include the Z8000 development module. The PDS Model 10 is priced at $10,485; the Model 15 at $11,995; the Model 25 at $20,000; and the Model 35 at $21,500. All four systems are available 30 days after receipt of the order. […]
[…] Table 1. 16-Bit Microprocessor Characteristics […]Zilog 8000 […] Software […] Zilog expects to supportZ8000 with translators for PLZ,BASIC,COBOL andFORTRAN. These will permit conversion ofZ80 code to Z8000 code, since Z8000 set is superset to Z80. […]
[…] Z8000 TRANSLATOR: Provides a quick means to convert an existingZ80 Assembly Language program toZ8000 code and the PLZ/ASM program format. […][34][35]
[…]Digital Research has also announced plans for aZ8000 version ofCP/M. Application software will be moved to the Z8000 when more development software is available. A commercially available translator fromZ80 to Z8000 is needed. […]
[…] bothZilog andAMC offeredZ80-to-Z8000 translation programs. Like theIntel8080-to-8086 translator, it resulted in immediate bloat unless you were willing to hand-optimize the result. Much early MS-DOS code was auto-translated and tweaked 8080 CP/M code. I know that much ofSuperCalc for the PC was, for example. Early (e.g. 3.3) versions ofWordstar for DOS probably also were. […] There were Z80-to-Z8000 source-code translators, but it wasn't a straightforward process ("strict" and "relaxed" modes; sometimes one Z80-to-several Z8000 instructions). The 8086 is much closer to the 8080 than the Z8000 is to the Z80. […]
[…] Pasmo is aZ80cross assembler […] that […] can generate object code in the following formats: raw binary,Intel HEX, PRL forCP/M PlusRSX, Plus3Dos (Spectrum +3 disk), TAP, TZX and CDT (Spectrum andAmstrad CPC emulators tape images),AmsDos (Amstrad CPC disk) andMSX (for use with BLOAD from disk in Basic). Starting with version 0.5.0 […] can also generate8086 code from Z80 sources, in binary format forMs-dosCOM files or inCP/M 86CMD format. […][42][43]
[…] It instead executes programs written in high-level languages such as BASIC and C (a Pascal compiler and a 8088 to Z8000 translator are in the works. […]andCiarcia, Steve (June 1984)."Trump Card – Part 2: Software – TBASIC and C compilers and an assemble"(PDF).BYTE – The small systems journal. Ciarcia's Circuit Cellar. Vol. 9, no. 6.McGraw-Hill, Inc. pp. 115–122.ISSN 0360-5280. Retrieved2020-01-29.
[…] I expect that object-code translators for Z80-to-Z8000 and 8088-to-Z8000 conversions will soon be available […], also available asCiarcia, Steve (1990)."Trump Card – Part 1: Hardware – Speed up your IBM PC with 16-bit coprocessing power & Part 2: Software – TBASIC and C compilers and an assemble". In Gonneau, Daniel; Bernardi, Fred; Ausburn, Richard (eds.).Ciarcia's Circuit Cellar. Vol. 7.McGraw-Hill Publishing Company. pp. 138–152,153–160.ISBN 0-07-010969-9.Archived from the original on 2020-02-01. Retrieved2020-01-29.[44]