[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / fold-operands-order.mir
bloba4ded7f946bc21700686d48fec67f562a99b5a88
1 # RUN: llc -mtriple=amdgcn--amdhsa -mcpu=hawaii -verify-machineinstrs -run-pass si-fold-operands -o - %s | FileCheck -check-prefix=GCN %s
2 ...
3 ---
5 # Blocks should be processed in program order to make sure folds
6 # aren't made in users before the def is seen.
8 # GCN-LABEL: name: mov_in_use_list_2x{{$}}
9 # GCN: %2:vgpr_32 = V_MOV_B32_e32 0, implicit $exec
10 # GCN-NEXT: %3:vgpr_32 = COPY undef %0
12 # GCN: %1:vgpr_32 = V_MOV_B32_e32 0, implicit $exec
15 name: mov_in_use_list_2x
16 tracksRegLiveness: true
17 registers:
18   - { id: 0, class: vgpr_32, preferred-register: '' }
19   - { id: 1, class: vgpr_32, preferred-register: '' }
20   - { id: 2, class: vgpr_32, preferred-register: '' }
21   - { id: 3, class: vgpr_32, preferred-register: '' }
22 liveins:
23 body:             |
24   bb.0:
25     successors: %bb.2
27     S_BRANCH %bb.2
29   bb.1:
30     successors: %bb.2
32     %2 = COPY %1
33     %3 = V_XOR_B32_e64 killed %2, undef %0, implicit $exec
35   bb.2:
36     successors: %bb.1
38     %1 = V_MOV_B32_e32 0, implicit $exec
39     S_BRANCH %bb.1
41 ...