home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _2bace521bf9f7e0870656f9d92932ac9 < prev    next >
Text File  |  2000-03-23  |  10KB  |  248 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>B::CC - Perl compiler's optimized C translation backend</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> B::CC - Perl compiler's optimized C translation backend</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#options">OPTIONS</A></LI>
  26.     <LI><A HREF="#examples">EXAMPLES</A></LI>
  27.     <LI><A HREF="#bugs">BUGS</A></LI>
  28.     <LI><A HREF="#differences">DIFFERENCES</A></LI>
  29.     <UL>
  30.  
  31.         <LI><A HREF="#loops">Loops</A></LI>
  32.         <LI><A HREF="#context of ..">Context of ``..''</A></LI>
  33.         <LI><A HREF="#arithmetic">Arithmetic</A></LI>
  34.         <LI><A HREF="#deprecated features">Deprecated features</A></LI>
  35.     </UL>
  36.  
  37.     <LI><A HREF="#author">AUTHOR</A></LI>
  38. </UL>
  39. <!-- INDEX END -->
  40.  
  41. <HR>
  42. <P>
  43. <H1><A NAME="name">NAME</A></H1>
  44. <P>B::CC - Perl compiler's optimized C translation backend</P>
  45. <P>
  46. <HR>
  47. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  48. <UL>
  49. <LI>Linux</LI>
  50. <LI>Solaris</LI>
  51. <LI>Windows</LI>
  52. </UL>
  53. <HR>
  54. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  55. <PRE>
  56.         perl -MO=CC[,OPTIONS] foo.pl</PRE>
  57. <P>
  58. <HR>
  59. <H1><A NAME="description">DESCRIPTION</A></H1>
  60. <P>This compiler backend takes Perl source and generates C source code
  61. corresponding to the flow of your program. In other words, this
  62. backend is somewhat a ``real'' compiler in the sense that many people
  63. think about compilers. Note however that, currently, it is a very
  64. poor compiler in that although it generates (mostly, or at least
  65. sometimes) correct code, it performs relatively few optimisations.
  66. This will change as the compiler develops. The result is that
  67. running an executable compiled with this backend may start up more
  68. quickly than running the original Perl program (a feature shared
  69. by the <STRONG>C</STRONG> compiler backend--see <EM>B::C</EM>) and may also execute
  70. slightly faster. This is by no means a good optimising compiler--yet.</P>
  71. <P>
  72. <HR>
  73. <H1><A NAME="options">OPTIONS</A></H1>
  74. <P>If there are any non-option arguments, they are taken to be
  75. names of objects to be saved (probably doesn't work properly yet).
  76. Without extra arguments, it saves the main program.</P>
  77. <DL>
  78. <DT><STRONG><A NAME="item_%2Dofilename"><STRONG>-ofilename</STRONG></A></STRONG><BR>
  79. <DD>
  80. Output to filename instead of STDOUT
  81. <P></P>
  82. <DT><STRONG><A NAME="item_%2Dv"><STRONG>-v</STRONG></A></STRONG><BR>
  83. <DD>
  84. Verbose compilation (currently gives a few compilation statistics).
  85. <P></P>
  86. <DT><STRONG><A NAME="item_%2D%2D"><STRONG>--</STRONG></A></STRONG><BR>
  87. <DD>
  88. Force end of options
  89. <P></P>
  90. <DT><STRONG><A NAME="item_%2DuPackname"><STRONG>-uPackname</STRONG></A></STRONG><BR>
  91. <DD>
  92. Force apparently unused subs from package Packname to be compiled.
  93. This allows programs to use eval ``foo()'' even when sub foo is never
  94. seen to be used at compile time. The down side is that any subs which
  95. really are never used also have code generated. This option is
  96. necessary, for example, if you have a signal handler foo which you
  97. initialise with <CODE>$SIG{BAR} = "foo"</CODE>.  A better fix, though, is just
  98. to change it to <CODE>$SIG{BAR} = \&foo</CODE>. You can have multiple <STRONG>-u</STRONG>
  99. options. The compiler tries to figure out which packages may possibly
  100. have subs in which need compiling but the current version doesn't do
  101. it very well. In particular, it is confused by nested packages (i.e.
  102. of the form <CODE>A::B</CODE>) where package <CODE>A</CODE> does not contain any subs.
  103. <P></P>
  104. <DT><STRONG><A NAME="item_%2DmModulename"><STRONG>-mModulename</STRONG></A></STRONG><BR>
  105. <DD>
  106. Instead of generating source for a runnable executable, generate
  107. source for an XSUB module. The boot_Modulename function (which
  108. DynaLoader can look for) does the appropriate initialisation and runs
  109. the main part of the Perl source that is being compiled.
  110. <P></P>
  111. <DT><STRONG><A NAME="item_%2DD"><STRONG>-D</STRONG></A></STRONG><BR>
  112. <DD>
  113. Debug options (concatenated or separate flags like <CODE>perl -D</CODE>).
  114. <P></P>
  115. <DT><STRONG><A NAME="item_%2DDr"><STRONG>-Dr</STRONG></A></STRONG><BR>
  116. <DD>
  117. Writes debugging output to STDERR just as it's about to write to the
  118. program's runtime (otherwise writes debugging info as comments in
  119. its C output).
  120. <P></P>
  121. <DT><STRONG><A NAME="item_%2DDO"><STRONG>-DO</STRONG></A></STRONG><BR>
  122. <DD>
  123. Outputs each OP as it's compiled
  124. <P></P>
  125. <DT><STRONG><A NAME="item_%2DDs"><STRONG>-Ds</STRONG></A></STRONG><BR>
  126. <DD>
  127. Outputs the contents of the shadow stack at each OP
  128. <P></P>
  129. <DT><STRONG><A NAME="item_%2DDp"><STRONG>-Dp</STRONG></A></STRONG><BR>
  130. <DD>
  131. Outputs the contents of the shadow pad of lexicals as it's loaded for
  132. each sub or the main program.
  133. <P></P>
  134. <DT><STRONG><A NAME="item_%2DDq"><STRONG>-Dq</STRONG></A></STRONG><BR>
  135. <DD>
  136. Outputs the name of each fake PP function in the queue as it's about
  137. to process it.
  138. <P></P>
  139. <DT><STRONG><A NAME="item_%2DDl"><STRONG>-Dl</STRONG></A></STRONG><BR>
  140. <DD>
  141. Output the filename and line number of each original line of Perl
  142. code as it's processed (<CODE>pp_nextstate</CODE>).
  143. <P></P>
  144. <DT><STRONG><A NAME="item_%2DDt"><STRONG>-Dt</STRONG></A></STRONG><BR>
  145. <DD>
  146. Outputs timing information of compilation stages.
  147. <P></P>
  148. <DT><STRONG><A NAME="item_%2Df"><STRONG>-f</STRONG></A></STRONG><BR>
  149. <DD>
  150. Force optimisations on or off one at a time.
  151. <P></P>
  152. <DT><STRONG><A NAME="item_%2Dffreetmps%2Deach%2Dbblock"><STRONG>-ffreetmps-each-bblock</STRONG></A></STRONG><BR>
  153. <DD>
  154. Delays FREETMPS from the end of each statement to the end of the each
  155. basic block.
  156. <P></P>
  157. <DT><STRONG><A NAME="item_%2Dffreetmps%2Deach%2Dloop"><STRONG>-ffreetmps-each-loop</STRONG></A></STRONG><BR>
  158. <DD>
  159. Delays FREETMPS from the end of each statement to the end of the group
  160. of basic blocks forming a loop. At most one of the freetmps-each-*
  161. options can be used.
  162. <P></P>
  163. <DT><STRONG><A NAME="item_%2Dfomit%2Dtaint"><STRONG>-fomit-taint</STRONG></A></STRONG><BR>
  164. <DD>
  165. Omits generating code for handling perl's tainting mechanism.
  166. <P></P>
  167. <DT><STRONG><A NAME="item_%2DOn"><STRONG>-On</STRONG></A></STRONG><BR>
  168. <DD>
  169. Optimisation level (n = 0, 1, 2, ...). <STRONG>-O</STRONG> means <STRONG>-O1</STRONG>.
  170. Currently, <STRONG>-O1</STRONG> sets <STRONG>-ffreetmps-each-bblock</STRONG> and <STRONG>-O2</STRONG>
  171. sets <STRONG>-ffreetmps-each-loop</STRONG>.
  172. <P></P></DL>
  173. <P>
  174. <HR>
  175. <H1><A NAME="examples">EXAMPLES</A></H1>
  176. <PRE>
  177.         perl -MO=CC,-O2,-ofoo.c foo.pl
  178.         perl cc_harness -o foo foo.c</PRE>
  179. <P>Note that <CODE>cc_harness</CODE> lives in the <CODE>B</CODE> subdirectory of your perl
  180. library directory. The utility called <CODE>perlcc</CODE> may also be used to
  181. help make use of this compiler.</P>
  182. <PRE>
  183.         perl -MO=CC,-mFoo,-oFoo.c Foo.pm
  184.         perl cc_harness -shared -c -o Foo.so Foo.c</PRE>
  185. <P>
  186. <HR>
  187. <H1><A NAME="bugs">BUGS</A></H1>
  188. <P>Plenty. Current status: experimental.</P>
  189. <P>
  190. <HR>
  191. <H1><A NAME="differences">DIFFERENCES</A></H1>
  192. <P>These aren't really bugs but they are constructs which are heavily
  193. tied to perl's compile-and-go implementation and with which this
  194. compiler backend cannot cope.</P>
  195. <P>
  196. <H2><A NAME="loops">Loops</A></H2>
  197. <P>Standard perl calculates the target of ``next'', ``last'', and ``redo''
  198. at run-time. The compiler calculates the targets at compile-time.
  199. For example, the program</P>
  200. <PRE>
  201.     sub skip_on_odd { next NUMBER if $_[0] % 2 }
  202.     NUMBER: for ($i = 0; $i < 5; $i++) {
  203.         skip_on_odd($i);
  204.         print $i;
  205.     }</PRE>
  206. <P>produces the output</P>
  207. <PRE>
  208.     024</PRE>
  209. <P>with standard perl but gives a compile-time error with the compiler.</P>
  210. <P>
  211. <H2><A NAME="context of ..">Context of ``..''</A></H2>
  212. <P>The context (scalar or array) of the ``..'' operator determines whether
  213. it behaves as a range or a flip/flop. Standard perl delays until
  214. runtime the decision of which context it is in but the compiler needs
  215. to know the context at compile-time. For example,</P>
  216. <PRE>
  217.     @a = (4,6,1,0,0,1);
  218.     sub range { (shift @a)..(shift @a) }
  219.     print range();
  220.     while (@a) { print scalar(range()) }</PRE>
  221. <P>generates the output</P>
  222. <PRE>
  223.     456123E0</PRE>
  224. <P>with standard Perl but gives a compile-time error with compiled Perl.</P>
  225. <P>
  226. <H2><A NAME="arithmetic">Arithmetic</A></H2>
  227. <P>Compiled Perl programs use native C arithemtic much more frequently
  228. than standard perl. Operations on large numbers or on boundary
  229. cases may produce different behaviour.</P>
  230. <P>
  231. <H2><A NAME="deprecated features">Deprecated features</A></H2>
  232. <P>Features of standard perl such as <CODE>$[</CODE> which have been deprecated
  233. in standard perl since Perl5 was released have not been implemented
  234. in the compiler.</P>
  235. <P>
  236. <HR>
  237. <H1><A NAME="author">AUTHOR</A></H1>
  238. <P>Malcolm Beattie, <CODE>mbeattie@sable.ox.ac.uk</CODE></P>
  239. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  240. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  241. <STRONG><P CLASS=block> B::CC - Perl compiler's optimized C translation backend</P></STRONG>
  242. </TD></TR>
  243. </TABLE>
  244.  
  245. </BODY>
  246.  
  247. </HTML>
  248.