1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s -check-prefix=X64
; X64: mov
; X64-NEXT: movb %ah, (%rsi)
; X64: mov
; X64-NEXT: movb %ah, (%rsi)
; X64: mov
; X64-NEXT: movb %ah, (%rsi)
; X64-NOT: mov
; RUN: llc < %s -mtriple=x86_64-linux-gnux32 | FileCheck %s -check-prefix=X32
; X32: mov
; X32-NEXT: movb %ah, (%esi)
; X32: mov
; X32-NEXT: movb %ah, (%esi)
; X32: mov
; X32-NEXT: movb %ah, (%esi)
; X32-NOT: mov
; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s -check-prefix=W64
; W64-NOT: mov
; W64: movb %ch, (%rdx)
; W64-NOT: mov
; W64: movb %ch, (%rdx)
; W64-NOT: mov
; W64: movb %ch, (%rdx)
; W64-NOT: mov
; RUN: llc < %s -mtriple=i686-- | FileCheck %s -check-prefix=X86
; X86-NOT: mov
; X86: movb %ah, (%e
; X86-NOT: mov
; X86: movb %ah, (%e
; X86-NOT: mov
; X86: movb %ah, (%e
; X86-NOT: mov
; Use h-register extract and store.
define void @foo16(i16 inreg %p, ptr inreg %z) nounwind {
%q = lshr i16 %p, 8
%t = trunc i16 %q to i8
store i8 %t, ptr %z
ret void
}
define void @foo32(i32 inreg %p, ptr inreg %z) nounwind {
%q = lshr i32 %p, 8
%t = trunc i32 %q to i8
store i8 %t, ptr %z
ret void
}
define void @foo64(i64 inreg %p, ptr inreg %z) nounwind {
%q = lshr i64 %p, 8
%t = trunc i64 %q to i8
store i8 %t, ptr %z
ret void
}
|