vote up 0 vote down star
1

Im just curious if there is is any sort of program/application out there that will allow to enter code in one language and translate that to another language such as asm. This seems perfectly possible....so does anything like this exist?

flag
I have a program that can take any C program and convert it to assembly. It's called gcc. :) – Mike Daniels May 19 at 22:37
1  
Mine -javac- doesn't :(, hahaha – victor hugo May 19 at 22:38
For C/C++ programs you get the assembly code. For .NET program, you have the IL assembly... For Java you can read the bytecode assembly. Other compilers will do it too but there is no all purpose tool for this. When the compiler doesn't provide an asm listing, you can get it from the final executable. – toto Jun 7 at 21:19

6 Answers

vote up 14 vote down check

Yes. They are called compilers.

Compilers are just one example of a class of programs called language-translators.

Compilers convert higher-level languages, such as C++ and Java into lower-level languages, including virtual machine byte-codes, assembly, C, or directly into machine-runnable object-code.

link|flag
I don't know if that was meant to be a smart ass response or not, but I think its pretty clear I am not asking about compiling into machine code. – In_Ur_Mind May 19 at 22:38
1  
Most compilers go to assembly. Then they run the assembler. – dmckee May 19 at 22:40
5  
It's not a smart ass response. It's the very definition of a compiler, look it up :) – Ben Schwehn May 19 at 22:40
1  
I gave a quick answer, and then padded it out within a few minutes. These comments are all on the quick answer I gave. I wasn't intending to be a smart-ass; sorry if it came across that way. – Oddthinking May 19 at 22:43
1  
@dmckee - actually, few compilers except gcc do that. – Neil Butterworth May 19 at 23:03
show 2 more comments
vote up 4 vote down

It's effectively what any compilator does since assembler is just another form of machine code. I believe that GCC does this explicitly, and that you can ask it to show you the intermediate assembler. For instance, take a look at the GNU Assembler.

link|flag
3  
yes, by passing the -S parameter to gcc – none May 19 at 22:40
vote up 1 vote down

Issues arise when you say that something is "perfectly possible." A feature of one language often does not translate directly or easily to another; that's why we choose a language for a task in the first place! For example, converting a fibonacci number from Java to C is trivial, but to Haskell? Sure, it's still doable, but try converting a program that opens posix threads and listens on multiple ports for various bits of network traffic.

Almost every piece of useful code relies on extensively on external libraries, many of which are not open source. Aside from this, what do you think the following should translate to in C? Java even?

def method( f ):
    G = {'a':1}
    f(G)

def f( x ):
    print( [ (key, value) for (key,value) in x.items() ] )

method(f)

This task is inherently more complicated than it seems for anything but the most trivial case (C-language to C-language.) Going between static and dynamically typed languages will be rough, as will anything language specific.

link|flag
vote up 0 vote down

Here is a program for converting .NET code to Java, PHP, JavaScript and ActionScript http://jsc.sourceforge.net/

link|flag
vote up 0 vote down

There are tools that allow you to translate one language into another. Basically, there's a parser, a translator, and printer.

The parser obviously parses the source into a AST.

The translator then has to transform the AST into structures that make sense in the target language.

Finally, the printer understands the post-transformed structures and can output that target code.

link|flag
vote up 0 vote down

You may be interested haXe, see http://haxe.org/.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.