Add polly tests to configure file.
[llvm-testsuite.git] / TEST.jit.report
blob90c8dcac7d714c885359eecb9939ccd707530ea7
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
8 $SortCol = 2;
9 $TrimRepeatedPrefix = 1;
11 # Sort in descending order
12 $SortReverse = 1;
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.
18 # Name
19  ["Name:" , '\'([^\']+)\' Program'],
20  [],
21 # Times
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'],
29  [],
30 # Sizes
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'],
34  [],
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'],
40  []