1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[Hexagon] Handle *Low8 register classes in early if-conversion

llvm-svn: 325606
This commit is contained in:
Krzysztof Parzyszek 2018-02-20 18:19:17 +00:00
parent 495eaaff49
commit 69728227c1
2 changed files with 29 additions and 0 deletions

View File

@ -765,9 +765,11 @@ unsigned HexagonEarlyIfConversion::buildMux(MachineBasicBlock *B,
unsigned Opc = 0;
switch (DRC->getID()) {
case Hexagon::IntRegsRegClassID:
case Hexagon::IntRegsLow8RegClassID:
Opc = Hexagon::C2_mux;
break;
case Hexagon::DoubleRegsRegClassID:
case Hexagon::GeneralDoubleLow8RegsRegClassID:
Opc = Hexagon::PS_pselect;
break;
case Hexagon::HvxVRRegClassID:

View File

@ -0,0 +1,27 @@
# RUN: llc -march=hexagon -run-pass hexagon-early-if %s -o - | FileCheck %s
# Make sure that early if-conversion handles the *low8 register classes:
# CHECK: intregslow8 = C2_mux
# CHECK: generaldoublelow8regs = PS_pselect
---
name: fred
tracksRegLiveness: true
body: |
bb.0:
liveins: $r0, $r1
%0:intregslow8 = COPY $r0
%1:intregslow8 = COPY $r1
%2:generaldoublelow8regs = A2_tfrpi 1
%3:predregs = C2_cmpeq %0, %1
J2_jumpf %3, %bb.2, implicit-def $pc
bb.1:
%4:intregslow8 = A2_addi %0, 1
%5:generaldoublelow8regs = A2_tfrpi 0
bb.2:
%6:intregslow8 = PHI %0, %bb.0, %4, %bb.1
%7:generaldoublelow8regs = PHI %2, %bb.0, %5, %bb.1
$r0 = COPY %6
$d1 = COPY %7
J2_jumpr $r31, implicit $r0, implicit $d1, implicit-def $pc
...