1 ##=== TEST.jit.report - Report description for jit tests -------*- perl -*-===##
3 # This file defines a report to be generated for the jit test.
5 ##===----------------------------------------------------------------------===##
7 # Sort by total execution time
9 $TrimRepeatedPrefix = 1;
11 # Sort in descending order
14 # These are the columns for the report. The first entry is the header for the
15 # column, the second is the regex to use to match the value. Empty list create
16 # seperators, and closures may be put in for custom processing.
19 ["Name:" , '\'([^\']+)\' Program'],
22 ["Total" , 'real ([0-9.]+)'],
23 ["CodeGen", 'Total Execution Time: ([0-9.]+)'],
24 ["InstSel", '([0-9.]+) \([^)]+\)[ 0-9A-Za-z]+Instruction Selection'],
25 ["LiveVar", '([0-9.]+) \([^)]+\)[ 0-9A-Za-z]+Live Variable'],
26 ["RA" , '([0-9.]+) \([^)]+\)[ 0-9A-Za-z]+Register Allocator'],
27 ["FPStack", '([0-9.]+) \([^)]+\)[ 0-9]+X86 FP Stackifier'],
28 ["Peep" , '([0-9.]+) \([^)]+\)[- 0-9]+X86 Peephole Optimizer'],
31 ["MCSize" , '([0-9]+).*Number of bytes of machine code compiled'],
32 ["#MCInsts", '([0-9]+).*Number of machine instructions emitted'],
33 ["#Glob" , '([0-9]+).*Number of bytes of global vars'],
35 # Number of transformations
36 ["#store" , '([0-9]+).*Number of stores added'],
37 ["#load" , '([0-9]+).*Number of loads added'],
38 ["#fp" , '([0-9]+).*Number of floating point instructions'],
39 ["#fxch" , '([0-9]+).*Number of fxch instructions inserted'],