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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>B::C - Perl compiler's C 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::C - Perl compiler's C 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="#author">AUTHOR</A></LI>
  29. </UL>
  30. <!-- INDEX END -->
  31.  
  32. <HR>
  33. <P>
  34. <H1><A NAME="name">NAME</A></H1>
  35. <P>B::C - Perl compiler's C backend</P>
  36. <P>
  37. <HR>
  38. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  39. <UL>
  40. <LI>Linux</LI>
  41. <LI>Solaris</LI>
  42. <LI>Windows</LI>
  43. </UL>
  44. <HR>
  45. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  46. <PRE>
  47.         perl -MO=C[,OPTIONS] foo.pl</PRE>
  48. <P>
  49. <HR>
  50. <H1><A NAME="description">DESCRIPTION</A></H1>
  51. <P>This compiler backend takes Perl source and generates C source code
  52. corresponding to the internal structures that perl uses to run
  53. your program. When the generated C source is compiled and run, it
  54. cuts out the time which perl would have taken to load and parse
  55. your program into its internal semi-compiled form. That means that
  56. compiling with this backend will not help improve the runtime
  57. execution speed of your program but may improve the start-up time.
  58. Depending on the environment in which your program runs this may be
  59. either a help or a hindrance.</P>
  60. <P>
  61. <HR>
  62. <H1><A NAME="options">OPTIONS</A></H1>
  63. <P>If there are any non-option arguments, they are taken to be
  64. names of objects to be saved (probably doesn't work properly yet).
  65. Without extra arguments, it saves the main program.</P>
  66. <DL>
  67. <DT><STRONG><A NAME="item_%2Dofilename"><STRONG>-ofilename</STRONG></A></STRONG><BR>
  68. <DD>
  69. Output to filename instead of STDOUT
  70. <P></P>
  71. <DT><STRONG><A NAME="item_%2Dv"><STRONG>-v</STRONG></A></STRONG><BR>
  72. <DD>
  73. Verbose compilation (currently gives a few compilation statistics).
  74. <P></P>
  75. <DT><STRONG><A NAME="item_%2D%2D"><STRONG>--</STRONG></A></STRONG><BR>
  76. <DD>
  77. Force end of options
  78. <P></P>
  79. <DT><STRONG><A NAME="item_%2DuPackname"><STRONG>-uPackname</STRONG></A></STRONG><BR>
  80. <DD>
  81. Force apparently unused subs from package Packname to be compiled.
  82. This allows programs to use eval ``foo()'' even when sub foo is never
  83. seen to be used at compile time. The down side is that any subs which
  84. really are never used also have code generated. This option is
  85. necessary, for example, if you have a signal handler foo which you
  86. initialise with <CODE>$SIG{BAR} = "foo"</CODE>.  A better fix, though, is just
  87. to change it to <CODE>$SIG{BAR} = \&foo</CODE>. You can have multiple <STRONG>-u</STRONG>
  88. options. The compiler tries to figure out which packages may possibly
  89. have subs in which need compiling but the current version doesn't do
  90. it very well. In particular, it is confused by nested packages (i.e.
  91. of the form <CODE>A::B</CODE>) where package <CODE>A</CODE> does not contain any subs.
  92. <P></P>
  93. <DT><STRONG><A NAME="item_%2DD"><STRONG>-D</STRONG></A></STRONG><BR>
  94. <DD>
  95. Debug options (concatenated or separate flags like <CODE>perl -D</CODE>).
  96. <P></P>
  97. <DT><STRONG><A NAME="item_%2DDo"><STRONG>-Do</STRONG></A></STRONG><BR>
  98. <DD>
  99. OPs, prints each OP as it's processed
  100. <P></P>
  101. <DT><STRONG><A NAME="item_%2DDc"><STRONG>-Dc</STRONG></A></STRONG><BR>
  102. <DD>
  103. COPs, prints COPs as processed (incl. file & line num)
  104. <P></P>
  105. <DT><STRONG><A NAME="item_%2DDA"><STRONG>-DA</STRONG></A></STRONG><BR>
  106. <DD>
  107. prints AV information on saving
  108. <P></P>
  109. <DT><STRONG><A NAME="item_%2DDC"><STRONG>-DC</STRONG></A></STRONG><BR>
  110. <DD>
  111. prints CV information on saving
  112. <P></P>
  113. <DT><STRONG><A NAME="item_%2DDM"><STRONG>-DM</STRONG></A></STRONG><BR>
  114. <DD>
  115. prints MAGIC information on saving
  116. <P></P>
  117. <DT><STRONG><A NAME="item_%2Df"><STRONG>-f</STRONG></A></STRONG><BR>
  118. <DD>
  119. Force optimisations on or off one at a time.
  120. <P></P>
  121. <DT><STRONG><A NAME="item_%2Dfcog"><STRONG>-fcog</STRONG></A></STRONG><BR>
  122. <DD>
  123. Copy-on-grow: PVs declared and initialised statically.
  124. <P></P>
  125. <DT><STRONG><A NAME="item_%2Dfno%2Dcog"><STRONG>-fno-cog</STRONG></A></STRONG><BR>
  126. <DD>
  127. No copy-on-grow.
  128. <P></P>
  129. <DT><STRONG><A NAME="item_%2DOn"><STRONG>-On</STRONG></A></STRONG><BR>
  130. <DD>
  131. Optimisation level (n = 0, 1, 2, ...). <STRONG>-O</STRONG> means <STRONG>-O1</STRONG>.  Currently,
  132. <STRONG>-O1</STRONG> and higher set <STRONG>-fcog</STRONG>.
  133. <P></P>
  134. <DT><STRONG><A NAME="item_%2Dllimit"><STRONG>-llimit</STRONG></A></STRONG><BR>
  135. <DD>
  136. Some C compilers impose an arbitrary limit on the length of string
  137. constants (e.g. 2048 characters for Microsoft Visual C++).  The
  138. <STRONG>-llimit</STRONG> options tells the C backend not to generate string literals
  139. exceeding that limit.
  140. <P></P></DL>
  141. <P>
  142. <HR>
  143. <H1><A NAME="examples">EXAMPLES</A></H1>
  144. <PRE>
  145.     perl -MO=C,-ofoo.c foo.pl
  146.     perl cc_harness -o foo foo.c</PRE>
  147. <P>Note that <CODE>cc_harness</CODE> lives in the <CODE>B</CODE> subdirectory of your perl
  148. library directory. The utility called <CODE>perlcc</CODE> may also be used to
  149. help make use of this compiler.</P>
  150. <PRE>
  151.     perl -MO=C,-v,-DcA,-l2048 bar.pl > /dev/null</PRE>
  152. <P>
  153. <HR>
  154. <H1><A NAME="bugs">BUGS</A></H1>
  155. <P>Plenty. Current status: experimental.</P>
  156. <P>
  157. <HR>
  158. <H1><A NAME="author">AUTHOR</A></H1>
  159. <P>Malcolm Beattie, <CODE>mbeattie@sable.ox.ac.uk</CODE></P>
  160. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  161. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  162. <STRONG><P CLASS=block> B::C - Perl compiler's C backend</P></STRONG>
  163. </TD></TR>
  164. </TABLE>
  165.  
  166. </BODY>
  167.  
  168. </HTML>
  169.