Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 1 | //===- SPUInstrInfo.cpp - Cell SPU Instruction Information ----------------===// |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the Cell SPU implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "SPURegisterNames.h" |
| 15 | #include "SPUInstrInfo.h" |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 16 | #include "SPUInstrBuilder.h" |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 17 | #include "SPUTargetMachine.h" |
Andrew Trick | 2da8bc8 | 2010-12-24 05:03:26 +0000 | [diff] [blame] | 18 | #include "SPUHazardRecognizers.h" |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 20 | #include "llvm/Support/Debug.h" |
Torok Edwin | dac237e | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 21 | #include "llvm/Support/ErrorHandling.h" |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 22 | #include "llvm/Support/raw_ostream.h" |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCContext.h" |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 24 | |
Evan Cheng | 4db3cff | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 25 | #define GET_INSTRINFO_CTOR |
Evan Cheng | 22fee2d | 2011-06-28 20:07:07 +0000 | [diff] [blame] | 26 | #define GET_INSTRINFO_MC_DESC |
| 27 | #include "SPUGenInstrInfo.inc" |
| 28 | |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 29 | using namespace llvm; |
| 30 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 31 | namespace { |
| 32 | //! Predicate for an unconditional branch instruction |
| 33 | inline bool isUncondBranch(const MachineInstr *I) { |
| 34 | unsigned opc = I->getOpcode(); |
| 35 | |
| 36 | return (opc == SPU::BR |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 37 | || opc == SPU::BRA |
| 38 | || opc == SPU::BI); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 39 | } |
| 40 | |
Scott Michel | 52d0001 | 2009-01-03 00:27:53 +0000 | [diff] [blame] | 41 | //! Predicate for a conditional branch instruction |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 42 | inline bool isCondBranch(const MachineInstr *I) { |
| 43 | unsigned opc = I->getOpcode(); |
| 44 | |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 45 | return (opc == SPU::BRNZr32 |
| 46 | || opc == SPU::BRNZv4i32 |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 47 | || opc == SPU::BRZr32 |
| 48 | || opc == SPU::BRZv4i32 |
| 49 | || opc == SPU::BRHNZr16 |
| 50 | || opc == SPU::BRHNZv8i16 |
| 51 | || opc == SPU::BRHZr16 |
| 52 | || opc == SPU::BRHZv8i16); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 56 | SPUInstrInfo::SPUInstrInfo(SPUTargetMachine &tm) |
Evan Cheng | 4db3cff | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 57 | : SPUGenInstrInfo(SPU::ADJCALLSTACKDOWN, SPU::ADJCALLSTACKUP), |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 58 | TM(tm), |
| 59 | RI(*TM.getSubtargetImpl(), *this) |
Scott Michel | 52d0001 | 2009-01-03 00:27:53 +0000 | [diff] [blame] | 60 | { /* NOP */ } |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 61 | |
Andrew Trick | 2da8bc8 | 2010-12-24 05:03:26 +0000 | [diff] [blame] | 62 | /// CreateTargetHazardRecognizer - Return the hazard recognizer to use for |
| 63 | /// this target when scheduling the DAG. |
| 64 | ScheduleHazardRecognizer *SPUInstrInfo::CreateTargetHazardRecognizer( |
| 65 | const TargetMachine *TM, |
| 66 | const ScheduleDAG *DAG) const { |
| 67 | const TargetInstrInfo *TII = TM->getInstrInfo(); |
| 68 | assert(TII && "No InstrInfo?"); |
| 69 | return new SPUHazardRecognizer(*TII); |
| 70 | } |
| 71 | |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 72 | unsigned |
Dan Gohman | cbad42c | 2008-11-18 19:49:32 +0000 | [diff] [blame] | 73 | SPUInstrInfo::isLoadFromStackSlot(const MachineInstr *MI, |
| 74 | int &FrameIndex) const { |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 75 | switch (MI->getOpcode()) { |
| 76 | default: break; |
| 77 | case SPU::LQDv16i8: |
| 78 | case SPU::LQDv8i16: |
| 79 | case SPU::LQDv4i32: |
| 80 | case SPU::LQDv4f32: |
| 81 | case SPU::LQDv2f64: |
| 82 | case SPU::LQDr128: |
| 83 | case SPU::LQDr64: |
| 84 | case SPU::LQDr32: |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 85 | case SPU::LQDr16: { |
| 86 | const MachineOperand MOp1 = MI->getOperand(1); |
| 87 | const MachineOperand MOp2 = MI->getOperand(2); |
Scott Michel | 52d0001 | 2009-01-03 00:27:53 +0000 | [diff] [blame] | 88 | if (MOp1.isImm() && MOp2.isFI()) { |
| 89 | FrameIndex = MOp2.getIndex(); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 90 | return MI->getOperand(0).getReg(); |
| 91 | } |
| 92 | break; |
| 93 | } |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 94 | } |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | unsigned |
Dan Gohman | cbad42c | 2008-11-18 19:49:32 +0000 | [diff] [blame] | 99 | SPUInstrInfo::isStoreToStackSlot(const MachineInstr *MI, |
| 100 | int &FrameIndex) const { |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 101 | switch (MI->getOpcode()) { |
| 102 | default: break; |
| 103 | case SPU::STQDv16i8: |
| 104 | case SPU::STQDv8i16: |
| 105 | case SPU::STQDv4i32: |
| 106 | case SPU::STQDv4f32: |
| 107 | case SPU::STQDv2f64: |
| 108 | case SPU::STQDr128: |
| 109 | case SPU::STQDr64: |
| 110 | case SPU::STQDr32: |
| 111 | case SPU::STQDr16: |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 112 | case SPU::STQDr8: { |
| 113 | const MachineOperand MOp1 = MI->getOperand(1); |
| 114 | const MachineOperand MOp2 = MI->getOperand(2); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 115 | if (MOp1.isImm() && MOp2.isFI()) { |
| 116 | FrameIndex = MOp2.getIndex(); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 117 | return MI->getOperand(0).getReg(); |
| 118 | } |
| 119 | break; |
| 120 | } |
Scott Michel | 6637752 | 2007-12-04 22:35:58 +0000 | [diff] [blame] | 121 | } |
| 122 | return 0; |
| 123 | } |
Owen Anderson | d10fd97 | 2007-12-31 06:32:00 +0000 | [diff] [blame] | 124 | |
Jakob Stoklund Olesen | 377b7b7 | 2010-07-11 07:31:03 +0000 | [diff] [blame] | 125 | void SPUInstrInfo::copyPhysReg(MachineBasicBlock &MBB, |
| 126 | MachineBasicBlock::iterator I, DebugLoc DL, |
| 127 | unsigned DestReg, unsigned SrcReg, |
| 128 | bool KillSrc) const |
Owen Anderson | d10fd97 | 2007-12-31 06:32:00 +0000 | [diff] [blame] | 129 | { |
Chris Lattner | 5e09da2 | 2008-03-09 20:31:11 +0000 | [diff] [blame] | 130 | // We support cross register class moves for our aliases, such as R3 in any |
| 131 | // reg class to any other reg class containing R3. This is required because |
| 132 | // we instruction select bitconvert i64 -> f64 as a noop for example, so our |
| 133 | // types have no specific meaning. |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 134 | |
Jakob Stoklund Olesen | 377b7b7 | 2010-07-11 07:31:03 +0000 | [diff] [blame] | 135 | BuildMI(MBB, I, DL, get(SPU::LRr128), DestReg) |
| 136 | .addReg(SrcReg, getKillRegState(KillSrc)); |
Owen Anderson | d10fd97 | 2007-12-31 06:32:00 +0000 | [diff] [blame] | 137 | } |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 138 | |
| 139 | void |
| 140 | SPUInstrInfo::storeRegToStackSlot(MachineBasicBlock &MBB, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 141 | MachineBasicBlock::iterator MI, |
| 142 | unsigned SrcReg, bool isKill, int FrameIdx, |
| 143 | const TargetRegisterClass *RC, |
| 144 | const TargetRegisterInfo *TRI) const |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 145 | { |
Chris Lattner | cc8cd0c | 2008-01-07 02:48:55 +0000 | [diff] [blame] | 146 | unsigned opc; |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 147 | bool isValidFrameIdx = (FrameIdx < SPUFrameLowering::maxFrameOffset()); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 148 | if (RC == SPU::GPRCRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 149 | opc = (isValidFrameIdx ? SPU::STQDr128 : SPU::STQXr128); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 150 | } else if (RC == SPU::R64CRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 151 | opc = (isValidFrameIdx ? SPU::STQDr64 : SPU::STQXr64); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 152 | } else if (RC == SPU::R64FPRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 153 | opc = (isValidFrameIdx ? SPU::STQDr64 : SPU::STQXr64); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 154 | } else if (RC == SPU::R32CRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 155 | opc = (isValidFrameIdx ? SPU::STQDr32 : SPU::STQXr32); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 156 | } else if (RC == SPU::R32FPRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 157 | opc = (isValidFrameIdx ? SPU::STQDr32 : SPU::STQXr32); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 158 | } else if (RC == SPU::R16CRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 159 | opc = (isValidFrameIdx ? SPU::STQDr16 : SPU::STQXr16); |
| 160 | } else if (RC == SPU::R8CRegisterClass) { |
| 161 | opc = (isValidFrameIdx ? SPU::STQDr8 : SPU::STQXr8); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 162 | } else if (RC == SPU::VECREGRegisterClass) { |
| 163 | opc = (isValidFrameIdx) ? SPU::STQDv16i8 : SPU::STQXv16i8; |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 164 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 165 | llvm_unreachable("Unknown regclass!"); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 166 | } |
| 167 | |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 168 | DebugLoc DL; |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 169 | if (MI != MBB.end()) DL = MI->getDebugLoc(); |
| 170 | addFrameReference(BuildMI(MBB, MI, DL, get(opc)) |
Bill Wendling | 587daed | 2009-05-13 21:33:08 +0000 | [diff] [blame] | 171 | .addReg(SrcReg, getKillRegState(isKill)), FrameIdx); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 172 | } |
| 173 | |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 174 | void |
| 175 | SPUInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB, |
Evan Cheng | 746ad69 | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 176 | MachineBasicBlock::iterator MI, |
| 177 | unsigned DestReg, int FrameIdx, |
| 178 | const TargetRegisterClass *RC, |
| 179 | const TargetRegisterInfo *TRI) const |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 180 | { |
Chris Lattner | cc8cd0c | 2008-01-07 02:48:55 +0000 | [diff] [blame] | 181 | unsigned opc; |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 182 | bool isValidFrameIdx = (FrameIdx < SPUFrameLowering::maxFrameOffset()); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 183 | if (RC == SPU::GPRCRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 184 | opc = (isValidFrameIdx ? SPU::LQDr128 : SPU::LQXr128); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 185 | } else if (RC == SPU::R64CRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 186 | opc = (isValidFrameIdx ? SPU::LQDr64 : SPU::LQXr64); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 187 | } else if (RC == SPU::R64FPRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 188 | opc = (isValidFrameIdx ? SPU::LQDr64 : SPU::LQXr64); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 189 | } else if (RC == SPU::R32CRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 190 | opc = (isValidFrameIdx ? SPU::LQDr32 : SPU::LQXr32); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 191 | } else if (RC == SPU::R32FPRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 192 | opc = (isValidFrameIdx ? SPU::LQDr32 : SPU::LQXr32); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 193 | } else if (RC == SPU::R16CRegisterClass) { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 194 | opc = (isValidFrameIdx ? SPU::LQDr16 : SPU::LQXr16); |
| 195 | } else if (RC == SPU::R8CRegisterClass) { |
| 196 | opc = (isValidFrameIdx ? SPU::LQDr8 : SPU::LQXr8); |
Scott Michel | f0569be | 2008-12-27 04:51:36 +0000 | [diff] [blame] | 197 | } else if (RC == SPU::VECREGRegisterClass) { |
| 198 | opc = (isValidFrameIdx) ? SPU::LQDv16i8 : SPU::LQXv16i8; |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 199 | } else { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 200 | llvm_unreachable("Unknown regclass in loadRegFromStackSlot!"); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 201 | } |
| 202 | |
Chris Lattner | c7f3ace | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 203 | DebugLoc DL; |
Bill Wendling | d1c321a | 2009-02-12 00:02:55 +0000 | [diff] [blame] | 204 | if (MI != MBB.end()) DL = MI->getDebugLoc(); |
Jakob Stoklund Olesen | f2c3f6a | 2009-05-16 07:25:44 +0000 | [diff] [blame] | 205 | addFrameReference(BuildMI(MBB, MI, DL, get(opc), DestReg), FrameIdx); |
Owen Anderson | f6372aa | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 206 | } |
| 207 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 208 | //! Branch analysis |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 209 | /*! |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 210 | \note This code was kiped from PPC. There may be more branch analysis for |
| 211 | CellSPU than what's currently done here. |
| 212 | */ |
| 213 | bool |
| 214 | SPUInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 215 | MachineBasicBlock *&FBB, |
Evan Cheng | dc54d31 | 2009-02-09 07:14:22 +0000 | [diff] [blame] | 216 | SmallVectorImpl<MachineOperand> &Cond, |
| 217 | bool AllowModify) const { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 218 | // If the block has no terminators, it just falls into the block after it. |
| 219 | MachineBasicBlock::iterator I = MBB.end(); |
Dale Johannesen | 93d6a7e | 2010-04-02 01:38:09 +0000 | [diff] [blame] | 220 | if (I == MBB.begin()) |
| 221 | return false; |
| 222 | --I; |
| 223 | while (I->isDebugValue()) { |
| 224 | if (I == MBB.begin()) |
| 225 | return false; |
| 226 | --I; |
| 227 | } |
| 228 | if (!isUnpredicatedTerminator(I)) |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 229 | return false; |
| 230 | |
| 231 | // Get the last instruction in the block. |
| 232 | MachineInstr *LastInst = I; |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 233 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 234 | // If there is only one terminator instruction, process it. |
| 235 | if (I == MBB.begin() || !isUnpredicatedTerminator(--I)) { |
| 236 | if (isUncondBranch(LastInst)) { |
Kalle Raiskila | 2320a44 | 2010-05-11 11:00:02 +0000 | [diff] [blame] | 237 | // Check for jump tables |
| 238 | if (!LastInst->getOperand(0).isMBB()) |
| 239 | return true; |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 240 | TBB = LastInst->getOperand(0).getMBB(); |
| 241 | return false; |
| 242 | } else if (isCondBranch(LastInst)) { |
| 243 | // Block ends with fall-through condbranch. |
| 244 | TBB = LastInst->getOperand(1).getMBB(); |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 245 | DEBUG(errs() << "Pushing LastInst: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 246 | DEBUG(LastInst->dump()); |
| 247 | Cond.push_back(MachineOperand::CreateImm(LastInst->getOpcode())); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 248 | Cond.push_back(LastInst->getOperand(0)); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 249 | return false; |
| 250 | } |
| 251 | // Otherwise, don't know what this is. |
| 252 | return true; |
| 253 | } |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 254 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 255 | // Get the instruction before it if it's a terminator. |
| 256 | MachineInstr *SecondLastInst = I; |
| 257 | |
| 258 | // If there are three terminators, we don't know what sort of block this is. |
| 259 | if (SecondLastInst && I != MBB.begin() && |
| 260 | isUnpredicatedTerminator(--I)) |
| 261 | return true; |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 262 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 263 | // If the block ends with a conditional and unconditional branch, handle it. |
| 264 | if (isCondBranch(SecondLastInst) && isUncondBranch(LastInst)) { |
| 265 | TBB = SecondLastInst->getOperand(1).getMBB(); |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 266 | DEBUG(errs() << "Pushing SecondLastInst: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 267 | DEBUG(SecondLastInst->dump()); |
| 268 | Cond.push_back(MachineOperand::CreateImm(SecondLastInst->getOpcode())); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 269 | Cond.push_back(SecondLastInst->getOperand(0)); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 270 | FBB = LastInst->getOperand(0).getMBB(); |
| 271 | return false; |
| 272 | } |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 273 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 274 | // If the block ends with two unconditional branches, handle it. The second |
| 275 | // one is not executed, so remove it. |
| 276 | if (isUncondBranch(SecondLastInst) && isUncondBranch(LastInst)) { |
| 277 | TBB = SecondLastInst->getOperand(0).getMBB(); |
| 278 | I = LastInst; |
Evan Cheng | dc54d31 | 2009-02-09 07:14:22 +0000 | [diff] [blame] | 279 | if (AllowModify) |
| 280 | I->eraseFromParent(); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 281 | return false; |
| 282 | } |
| 283 | |
| 284 | // Otherwise, can't handle this. |
| 285 | return true; |
| 286 | } |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 287 | |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 288 | // search MBB for branch hint labels and branch hit ops |
| 289 | static void removeHBR( MachineBasicBlock &MBB) { |
| 290 | for (MachineBasicBlock::iterator I = MBB.begin(); I != MBB.end(); ++I){ |
| 291 | if (I->getOpcode() == SPU::HBRA || |
| 292 | I->getOpcode() == SPU::HBR_LABEL){ |
| 293 | I=MBB.erase(I); |
| 294 | } |
| 295 | } |
| 296 | } |
| 297 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 298 | unsigned |
| 299 | SPUInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const { |
| 300 | MachineBasicBlock::iterator I = MBB.end(); |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 301 | removeHBR(MBB); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 302 | if (I == MBB.begin()) |
| 303 | return 0; |
| 304 | --I; |
Dale Johannesen | 93d6a7e | 2010-04-02 01:38:09 +0000 | [diff] [blame] | 305 | while (I->isDebugValue()) { |
| 306 | if (I == MBB.begin()) |
| 307 | return 0; |
| 308 | --I; |
| 309 | } |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 310 | if (!isCondBranch(I) && !isUncondBranch(I)) |
| 311 | return 0; |
| 312 | |
| 313 | // Remove the first branch. |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 314 | DEBUG(errs() << "Removing branch: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 315 | DEBUG(I->dump()); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 316 | I->eraseFromParent(); |
| 317 | I = MBB.end(); |
| 318 | if (I == MBB.begin()) |
| 319 | return 1; |
| 320 | |
| 321 | --I; |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 322 | if (!(isCondBranch(I) || isUncondBranch(I))) |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 323 | return 1; |
| 324 | |
| 325 | // Remove the second branch. |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 326 | DEBUG(errs() << "Removing second branch: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 327 | DEBUG(I->dump()); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 328 | I->eraseFromParent(); |
| 329 | return 2; |
| 330 | } |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 331 | |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 332 | /** Find the optimal position for a hint branch instruction in a basic block. |
| 333 | * This should take into account: |
| 334 | * -the branch hint delays |
| 335 | * -congestion of the memory bus |
| 336 | * -dual-issue scheduling (i.e. avoid insertion of nops) |
| 337 | * Current implementation is rather simplistic. |
| 338 | */ |
| 339 | static MachineBasicBlock::iterator findHBRPosition(MachineBasicBlock &MBB) |
| 340 | { |
| 341 | MachineBasicBlock::iterator J = MBB.end(); |
| 342 | for( int i=0; i<8; i++) { |
| 343 | if( J == MBB.begin() ) return J; |
| 344 | J--; |
| 345 | } |
| 346 | return J; |
| 347 | } |
| 348 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 349 | unsigned |
| 350 | SPUInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
Scott Michel | 19c10e6 | 2009-01-26 03:37:41 +0000 | [diff] [blame] | 351 | MachineBasicBlock *FBB, |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 352 | const SmallVectorImpl<MachineOperand> &Cond, |
| 353 | DebugLoc DL) const { |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 354 | // Shouldn't be a fall through. |
| 355 | assert(TBB && "InsertBranch must not be told to insert a fallthrough"); |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 356 | assert((Cond.size() == 2 || Cond.size() == 0) && |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 357 | "SPU branch conditions have two components!"); |
Scott Michel | 02d711b | 2008-12-30 23:28:25 +0000 | [diff] [blame] | 358 | |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 359 | MachineInstrBuilder MIB; |
| 360 | //TODO: make a more accurate algorithm. |
| 361 | bool haveHBR = MBB.size()>8; |
| 362 | |
| 363 | removeHBR(MBB); |
| 364 | MCSymbol *branchLabel = MBB.getParent()->getContext().CreateTempSymbol(); |
| 365 | // Add a label just before the branch |
| 366 | if (haveHBR) |
| 367 | MIB = BuildMI(&MBB, DL, get(SPU::HBR_LABEL)).addSym(branchLabel); |
| 368 | |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 369 | // One-way branch. |
| 370 | if (FBB == 0) { |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 371 | if (Cond.empty()) { |
| 372 | // Unconditional branch |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 373 | MIB = BuildMI(&MBB, DL, get(SPU::BR)); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 374 | MIB.addMBB(TBB); |
| 375 | |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 376 | DEBUG(errs() << "Inserted one-way uncond branch: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 377 | DEBUG((*MIB).dump()); |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 378 | |
| 379 | // basic blocks have just one branch so it is safe to add the hint a its |
| 380 | if (haveHBR) { |
| 381 | MIB = BuildMI( MBB, findHBRPosition(MBB), DL, get(SPU::HBRA)); |
| 382 | MIB.addSym(branchLabel); |
| 383 | MIB.addMBB(TBB); |
| 384 | } |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 385 | } else { |
| 386 | // Conditional branch |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 387 | MIB = BuildMI(&MBB, DL, get(Cond[0].getImm())); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 388 | MIB.addReg(Cond[1].getReg()).addMBB(TBB); |
| 389 | |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 390 | if (haveHBR) { |
| 391 | MIB = BuildMI(MBB, findHBRPosition(MBB), DL, get(SPU::HBRA)); |
| 392 | MIB.addSym(branchLabel); |
| 393 | MIB.addMBB(TBB); |
| 394 | } |
| 395 | |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 396 | DEBUG(errs() << "Inserted one-way cond branch: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 397 | DEBUG((*MIB).dump()); |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 398 | } |
| 399 | return 1; |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 400 | } else { |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 401 | MIB = BuildMI(&MBB, DL, get(Cond[0].getImm())); |
Stuart Hastings | 3bf9125 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 402 | MachineInstrBuilder MIB2 = BuildMI(&MBB, DL, get(SPU::BR)); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 403 | |
| 404 | // Two-way Conditional Branch. |
| 405 | MIB.addReg(Cond[1].getReg()).addMBB(TBB); |
| 406 | MIB2.addMBB(FBB); |
| 407 | |
Kalle Raiskila | 2d25d24 | 2011-02-28 14:08:24 +0000 | [diff] [blame] | 408 | if (haveHBR) { |
| 409 | MIB = BuildMI( MBB, findHBRPosition(MBB), DL, get(SPU::HBRA)); |
| 410 | MIB.addSym(branchLabel); |
| 411 | MIB.addMBB(FBB); |
| 412 | } |
| 413 | |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 414 | DEBUG(errs() << "Inserted conditional branch: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 415 | DEBUG((*MIB).dump()); |
Benjamin Kramer | 072a56e | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 416 | DEBUG(errs() << "part 2: "); |
Scott Michel | 9bd7a37 | 2009-01-02 20:52:08 +0000 | [diff] [blame] | 417 | DEBUG((*MIB2).dump()); |
| 418 | return 2; |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 419 | } |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 420 | } |
| 421 | |
Scott Michel | 52d0001 | 2009-01-03 00:27:53 +0000 | [diff] [blame] | 422 | //! Reverses a branch's condition, returning false on success. |
| 423 | bool |
| 424 | SPUInstrInfo::ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) |
| 425 | const { |
| 426 | // Pretty brainless way of inverting the condition, but it works, considering |
| 427 | // there are only two conditions... |
| 428 | static struct { |
| 429 | unsigned Opc; //! The incoming opcode |
| 430 | unsigned RevCondOpc; //! The reversed condition opcode |
| 431 | } revconds[] = { |
| 432 | { SPU::BRNZr32, SPU::BRZr32 }, |
| 433 | { SPU::BRNZv4i32, SPU::BRZv4i32 }, |
| 434 | { SPU::BRZr32, SPU::BRNZr32 }, |
| 435 | { SPU::BRZv4i32, SPU::BRNZv4i32 }, |
| 436 | { SPU::BRHNZr16, SPU::BRHZr16 }, |
| 437 | { SPU::BRHNZv8i16, SPU::BRHZv8i16 }, |
| 438 | { SPU::BRHZr16, SPU::BRHNZr16 }, |
| 439 | { SPU::BRHZv8i16, SPU::BRHNZv8i16 } |
| 440 | }; |
Scott Michel | aedc637 | 2008-12-10 00:15:19 +0000 | [diff] [blame] | 441 | |
Scott Michel | 52d0001 | 2009-01-03 00:27:53 +0000 | [diff] [blame] | 442 | unsigned Opc = unsigned(Cond[0].getImm()); |
| 443 | // Pretty dull mapping between the two conditions that SPU can generate: |
Misha Brukman | 93c65c8 | 2009-01-07 23:07:29 +0000 | [diff] [blame] | 444 | for (int i = sizeof(revconds)/sizeof(revconds[0]) - 1; i >= 0; --i) { |
Scott Michel | 52d0001 | 2009-01-03 00:27:53 +0000 | [diff] [blame] | 445 | if (revconds[i].Opc == Opc) { |
| 446 | Cond[0].setImm(revconds[i].RevCondOpc); |
| 447 | return false; |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | return true; |
| 452 | } |