From fa785cb22d50c657eb08c762d627cd6aa96982f3 Mon Sep 17 00:00:00 2001 From: Jan Wen Voung Date: Fri, 8 Mar 2013 22:56:31 +0000 Subject: Disable statistics on Release builds and move tests that depend on -stats. Summary: Statistics are still available in Release+Asserts (any +Asserts builds), and stats can also be turned on with LLVM_ENABLE_STATS. Move some of the FastISel stats that were moved under DEBUG() back out of DEBUG(), since stats are disabled across the board now. Many tests depend on grepping "-stats" output. Move those into a orig_dir/Stats/. so that they can be marked as unsupported when building without statistics. Differential Revision: http://llvm-reviews.chandlerc.com/D486 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176733 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll (limited to 'test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll') diff --git a/test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll b/test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll new file mode 100644 index 0000000000..1c75f93915 --- /dev/null +++ b/test/CodeGen/X86/Stats/2006-05-02-InstrSched1.ll @@ -0,0 +1,23 @@ +; RUN: llc < %s -march=x86 -relocation-model=static -stats 2>&1 | \ +; RUN: grep asm-printer | grep 14 +; +@size20 = external global i32 ; [#uses=1] +@in5 = external global i8* ; [#uses=1] + +define i32 @compare(i8* %a, i8* %b) nounwind { + %tmp = bitcast i8* %a to i32* ; [#uses=1] + %tmp1 = bitcast i8* %b to i32* ; [#uses=1] + %tmp.upgrd.1 = load i32* @size20 ; [#uses=1] + %tmp.upgrd.2 = load i8** @in5 ; [#uses=2] + %tmp3 = load i32* %tmp1 ; [#uses=1] + %gep.upgrd.3 = zext i32 %tmp3 to i64 ; [#uses=1] + %tmp4 = getelementptr i8* %tmp.upgrd.2, i64 %gep.upgrd.3 ; [#uses=2] + %tmp7 = load i32* %tmp ; [#uses=1] + %gep.upgrd.4 = zext i32 %tmp7 to i64 ; [#uses=1] + %tmp8 = getelementptr i8* %tmp.upgrd.2, i64 %gep.upgrd.4 ; [#uses=2] + %tmp.upgrd.5 = tail call i32 @memcmp( i8* %tmp8, i8* %tmp4, i32 %tmp.upgrd.1 ) ; [#uses=1] + ret i32 %tmp.upgrd.5 +} + +declare i32 @memcmp(i8*, i8*, i32) + -- cgit v1.2.3-18-g5258