Please enable JavaScript to view this site.

Performance Validator Help

 

The XML tags used to export session data from Performance Validator are outlined below.

 

This information may be useful to reformat the details for use in another tool or application. Alternatively if you need a custom HTML format, you can first export the XML and use that to generate the HTML.

 

Application and program details

 

An exported XML file starts with a few details about Performance Validator and the target program:

 

<XML>

<VALIDATORINFO>Performance Validator information online</VALIDATORINFO>
<VALIDATOR>Product name</VALIDATOR>
<VALIDATORVERSION>Version</VALIDATORVERSION>
<VALIDATORDATE>Build date</VALIDATORDATE>
<VALIDATORTIME>Build time</VALIDATORTIME>
<TITLE>Target program name</TITLE>
<EXITCODE>Program exit status code and description (if collected)</EXITCODE>

<INFO>Information about the report type</INFO>
...

 

Performance data

 

The header information above is followed by a series of Performance Data tags containing the statistics that were selected for export.

 

Below is a typical example from the example program - see the Export Session Dialog for an explanation of each item.

 

 <PERFORMANCE_DATA>
  <NUM_CHILDREN>3</NUM_CHILDREN>
  <ADDRESS>0x0000000000415940</ADDRESS>
  <CLASS>CNativeExampleDoc</CLASS>
  <METHOD>AssertValid</METHOD>
  <MODULE>nativeExample.exe</MODULE>
  <FILENAME>c:\program files (x86)\software verification\c++ performance validator\examples\nativeexample\nativeexampledoc.cpp Line 64</FILENAME>
  <FUNCTION>1,929.20</FUNCTION>
  <FUNCTION_PERCENT>1.88</FUNCTION_PERCENT>
  <AVERAGE>0.02</AVERAGE>
  <AVERAGE_PERCENT>0.00</AVERAGE_PERCENT>
  <CHILD>1,886.08</CHILD>
  <CHILD_PERCENT>1.84</CHILD_PERCENT>
  <CALL_COUNT>253,598</CALL_COUNT>
  <CALL_COUNT_PERCENT>0.81</CALL_COUNT_PERCENT>
  <TOTAL>3,815.28</TOTAL>
  <TOTAL_PERCENT>3.71</TOTAL_PERCENT>
  <LONGEST>0.09</LONGEST>
  <LONGEST_PERCENT>0.00</LONGEST_PERCENT>
  <SHORTEST>0.00</SHORTEST>
  <SHORTEST_PERCENT>0.00</SHORTEST_PERCENT>

    </PERFORMANCE_DATA>