diff options
author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2017-12-04 17:18:51 +0000 |
---|---|---|
committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2017-12-04 17:18:51 +0000 |
commit | 25528d6de70e98683722e28655d8568d5f09b5c7 (patch) | |
tree | 061a9b3bfa623e3f38efd5fc02c6ec234acfcfde /llvm/test/CodeGen/X86/fp-trunc.ll | |
parent | 2b4385846c86078e0012e7bfb2e8dc6476ae8dd0 (diff) | |
download | bcm5719-llvm-25528d6de70e98683722e28655d8568d5f09b5c7.tar.gz bcm5719-llvm-25528d6de70e98683722e28655d8568d5f09b5c7.zip |
[CodeGen] Unify MBB reference format in both MIR and debug output
As part of the unification of the debug format and the MIR format, print
MBB references as '%bb.5'.
The MIR printer prints the IR name of a MBB only for block definitions.
* find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)->getNumber\(\)/" << printMBBReference(*\1)/g'
* find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)\.getNumber\(\)/" << printMBBReference(\1)/g'
* find . \( -name "*.txt" -o -name "*.s" -o -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#([0-9]+)/%bb.\1/g'
* grep -nr 'BB#' and fix
Differential Revision: https://reviews.llvm.org/D40422
llvm-svn: 319665
Diffstat (limited to 'llvm/test/CodeGen/X86/fp-trunc.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fp-trunc.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/X86/fp-trunc.ll b/llvm/test/CodeGen/X86/fp-trunc.ll index 2f700cd4cc7..105db93749e 100644 --- a/llvm/test/CodeGen/X86/fp-trunc.ll +++ b/llvm/test/CodeGen/X86/fp-trunc.ll @@ -4,7 +4,7 @@ define <1 x float> @test1(<1 x double> %x) nounwind { ; CHECK-LABEL: test1: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: pushl %eax ; CHECK-NEXT: movsd {{.*#+}} xmm0 = mem[0],zero ; CHECK-NEXT: cvtsd2ss %xmm0, %xmm0 @@ -14,7 +14,7 @@ define <1 x float> @test1(<1 x double> %x) nounwind { ; CHECK-NEXT: retl ; ; AVX-LABEL: test1: -; AVX: # BB#0: +; AVX: # %bb.0: ; AVX-NEXT: pushl %eax ; AVX-NEXT: vmovsd {{.*#+}} xmm0 = mem[0],zero ; AVX-NEXT: vcvtsd2ss %xmm0, %xmm0, %xmm0 @@ -28,12 +28,12 @@ define <1 x float> @test1(<1 x double> %x) nounwind { define <2 x float> @test2(<2 x double> %x) nounwind { ; CHECK-LABEL: test2: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: cvtpd2ps %xmm0, %xmm0 ; CHECK-NEXT: retl ; ; AVX-LABEL: test2: -; AVX: # BB#0: +; AVX: # %bb.0: ; AVX-NEXT: vcvtpd2ps %xmm0, %xmm0 ; AVX-NEXT: retl %y = fptrunc <2 x double> %x to <2 x float> @@ -42,14 +42,14 @@ define <2 x float> @test2(<2 x double> %x) nounwind { define <4 x float> @test3(<4 x double> %x) nounwind { ; CHECK-LABEL: test3: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: cvtpd2ps %xmm1, %xmm1 ; CHECK-NEXT: cvtpd2ps %xmm0, %xmm0 ; CHECK-NEXT: unpcklpd {{.*#+}} xmm0 = xmm0[0],xmm1[0] ; CHECK-NEXT: retl ; ; AVX-LABEL: test3: -; AVX: # BB#0: +; AVX: # %bb.0: ; AVX-NEXT: vcvtpd2ps %ymm0, %xmm0 ; AVX-NEXT: vzeroupper ; AVX-NEXT: retl @@ -59,7 +59,7 @@ define <4 x float> @test3(<4 x double> %x) nounwind { define <8 x float> @test4(<8 x double> %x) nounwind { ; CHECK-LABEL: test4: -; CHECK: # BB#0: +; CHECK: # %bb.0: ; CHECK-NEXT: subl $12, %esp ; CHECK-NEXT: cvtpd2ps %xmm1, %xmm1 ; CHECK-NEXT: cvtpd2ps %xmm0, %xmm0 @@ -71,7 +71,7 @@ define <8 x float> @test4(<8 x double> %x) nounwind { ; CHECK-NEXT: retl ; ; AVX-LABEL: test4: -; AVX: # BB#0: +; AVX: # %bb.0: ; AVX-NEXT: vcvtpd2ps %ymm0, %xmm0 ; AVX-NEXT: vcvtpd2ps %ymm1, %xmm1 ; AVX-NEXT: vinsertf128 $1, %xmm1, %ymm0, %ymm0 |