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/fast-isel-int-float-conversion.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/fast-isel-int-float-conversion.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-isel-int-float-conversion.ll | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/llvm/test/CodeGen/X86/fast-isel-int-float-conversion.ll b/llvm/test/CodeGen/X86/fast-isel-int-float-conversion.ll index 3e69710868b..4465d3463cc 100644 --- a/llvm/test/CodeGen/X86/fast-isel-int-float-conversion.ll +++ b/llvm/test/CodeGen/X86/fast-isel-int-float-conversion.ll @@ -7,17 +7,17 @@ define double @int_to_double_rr(i32 %a) { ; SSE2-LABEL: int_to_double_rr: -; SSE2: # BB#0: # %entry +; SSE2: # %bb.0: # %entry ; SSE2-NEXT: cvtsi2sdl %edi, %xmm0 ; SSE2-NEXT: retq ; ; AVX-LABEL: int_to_double_rr: -; AVX: # BB#0: # %entry +; AVX: # %bb.0: # %entry ; AVX-NEXT: vcvtsi2sdl %edi, %xmm0, %xmm0 ; AVX-NEXT: retq ; ; SSE2_X86-LABEL: int_to_double_rr: -; SSE2_X86: # BB#0: # %entry +; SSE2_X86: # %bb.0: # %entry ; SSE2_X86-NEXT: pushl %ebp ; SSE2_X86-NEXT: .cfi_def_cfa_offset 8 ; SSE2_X86-NEXT: .cfi_offset %ebp, -8 @@ -34,7 +34,7 @@ define double @int_to_double_rr(i32 %a) { ; SSE2_X86-NEXT: retl ; ; AVX_X86-LABEL: int_to_double_rr: -; AVX_X86: # BB#0: # %entry +; AVX_X86: # %bb.0: # %entry ; AVX_X86-NEXT: pushl %ebp ; AVX_X86-NEXT: .cfi_def_cfa_offset 8 ; AVX_X86-NEXT: .cfi_offset %ebp, -8 @@ -55,18 +55,18 @@ entry: define double @int_to_double_rm(i32* %a) { ; SSE2-LABEL: int_to_double_rm: -; SSE2: # BB#0: # %entry +; SSE2: # %bb.0: # %entry ; SSE2-NEXT: movl (%rdi), %eax ; SSE2-NEXT: cvtsi2sdl %eax, %xmm0 ; SSE2-NEXT: retq ; ; AVX-LABEL: int_to_double_rm: -; AVX: # BB#0: # %entry +; AVX: # %bb.0: # %entry ; AVX-NEXT: vcvtsi2sdl (%rdi), %xmm0, %xmm0 ; AVX-NEXT: retq ; ; SSE2_X86-LABEL: int_to_double_rm: -; SSE2_X86: # BB#0: # %entry +; SSE2_X86: # %bb.0: # %entry ; SSE2_X86-NEXT: pushl %ebp ; SSE2_X86-NEXT: .cfi_def_cfa_offset 8 ; SSE2_X86-NEXT: .cfi_offset %ebp, -8 @@ -83,7 +83,7 @@ define double @int_to_double_rm(i32* %a) { ; SSE2_X86-NEXT: retl ; ; AVX_X86-LABEL: int_to_double_rm: -; AVX_X86: # BB#0: # %entry +; AVX_X86: # %bb.0: # %entry ; AVX_X86-NEXT: pushl %ebp ; AVX_X86-NEXT: .cfi_def_cfa_offset 8 ; AVX_X86-NEXT: .cfi_offset %ebp, -8 @@ -106,17 +106,17 @@ entry: define double @int_to_double_rm_optsize(i32* %a) optsize { ; SSE2-LABEL: int_to_double_rm_optsize: -; SSE2: # BB#0: # %entry +; SSE2: # %bb.0: # %entry ; SSE2-NEXT: cvtsi2sdl (%rdi), %xmm0 ; SSE2-NEXT: retq ; ; AVX-LABEL: int_to_double_rm_optsize: -; AVX: # BB#0: # %entry +; AVX: # %bb.0: # %entry ; AVX-NEXT: vcvtsi2sdl (%rdi), %xmm0, %xmm0 ; AVX-NEXT: retq ; ; SSE2_X86-LABEL: int_to_double_rm_optsize: -; SSE2_X86: # BB#0: # %entry +; SSE2_X86: # %bb.0: # %entry ; SSE2_X86-NEXT: pushl %ebp ; SSE2_X86-NEXT: .cfi_def_cfa_offset 8 ; SSE2_X86-NEXT: .cfi_offset %ebp, -8 @@ -133,7 +133,7 @@ define double @int_to_double_rm_optsize(i32* %a) optsize { ; SSE2_X86-NEXT: retl ; ; AVX_X86-LABEL: int_to_double_rm_optsize: -; AVX_X86: # BB#0: # %entry +; AVX_X86: # %bb.0: # %entry ; AVX_X86-NEXT: pushl %ebp ; AVX_X86-NEXT: .cfi_def_cfa_offset 8 ; AVX_X86-NEXT: .cfi_offset %ebp, -8 @@ -156,17 +156,17 @@ entry: define float @int_to_float_rr(i32 %a) { ; SSE2-LABEL: int_to_float_rr: -; SSE2: # BB#0: # %entry +; SSE2: # %bb.0: # %entry ; SSE2-NEXT: cvtsi2ssl %edi, %xmm0 ; SSE2-NEXT: retq ; ; AVX-LABEL: int_to_float_rr: -; AVX: # BB#0: # %entry +; AVX: # %bb.0: # %entry ; AVX-NEXT: vcvtsi2ssl %edi, %xmm0, %xmm0 ; AVX-NEXT: retq ; ; SSE2_X86-LABEL: int_to_float_rr: -; SSE2_X86: # BB#0: # %entry +; SSE2_X86: # %bb.0: # %entry ; SSE2_X86-NEXT: pushl %eax ; SSE2_X86-NEXT: .cfi_def_cfa_offset 8 ; SSE2_X86-NEXT: movl {{[0-9]+}}(%esp), %eax @@ -177,7 +177,7 @@ define float @int_to_float_rr(i32 %a) { ; SSE2_X86-NEXT: retl ; ; AVX_X86-LABEL: int_to_float_rr: -; AVX_X86: # BB#0: # %entry +; AVX_X86: # %bb.0: # %entry ; AVX_X86-NEXT: pushl %eax ; AVX_X86-NEXT: .cfi_def_cfa_offset 8 ; AVX_X86-NEXT: vcvtsi2ssl {{[0-9]+}}(%esp), %xmm0, %xmm0 @@ -192,18 +192,18 @@ entry: define float @int_to_float_rm(i32* %a) { ; SSE2-LABEL: int_to_float_rm: -; SSE2: # BB#0: # %entry +; SSE2: # %bb.0: # %entry ; SSE2-NEXT: movl (%rdi), %eax ; SSE2-NEXT: cvtsi2ssl %eax, %xmm0 ; SSE2-NEXT: retq ; ; AVX-LABEL: int_to_float_rm: -; AVX: # BB#0: # %entry +; AVX: # %bb.0: # %entry ; AVX-NEXT: vcvtsi2ssl (%rdi), %xmm0, %xmm0 ; AVX-NEXT: retq ; ; SSE2_X86-LABEL: int_to_float_rm: -; SSE2_X86: # BB#0: # %entry +; SSE2_X86: # %bb.0: # %entry ; SSE2_X86-NEXT: pushl %eax ; SSE2_X86-NEXT: .cfi_def_cfa_offset 8 ; SSE2_X86-NEXT: movl {{[0-9]+}}(%esp), %eax @@ -214,7 +214,7 @@ define float @int_to_float_rm(i32* %a) { ; SSE2_X86-NEXT: retl ; ; AVX_X86-LABEL: int_to_float_rm: -; AVX_X86: # BB#0: # %entry +; AVX_X86: # %bb.0: # %entry ; AVX_X86-NEXT: pushl %eax ; AVX_X86-NEXT: .cfi_def_cfa_offset 8 ; AVX_X86-NEXT: movl {{[0-9]+}}(%esp), %eax @@ -231,17 +231,17 @@ entry: define float @int_to_float_rm_optsize(i32* %a) optsize { ; SSE2-LABEL: int_to_float_rm_optsize: -; SSE2: # BB#0: # %entry +; SSE2: # %bb.0: # %entry ; SSE2-NEXT: cvtsi2ssl (%rdi), %xmm0 ; SSE2-NEXT: retq ; ; AVX-LABEL: int_to_float_rm_optsize: -; AVX: # BB#0: # %entry +; AVX: # %bb.0: # %entry ; AVX-NEXT: vcvtsi2ssl (%rdi), %xmm0, %xmm0 ; AVX-NEXT: retq ; ; SSE2_X86-LABEL: int_to_float_rm_optsize: -; SSE2_X86: # BB#0: # %entry +; SSE2_X86: # %bb.0: # %entry ; SSE2_X86-NEXT: pushl %eax ; SSE2_X86-NEXT: .cfi_def_cfa_offset 8 ; SSE2_X86-NEXT: movl {{[0-9]+}}(%esp), %eax @@ -252,7 +252,7 @@ define float @int_to_float_rm_optsize(i32* %a) optsize { ; SSE2_X86-NEXT: retl ; ; AVX_X86-LABEL: int_to_float_rm_optsize: -; AVX_X86: # BB#0: # %entry +; AVX_X86: # %bb.0: # %entry ; AVX_X86-NEXT: pushl %eax ; AVX_X86-NEXT: .cfi_def_cfa_offset 8 ; AVX_X86-NEXT: movl {{[0-9]+}}(%esp), %eax |