3 Star 0 Fork 14

Lyupa Anastasia/llvm-test-suite

forked from liwentao/llvm-test-suite 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
TEST.llc.report 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
Jakob Stoklund Olesen 提交于 2009-12-08 22:29 . Undo mistaken commit.
##=== TEST.llc.report - Report description for llc tests -------*- perl -*-===##
#
# This file defines a report to be generated for the llc test.
#
##===----------------------------------------------------------------------===##
# Sort by name
$SortCol = 1;
$TrimRepeatedPrefix = 1;
# These are the columns for the report. The first entry is the header for the
# column, the second is the regex to use to match the value. Empty list create
# seperators, and closures may be put in for custom processing.
(
# Name
["Name:" , '\'([^\']+)\' Program'],
[],
# Times
["LiveVar", '([0-9.]+) \([^)]+\)[ 0-9A-Za-z]+Live Variable'],
["LiveInt", '([0-9.]+) \([^)]+\)[ 0-9A-Za-z]+Live Interval'],
["RASetup", sub { return AddColumns(@_,-1,-2); }],
["RA" , '([0-9.]+) \([^)]+\)[ 0-9A-Za-z]+Register Allocator'],
["RATotal", sub { return AddColumns(@_,-1,-2); }],
["Total" , 'real ([0-9.]+)'],
[],
# Sizes
["#MCInsts", '([0-9]+).*Number of machine instrs printed'],
["#IntOrig", '([0-9]+).*Number of original intervals'],
["#IntCoal", '([0-9]+).*Number of intervals after coalescing'],
["Eff ", '(\d+\.\d+).*Ratio of intervals processed over total intervals'],
[],
# Number of transformations
["#store" , '([0-9]+).*Number of stores added'],
["#load" , '([0-9]+).*Number of loads added'],
["#ld/st" , sub { return AddColumns(@_,-1,-2); }],
["#fold" , '([0-9]+).*Number of loads/stores folded into instructions'],
["#memref", sub { return AddColumns(@_,-1,-3,-4); }],
["#spill" , '([0-9]+).*Number of register spills'],
["#i-mov" , '([0-9]+).*Number of identity moves eliminated'],
["#tot-el", sub { return AddColumns(@_,-1,-2); }],
["#pre", '([0-9]+).*Number of pre-indexed nodes created'],
["#post", '([0-9]+).*Number of post-indexed nodes created'],
["#indexed", sub { return AddColumns(@_,-1,-2); }],
[]
);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lyupaanastasia/llvm-test-suite.git
git@gitee.com:lyupaanastasia/llvm-test-suite.git
lyupaanastasia
llvm-test-suite
llvm-test-suite
main

搜索帮助