aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/GlobalISel/legalize-xor.mir
blob: 460b3d16f1c0c7cb8f0aa2616627fcb7b86ac9da (plain) (blame)
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
# RUN: llc -O0 -run-pass=legalizer -global-isel %s -o - | FileCheck %s

--- |
  target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
  target triple = "aarch64--"
  define void @test_scalar_xor_small() {
  entry:
    ret void
  }
...

---
name:            test_scalar_xor_small
registers:
  - { id: 0, class: _ }
  - { id: 1, class: _ }
  - { id: 2, class: _ }
  - { id: 3, class: _ }
  - { id: 4, class: _ }
  - { id: 5, class: _ }
body: |
  bb.0.entry:
    liveins: %x0, %x1, %x2, %x3
    ; CHECK-LABEL: name: test_scalar_xor_small
    ; CHECK: [[OP0:%.*]](s32) = G_ANYEXT %2(s8)
    ; CHECK: [[OP1:%.*]](s32) = G_ANYEXT %3(s8)
    ; CHECK: [[RES32:%.*]](s32) = G_XOR [[OP0]], [[OP1]]
    ; CHECK: [[RES:%.*]](s8) = G_TRUNC [[RES32]](s32)

    %0(s64) = COPY %x0
    %1(s64) = COPY %x1
    %2(s8) = G_TRUNC %0
    %3(s8) = G_TRUNC %1
    %4(s8) = G_XOR %2, %3
    %5(s64) = G_ANYEXT %2
    %x0 = COPY %5
...