<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="../make-menu.xsl" type="text/xsl"?><html>
   <head>
      <this-is section="using-xsl" page="performanceanalysis" subpage=""/>
      <!--
           Generated at 2011-12-09T20:47:22.916Z--><title>Saxonica: XSLT and XQuery Processing: Performance Analysis</title>
      <meta name="coverage" content="Worldwide"/>
      <meta name="copyright" content="Copyright Saxonica Ltd"/>
      <meta name="title"
            content="Saxonica: XSLT and XQuery Processing: Performance Analysis"/>
      <meta name="robots" content="noindex,nofollow"/>
      <link rel="stylesheet" href="../saxondocs.css" type="text/css"/>
   </head>
   <body class="main">
      <h1>Performance Analysis</h1>
      <p>Saxon comes with a simple tool allowing profiling of the execution time in a stylesheet.</p>
      <p>To run this tool, first execute the transformation with the <code>-TP:filename</code> option, which 
         will gather timed tracing information and create a profile report to the specified file
          (or to the standard error output if no filename is given)</p>
      <p class="command">java   -jar   <i>dir</i>/saxon9he.jar  
 -TP:profile.html   <i>source</i>   <i>stylesheet</i>
      </p>
      <p>Then view the resulting <code>profile.html</code> file in your browser.</p>
      <p>The output identifies templates and functions in the original stylesheet by their name or match pattern,
          line number, and the last
few characters of the URI of their module. For each instruction it gives the number of times the instruction
was executed, the average time in milliseconds of each execution, and the total time. Timings are given both gross
(the time for a template including all the templates it calls recursively), and net (the time in a template excluding
          time in its called templates). The table is sorted
according to a weighting function that attempts to put the dominant functions and templates at the top. These will
not necessarily be those with the greatest time, which tend to be instructions that were only executed once
but remained active for the duration of the transformation.</p>
      <table width="100%">
         <tr>
            <td>
               <p align="right"><a class="nav" href="xslt30.xml">Next</a></p>
            </td>
         </tr>
      </table>
   </body>
</html>
