mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Use user time, not wall time, for optimizer time.
llvm-svn: 18941
This commit is contained in:
parent
7c7e501c0e
commit
c8857eb215
@ -688,13 +688,13 @@ if ($BuildError eq "") {
|
|||||||
|
|
||||||
# Loop over all of the records, summarizing them into rows for the running
|
# Loop over all of the records, summarizing them into rows for the running
|
||||||
# totals file.
|
# totals file.
|
||||||
my $WallTimeRE = "[A-Za-z0-9.: ]+\\(([0-9.]+) wall clock";
|
my $WallTimeRE = "Time: ([0-9.]+) seconds \\([0-9.]+ wall clock";
|
||||||
foreach $Rec (@Records) {
|
foreach $Rec (@Records) {
|
||||||
my $rNATTime = GetRegex 'TEST-RESULT-nat-time: program\s*([.0-9m]+)', $Rec;
|
my $rNATTime = GetRegex 'TEST-RESULT-nat-time: program\s*([.0-9m]+)', $Rec;
|
||||||
my $rCBETime = GetRegex 'TEST-RESULT-cbe-time: program\s*([.0-9m]+)', $Rec;
|
my $rCBETime = GetRegex 'TEST-RESULT-cbe-time: program\s*([.0-9m]+)', $Rec;
|
||||||
my $rLLCTime = GetRegex 'TEST-RESULT-llc-time: program\s*([.0-9m]+)', $Rec;
|
my $rLLCTime = GetRegex 'TEST-RESULT-llc-time: program\s*([.0-9m]+)', $Rec;
|
||||||
my $rJITTime = GetRegex 'TEST-RESULT-jit-time: program\s*([.0-9m]+)', $Rec;
|
my $rJITTime = GetRegex 'TEST-RESULT-jit-time: program\s*([.0-9m]+)', $Rec;
|
||||||
my $rOptTime = GetRegex "TEST-RESULT-compile: $WallTimeRE", $Rec;
|
my $rOptTime = GetRegex "TEST-RESULT-compile: .*$WallTimeRE", $Rec;
|
||||||
my $rBytecodeSize = GetRegex 'TEST-RESULT-compile: *([0-9]+)', $Rec;
|
my $rBytecodeSize = GetRegex 'TEST-RESULT-compile: *([0-9]+)', $Rec;
|
||||||
my $rMachCodeSize = GetRegex 'TEST-RESULT-jit-machcode: *([0-9]+).*bytes of machine code', $Rec;
|
my $rMachCodeSize = GetRegex 'TEST-RESULT-jit-machcode: *([0-9]+).*bytes of machine code', $Rec;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user