Is there a tool available which will convert source code in Perl to source code in C? Any platform is fine.
|
There is perlcc which "translates" Perl to C. It's not really a Perl to C compiler; its output is simply a bundle of the Perl interpreter and the parsed bytecode of your program. |
|||||
|
|
The canonical answer to this is MJD's "Why Not Translate Perl to C?". |
|||||||||
|
|
The answer is going to be pretty much "No". Perl is an extremely dynamic language. C is a language for statically-sized data types. Any translation of Perl to C will likely be pretty much "execute this subroutine call to simulate what Perl does" repeatedly. And there's little point in building such a translator, as it is unlikely to execute Perl much faster than Perl does. |
||||
|
|
The converter is called a programmer, and the conversion process programming. Seriously, the language proper of perl is so vast and powerful, that anyone attempting to write a converter would look down on a life-long task. Additionally, the effect in performance improvement might not be an order of magnitude, so why bother? |
|||
|
|
|
I wrote a pretty large program in Perl that creates PDF based on HTML and database queries that is virtually acting like a browser. The total source code volume is over 1MB. The programs evaluates HTML, creates SQL queries and retrieves data, searches for images on disk or downloads them from HTTP servers, builds a document structure, does all the layout calculations and, finally, produces a PDF. I had to find out how to speed up the operation in a number of ways. Based on that I state that Perl is quite fast, and many tasks completed swiftly and successfully in Perl take a long time in C, and even C++. There are 2 ways to make Perl slow or memory consuming: a large number of complex data structures - they need a lot of memory - and a large number of calculations. Yes, calculation is indeed very slow in Perl. A simple term like
is quite time consuming in Perl, but very quick in any compiled language. The operands here may even be integers, not floating point variables - it is slow. I guess this is the reason why Perl scores pretty bad in the language shootout contest [http://shootout.alioth.debian.org/](The Computer Language Benchmarks Game). I found my pretty large program -it uses many Perl core and additional CPAN modules as well- to start quickly, despite being intepreted. It performs very well... until it comes to the calculation of text sizes and layout coordinates. Thats very time consuming. After stating this, I wrote small Perl test programs just doing millions of arithmetic calculations and found them to be very slow. Besides, I am using and object oriented approach to model each and every layout element. Each object is represented by a hash - thats at least about 10kBytes per object. If there is a large amount of data to print, a memory consumption of several 100MBytes is not unusual for that program. So, I still have a good reason to move the part calculating the layout to C, using structs where I now have hashes with fixed keys and have C integer arithmetic where now Perl does a slow job. But everything else was done and tested swiftly and runs so fast that I don't see any reason to change. I also find Perl code much more convenient to write and test than C code. And a lot of CPAN modules provide solutions you don't have to work out yourself. Many of them are well tested and documented. After this quite lenghty dicussion I conclude: if it is to be a server or command line program, consider Perl. But if this program has to build up huge data structures or lots of arithmetics, consider something faster. Sometimes, it may be a Perl program with a module written in C. |
|||
|
|