2017-02-23 02:47:41 +08:00
|
|
|
# RUN: llc -O0 -run-pass=legalizer -global-isel %s -o - | FileCheck %s
|
2016-08-31 04:51:25 +08:00
|
|
|
|
|
|
|
--- |
|
|
|
|
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
|
2016-10-14 18:19:40 +08:00
|
|
|
target triple = "aarch64--"
|
2017-01-20 08:30:06 +08:00
|
|
|
define void @test_combines_2() { ret void }
|
|
|
|
define void @test_combines_3() { ret void }
|
|
|
|
define void @test_combines_4() { ret void }
|
|
|
|
define void @test_combines_5() { ret void }
|
2017-03-01 08:43:39 +08:00
|
|
|
define void @test_combines_6() { ret void }
|
2016-08-31 04:51:25 +08:00
|
|
|
...
|
|
|
|
|
2017-01-20 08:30:06 +08:00
|
|
|
---
|
|
|
|
name: test_combines_2
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
liveins: %w0
|
|
|
|
|
|
|
|
%0:_(s32) = COPY %w0
|
2016-08-31 04:51:25 +08:00
|
|
|
|
|
|
|
; Similarly, here the types don't match.
|
2017-01-20 08:30:06 +08:00
|
|
|
; CHECK-LABEL: name: test_combines_2
|
2017-06-24 00:15:55 +08:00
|
|
|
; CHECK: %2(s64) = G_MERGE_VALUES %0(s32), %1(s32)
|
2017-01-20 08:30:06 +08:00
|
|
|
; CHECK: %3(s1) = G_EXTRACT %2(s64), 0
|
|
|
|
; CHECK: %4(s64) = G_EXTRACT %2(s64), 0
|
|
|
|
%1:_(s32) = G_ADD %0, %0
|
2017-06-24 00:15:55 +08:00
|
|
|
%2:_(s64) = G_MERGE_VALUES %0, %1
|
2017-01-20 08:30:06 +08:00
|
|
|
%3:_(s1) = G_EXTRACT %2, 0
|
|
|
|
%4:_(s64) = G_EXTRACT %2, 0
|
|
|
|
...
|
|
|
|
|
|
|
|
---
|
|
|
|
name: test_combines_3
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
liveins: %w0
|
|
|
|
|
|
|
|
%0:_(s32) = COPY %w0
|
2016-08-31 04:51:25 +08:00
|
|
|
|
2017-01-20 08:30:06 +08:00
|
|
|
; CHECK-LABEL: name: test_combines_3
|
|
|
|
; CHECK: %1(s32) = G_ADD %0, %0
|
|
|
|
; CHECK-NOT: G_SEQUENCE
|
2016-08-31 04:51:25 +08:00
|
|
|
; CHECK-NOT: G_EXTRACT
|
2017-01-20 08:30:06 +08:00
|
|
|
; CHECK: %5(s32) = G_ADD %0, %1
|
|
|
|
%1:_(s32) = G_ADD %0, %0
|
2017-06-24 00:15:55 +08:00
|
|
|
%2:_(s64) = G_MERGE_VALUES %0, %1
|
|
|
|
%3:_(s32), %4:_(s32) = G_UNMERGE_VALUES %2
|
2017-01-20 08:30:06 +08:00
|
|
|
%5:_(s32) = G_ADD %3, %4
|
|
|
|
...
|
|
|
|
|
|
|
|
---
|
|
|
|
name: test_combines_4
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
liveins: %x0
|
|
|
|
|
|
|
|
%0:_(s64) = COPY %x0
|
|
|
|
|
|
|
|
; CHECK-LABEL: name: test_combines_4
|
2017-06-27 04:34:13 +08:00
|
|
|
; CHECK: %2(s64) = COPY %0(s64)
|
|
|
|
; CHECK: %3(s64) = G_ADD %2, %2
|
2017-06-24 00:15:55 +08:00
|
|
|
%1:_(s128) = G_MERGE_VALUES %0, %0
|
2017-06-27 04:34:13 +08:00
|
|
|
%2:_(s64) = G_EXTRACT %1, 0
|
|
|
|
%3:_(s64) = G_ADD %2, %2
|
2017-01-20 08:30:06 +08:00
|
|
|
...
|
|
|
|
|
|
|
|
---
|
|
|
|
name: test_combines_5
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
liveins: %w0
|
2016-08-31 04:51:25 +08:00
|
|
|
|
2017-01-20 08:30:06 +08:00
|
|
|
%0:_(s32) = COPY %w0
|
2016-08-31 04:51:25 +08:00
|
|
|
|
2017-01-20 08:30:06 +08:00
|
|
|
; CHECK-LABEL: name: test_combines_5
|
2017-06-24 00:15:55 +08:00
|
|
|
; CHECK-NOT: G_MERGE_VALUES
|
2016-08-31 04:51:25 +08:00
|
|
|
; CHECK-NOT: G_EXTRACT
|
2017-01-20 08:30:06 +08:00
|
|
|
; CHECK: %5(s32) = G_ADD %0, %1
|
|
|
|
%1:_(s32) = G_ADD %0, %0
|
2017-06-24 00:15:55 +08:00
|
|
|
%2:_(s64) = G_MERGE_VALUES %0, %1
|
|
|
|
%3:_(s32), %4:_(s32) = G_UNMERGE_VALUES %2
|
2017-01-20 08:30:06 +08:00
|
|
|
%5:_(s32) = G_ADD %3, %4
|
2016-08-31 04:51:25 +08:00
|
|
|
...
|
2017-03-01 08:43:39 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
name: test_combines_6
|
|
|
|
body: |
|
|
|
|
bb.0:
|
|
|
|
liveins: %w0
|
|
|
|
|
|
|
|
; CHECK-LABEL: name: test_combines_6
|
|
|
|
; CHECK: %0(s32) = COPY %w0
|
|
|
|
%0:_(s32) = COPY %w0
|
|
|
|
|
|
|
|
; Check that we replace all the uses of a G_EXTRACT.
|
2017-06-24 00:15:55 +08:00
|
|
|
; CHECK-NOT: G_MERGE_VALUES
|
2017-03-01 08:43:39 +08:00
|
|
|
; CHECK-NOT: G_EXTRACT
|
|
|
|
; CHECK: %3(s32) = G_MUL %0, %0
|
|
|
|
; CHECK: %4(s32) = G_ADD %0, %3
|
2017-06-24 00:15:55 +08:00
|
|
|
%1:_(s32) = G_MERGE_VALUES %0
|
|
|
|
%2:_(s32) = G_UNMERGE_VALUES %1
|
2017-03-01 08:43:39 +08:00
|
|
|
%3:_(s32) = G_MUL %2, %2
|
|
|
|
%4:_(s32) = G_ADD %2, %3
|
|
|
|
...
|