mirror of
https://github.com/RPCS3/llvm.git
synced 2026-08-26 18:26:51 -04:00
ca0df55065
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319665 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
978 B
LLVM
22 lines
978 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=i386-unknown -mattr=+sse2 | FileCheck %s
|
|
|
|
define <2 x i64> @doload64(i16 signext %x) nounwind {
|
|
; CHECK-LABEL: doload64:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: movd {{.*#+}} xmm0 = mem[0],zero,zero,zero
|
|
; CHECK-NEXT: pshuflw {{.*#+}} xmm0 = xmm0[0,0,0,0,4,5,6,7]
|
|
; CHECK-NEXT: pshufd {{.*#+}} xmm0 = xmm0[0,0,1,1]
|
|
; CHECK-NEXT: retl
|
|
%tmp36 = insertelement <8 x i16> undef, i16 %x, i32 0
|
|
%tmp37 = insertelement <8 x i16> %tmp36, i16 %x, i32 1
|
|
%tmp38 = insertelement <8 x i16> %tmp37, i16 %x, i32 2
|
|
%tmp39 = insertelement <8 x i16> %tmp38, i16 %x, i32 3
|
|
%tmp40 = insertelement <8 x i16> %tmp39, i16 %x, i32 4
|
|
%tmp41 = insertelement <8 x i16> %tmp40, i16 %x, i32 5
|
|
%tmp42 = insertelement <8 x i16> %tmp41, i16 %x, i32 6
|
|
%tmp43 = insertelement <8 x i16> %tmp42, i16 %x, i32 7
|
|
%tmp46 = bitcast <8 x i16> %tmp43 to <2 x i64>
|
|
ret <2 x i64> %tmp46
|
|
}
|