[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / triv-disjoint-mem-access-neg-offset.mir
blob80337069a4622d55c7119f9473c32c0536514c8c
1 # RUN: llc -march=amdgcn -mcpu=gfx900 -verify-machineinstrs -enable-misched --debug-only=machine-scheduler -run-pass=machine-scheduler -o /dev/null %s 2>&1 | FileCheck %s
2 # REQUIRES: asserts
4 # Make sure handling of unsigned immediate values interpreted as negative values
5 # still works for SIInstrInfo::areMemAccessesTriviallyDisjoint.
7 # LABEL: {{^}}no_reorder_flat_load_local_store_local_load:
8 # CHECK:      SU(5):   %5:vgpr_32 = V_MOV_B32_e32 0, implicit $exec
9 # CHECK:      SU(6):   DS_WRITE_B128_gfx9 %5:vgpr_32, %4:vreg_128, 512, 0, implicit $exec
10 # CHECK:      SU(7):   %6:vreg_64 = DS_READ2_B32_gfx9 %5:vgpr_32, -127, -126, 0, implicit $exec
11 # CHECK:      Predecessors:
12 # CHECK-NEXT: SU(6): Ord
13 # CHECK-NEXT: SU(5): Data
14 ---
15 name:            no_reorder_flat_load_local_store_local_load
16 tracksRegLiveness: true
17 body:             |
18   bb.0:
19     liveins: $sgpr0_sgpr1
21     %1:sgpr_64(p4) = COPY $sgpr0_sgpr1
22     %4:sreg_32_xm0_xexec = S_LOAD_DWORD_IMM %1(p4), 36, 0
23     %5:sreg_64_xexec = S_LOAD_DWORDX2_IMM %1(p4), 44, 0
24     %7:vreg_64 = COPY %5
25     %6:vreg_128 = FLAT_LOAD_DWORDX4 killed %7, 0, 0, implicit $exec, implicit $flat_scr
26     %8:vgpr_32 = V_MOV_B32_e32 0, implicit $exec
27     DS_WRITE_B128_gfx9 %8, killed %6, 512, 0, implicit $exec
28     %9:vreg_64 = DS_READ2_B32_gfx9 %8, -127, -126, 0, implicit $exec
29     %10:sreg_32 = COPY %9.sub1
30     %11:sreg_32 = COPY %9.sub0
31     %12:vgpr_32 = COPY %4
32     %13:vgpr_32 = COPY %11
33     %14:vgpr_32 = COPY %10
34     DS_WRITE2_B32_gfx9 killed %12, killed %13, killed %14, 0, 1, 0, implicit $exec
35     S_ENDPGM 0
37 ...