[OpenACC] enable 'copyin' clause sema for 'data'/'enter data'
[llvm-project.git] / llvm / test / CodeGen / Mips / GlobalISel / regbankselect / fpext_and_fptrunc.mir
blob52c751e8c477d93d8b80cacf586e784fe5c1858a
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -O0 -mtriple=mipsel-linux-gnu -run-pass=regbankselect -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=FP32
3 # RUN: llc -O0 -mtriple=mipsel-linux-gnu -mattr=+fp64,+mips32r2 -run-pass=regbankselect -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=FP64
4 --- |
6   define void @fpext() {entry: ret void}
7   define void @fptrunc() {entry: ret void}
9 ...
10 ---
11 name:            fpext
12 alignment:       4
13 legalized:       true
14 tracksRegLiveness: true
15 body:             |
16   bb.1.entry:
17     liveins: $f12
19     ; FP32-LABEL: name: fpext
20     ; FP32: liveins: $f12
21     ; FP32: [[COPY:%[0-9]+]]:fprb(s32) = COPY $f12
22     ; FP32: [[FPEXT:%[0-9]+]]:fprb(s64) = G_FPEXT [[COPY]](s32)
23     ; FP32: $d0 = COPY [[FPEXT]](s64)
24     ; FP32: RetRA implicit $d0
25     ; FP64-LABEL: name: fpext
26     ; FP64: liveins: $f12
27     ; FP64: [[COPY:%[0-9]+]]:fprb(s32) = COPY $f12
28     ; FP64: [[FPEXT:%[0-9]+]]:fprb(s64) = G_FPEXT [[COPY]](s32)
29     ; FP64: $d0 = COPY [[FPEXT]](s64)
30     ; FP64: RetRA implicit $d0
31     %0:_(s32) = COPY $f12
32     %1:_(s64) = G_FPEXT %0(s32)
33     $d0 = COPY %1(s64)
34     RetRA implicit $d0
36 ...
37 ---
38 name:            fptrunc
39 alignment:       4
40 legalized:       true
41 tracksRegLiveness: true
42 body:             |
43   bb.1.entry:
44     liveins: $d6
46     ; FP32-LABEL: name: fptrunc
47     ; FP32: liveins: $d6
48     ; FP32: [[COPY:%[0-9]+]]:fprb(s64) = COPY $d6
49     ; FP32: [[FPTRUNC:%[0-9]+]]:fprb(s32) = G_FPTRUNC [[COPY]](s64)
50     ; FP32: $f0 = COPY [[FPTRUNC]](s32)
51     ; FP32: RetRA implicit $f0
52     ; FP64-LABEL: name: fptrunc
53     ; FP64: liveins: $d6
54     ; FP64: [[COPY:%[0-9]+]]:fprb(s64) = COPY $d6
55     ; FP64: [[FPTRUNC:%[0-9]+]]:fprb(s32) = G_FPTRUNC [[COPY]](s64)
56     ; FP64: $f0 = COPY [[FPTRUNC]](s32)
57     ; FP64: RetRA implicit $f0
58     %0:_(s64) = COPY $d6
59     %1:_(s32) = G_FPTRUNC %0(s64)
60     $f0 = COPY %1(s32)
61     RetRA implicit $f0
63 ...