brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.8 KiB · b1cab3a Raw
76 lines · plain
1# RUN: llc -mtriple arm-- -run-pass=legalizer %s -o - | FileCheck %s2--- |3  define void @test_constants_s64() { ret void }4 5  define void @test_phi_s64() #0 { ret void }6 7  attributes #0 = { "target-features"="+vfp2" }8...9---10name:            test_constants_s6411# CHECK-LABEL: name: test_constants_s6412legalized:       false13# CHECK: legalized: true14regBankSelected: false15selected:        false16tracksRegLiveness: true17registers:18  - { id: 0, class: _ }19  - { id: 1, class: _ }20  - { id: 2, class: _ }21  - { id: 3, class: _ }22body:             |23  bb.0:24    liveins: $r025 26    %0(p0) = COPY $r027 28    %1(s64) = G_CONSTANT i64 17179869200 ; = 4 * 2 ^ 32 + 1629    %2(s32), %3(s32) = G_UNMERGE_VALUES %1(s64)30    G_STORE %2(s32), %0(p0) :: (store (s32))31    G_STORE %3(s32), %0(p0) :: (store (s32))32    ; CHECK-DAG: {{%[0-9]+}}:_(s32) = G_CONSTANT i32 433    ; CHECK-DAG: {{%[0-9]+}}:_(s32) = G_CONSTANT i32 1634    ; CHECK-NOT: G_CONSTANT i6435 36    BX_RET 14, $noreg37...38---39name:            test_phi_s6440# CHECK-LABEL: name: test_phi_s6441legalized:       false42# CHECK: legalized: true43regBankSelected: false44selected:        false45tracksRegLiveness: true46registers:47  - { id: 0, class: _ }48  - { id: 1, class: _ }49  - { id: 2, class: _ }50  - { id: 3, class: _ }51  - { id: 4, class: _ }52body:             |53  bb.0:54    liveins: $r0, $d0, $d155 56    %0(s32) = COPY $r057    %1(s1) = G_TRUNC %0(s32)58 59    %2(s64) = COPY $d060    %3(s64) = COPY $d161 62    G_BRCOND %1(s1), %bb.163    G_BR %bb.264 65  bb.1:66    G_BR %bb.267 68  bb.2:69    %4(s64) = G_PHI %2(s64), %bb.0, %3(s64), %bb.170    ; G_PHI with s64 is legal when we have floating point support, so we should71    ; find it unchanged in the output72    ; CHECK: G_PHI {{%[0-9]+}}(s64), %bb.0, {{%[0-9]+}}(s64), %bb.173    $d0 = COPY %4(s64)74    BX_RET 14, $noreg, implicit $d075...76