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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
# NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
# RUN: llc -mtriple=riscv32 -run-pass=legalizer %s -o - \
# RUN: | FileCheck %s
---
name: implicit_def_i7
body: |
bb.0.entry:
; CHECK-LABEL: name: implicit_def_i7
; CHECK: [[DEF:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: $x10 = COPY [[DEF]](s32)
; CHECK-NEXT: PseudoRET implicit $x10
%0:_(s7) = G_IMPLICIT_DEF
%1:_(s32) = G_ANYEXT %0(s7)
$x10 = COPY %1(s32)
PseudoRET implicit $x10
...
---
name: implicit_def_i8
body: |
bb.0.entry:
; CHECK-LABEL: name: implicit_def_i8
; CHECK: [[DEF:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: $x10 = COPY [[DEF]](s32)
; CHECK-NEXT: PseudoRET implicit $x10
%0:_(s8) = G_IMPLICIT_DEF
%1:_(s32) = G_ANYEXT %0(s8)
$x10 = COPY %1(s32)
PseudoRET implicit $x10
...
---
name: implicit_def_i16
body: |
bb.0.entry:
; CHECK-LABEL: name: implicit_def_i16
; CHECK: [[DEF:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: $x10 = COPY [[DEF]](s32)
; CHECK-NEXT: PseudoRET implicit $x10
%0:_(s16) = G_IMPLICIT_DEF
%1:_(s32) = G_ANYEXT %0(s16)
$x10 = COPY %1(s32)
PseudoRET implicit $x10
...
---
name: implicit_def_i32
body: |
bb.0.entry:
; CHECK-LABEL: name: implicit_def_i32
; CHECK: [[DEF:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: $x10 = COPY [[DEF]](s32)
; CHECK-NEXT: PseudoRET implicit $x10
%0:_(s32) = G_IMPLICIT_DEF
$x10 = COPY %0(s32)
PseudoRET implicit $x10
...
---
name: implicit_def_i48
body: |
bb.0.entry:
; CHECK-LABEL: name: implicit_def_i48
; CHECK: [[DEF:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: [[DEF1:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: $x10 = COPY [[DEF]](s32)
; CHECK-NEXT: $x11 = COPY [[DEF1]](s32)
; CHECK-NEXT: PseudoRET implicit $x10, implicit $x11
%0:_(s48) = G_IMPLICIT_DEF
%1:_(s64) = G_ANYEXT %0(s48)
%2:_(s32), %3:_(s32) = G_UNMERGE_VALUES %1(s64)
$x10 = COPY %2(s32)
$x11 = COPY %3(s32)
PseudoRET implicit $x10, implicit $x11
...
---
name: implicit_def_i64
body: |
bb.0.entry:
; CHECK-LABEL: name: implicit_def_i64
; CHECK: [[DEF:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: [[DEF1:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: $x10 = COPY [[DEF]](s32)
; CHECK-NEXT: $x11 = COPY [[DEF1]](s32)
; CHECK-NEXT: PseudoRET implicit $x10, implicit $x11
%0:_(s64) = G_IMPLICIT_DEF
%1:_(s32), %2:_(s32) = G_UNMERGE_VALUES %0(s64)
$x10 = COPY %1(s32)
$x11 = COPY %2(s32)
PseudoRET implicit $x10, implicit $x11
...
---
name: implicit_def_i96
body: |
bb.0.entry:
; CHECK-LABEL: name: implicit_def_i96
; CHECK: [[DEF:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: [[DEF1:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: [[DEF2:%[0-9]+]]:_(s32) = G_IMPLICIT_DEF
; CHECK-NEXT: $x10 = COPY [[DEF]](s32)
; CHECK-NEXT: $x11 = COPY [[DEF1]](s32)
; CHECK-NEXT: $x12 = COPY [[DEF2]](s32)
; CHECK-NEXT: PseudoRET implicit $x10, implicit $x11, implicit $x12
%0:_(s96) = G_IMPLICIT_DEF
%1:_(s32), %2:_(s32), %3:_(s32) = G_UNMERGE_VALUES %0(s96)
$x10 = COPY %1(s32)
$x11 = COPY %2(s32)
$x12 = COPY %3(s32)
PseudoRET implicit $x10, implicit $x11, implicit $x12
...
|