summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/h-register-store.ll
blob: 0adb2b148c398c59483e93d0b9673310d5330e51 (plain)
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
; 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-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 -march=x86 | FileCheck %s -check-prefix=X32
; X32-NOT:      mov
; X32:      movb %ah, (%e
; X32-NOT:      mov
; X32:      movb %ah, (%e
; X32-NOT:      mov
; X32:      movb %ah, (%e
; X32-NOT:      mov

; Use h-register extract and store.

define void @foo16(i16 inreg %p, i8* inreg %z) nounwind {
  %q = lshr i16 %p, 8
  %t = trunc i16 %q to i8
  store i8 %t, i8* %z
  ret void
}
define void @foo32(i32 inreg %p, i8* inreg %z) nounwind {
  %q = lshr i32 %p, 8
  %t = trunc i32 %q to i8
  store i8 %t, i8* %z
  ret void
}
define void @foo64(i64 inreg %p, i8* inreg %z) nounwind {
  %q = lshr i64 %p, 8
  %t = trunc i64 %q to i8
  store i8 %t, i8* %z
  ret void
}