Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 1 | //===-- Mips16ISelDAGToDAG.cpp - A Dag to Dag Inst Selector for Mips16 ----===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Subclass of MipsDAGToDAGISel specialized for mips16. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 14 | #include "Mips16ISelDAGToDAG.h" |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 15 | #include "MCTargetDesc/MipsBaseInfo.h" |
Chandler Carruth | 8a8cd2b | 2014-01-07 11:48:04 +0000 | [diff] [blame] | 16 | #include "Mips.h" |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 17 | #include "MipsAnalyzeImmediate.h" |
| 18 | #include "MipsMachineFunction.h" |
| 19 | #include "MipsRegisterInfo.h" |
| 20 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 21 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 22 | #include "llvm/CodeGen/MachineFunction.h" |
| 23 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 24 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 25 | #include "llvm/CodeGen/SelectionDAGNodes.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 26 | #include "llvm/IR/CFG.h" |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 27 | #include "llvm/IR/GlobalValue.h" |
| 28 | #include "llvm/IR/Instructions.h" |
| 29 | #include "llvm/IR/Intrinsics.h" |
| 30 | #include "llvm/IR/Type.h" |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Debug.h" |
| 32 | #include "llvm/Support/ErrorHandling.h" |
| 33 | #include "llvm/Support/raw_ostream.h" |
| 34 | #include "llvm/Target/TargetMachine.h" |
| 35 | using namespace llvm; |
| 36 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame^] | 37 | #define DEBUG_TYPE "mips-isel" |
| 38 | |
Reed Kotler | 1595f36 | 2013-04-09 19:46:01 +0000 | [diff] [blame] | 39 | bool Mips16DAGToDAGISel::runOnMachineFunction(MachineFunction &MF) { |
| 40 | if (!Subtarget.inMips16Mode()) |
| 41 | return false; |
| 42 | return MipsDAGToDAGISel::runOnMachineFunction(MF); |
| 43 | } |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 44 | /// Select multiply instructions. |
| 45 | std::pair<SDNode*, SDNode*> |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 46 | Mips16DAGToDAGISel::selectMULT(SDNode *N, unsigned Opc, SDLoc DL, EVT Ty, |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 47 | bool HasLo, bool HasHi) { |
| 48 | SDNode *Lo = 0, *Hi = 0; |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 49 | SDNode *Mul = CurDAG->getMachineNode(Opc, DL, MVT::Glue, N->getOperand(0), |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 50 | N->getOperand(1)); |
| 51 | SDValue InFlag = SDValue(Mul, 0); |
| 52 | |
| 53 | if (HasLo) { |
| 54 | unsigned Opcode = Mips::Mflo16; |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 55 | Lo = CurDAG->getMachineNode(Opcode, DL, Ty, MVT::Glue, InFlag); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 56 | InFlag = SDValue(Lo, 1); |
| 57 | } |
| 58 | if (HasHi) { |
| 59 | unsigned Opcode = Mips::Mfhi16; |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 60 | Hi = CurDAG->getMachineNode(Opcode, DL, Ty, InFlag); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 61 | } |
| 62 | return std::make_pair(Lo, Hi); |
| 63 | } |
| 64 | |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 65 | void Mips16DAGToDAGISel::initGlobalBaseReg(MachineFunction &MF) { |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 66 | MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>(); |
| 67 | |
| 68 | if (!MipsFI->globalBaseRegSet()) |
| 69 | return; |
| 70 | |
| 71 | MachineBasicBlock &MBB = MF.front(); |
| 72 | MachineBasicBlock::iterator I = MBB.begin(); |
| 73 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 74 | const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo(); |
| 75 | DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); |
| 76 | unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(); |
| 77 | const TargetRegisterClass *RC = |
| 78 | (const TargetRegisterClass*)&Mips::CPU16RegsRegClass; |
| 79 | |
| 80 | V0 = RegInfo.createVirtualRegister(RC); |
| 81 | V1 = RegInfo.createVirtualRegister(RC); |
| 82 | V2 = RegInfo.createVirtualRegister(RC); |
| 83 | |
Reed Kotler | d6aadc7 | 2013-09-18 22:46:09 +0000 | [diff] [blame] | 84 | BuildMI(MBB, I, DL, TII.get(Mips::GotPrologue16), V0). |
| 85 | addReg(V1, RegState::Define). |
| 86 | addExternalSymbol("_gp_disp", MipsII::MO_ABS_HI). |
| 87 | addExternalSymbol("_gp_disp", MipsII::MO_ABS_LO); |
| 88 | |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 89 | BuildMI(MBB, I, DL, TII.get(Mips::SllX16), V2).addReg(V0).addImm(16); |
| 90 | BuildMI(MBB, I, DL, TII.get(Mips::AdduRxRyRz16), GlobalBaseReg) |
| 91 | .addReg(V1).addReg(V2); |
| 92 | } |
| 93 | |
| 94 | // Insert instructions to initialize the Mips16 SP Alias register in the |
| 95 | // first MBB of the function. |
| 96 | // |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 97 | void Mips16DAGToDAGISel::initMips16SPAliasReg(MachineFunction &MF) { |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 98 | MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>(); |
| 99 | |
| 100 | if (!MipsFI->mips16SPAliasRegSet()) |
| 101 | return; |
| 102 | |
| 103 | MachineBasicBlock &MBB = MF.front(); |
| 104 | MachineBasicBlock::iterator I = MBB.begin(); |
| 105 | const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo(); |
| 106 | DebugLoc DL = I != MBB.end() ? I->getDebugLoc() : DebugLoc(); |
| 107 | unsigned Mips16SPAliasReg = MipsFI->getMips16SPAliasReg(); |
| 108 | |
| 109 | BuildMI(MBB, I, DL, TII.get(Mips::MoveR3216), Mips16SPAliasReg) |
| 110 | .addReg(Mips::SP); |
| 111 | } |
| 112 | |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 113 | void Mips16DAGToDAGISel::processFunctionAfterISel(MachineFunction &MF) { |
| 114 | initGlobalBaseReg(MF); |
| 115 | initMips16SPAliasReg(MF); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /// getMips16SPAliasReg - Output the instructions required to put the |
| 119 | /// SP into a Mips16 accessible aliased register. |
| 120 | SDValue Mips16DAGToDAGISel::getMips16SPAliasReg() { |
| 121 | unsigned Mips16SPAliasReg = |
| 122 | MF->getInfo<MipsFunctionInfo>()->getMips16SPAliasReg(); |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 123 | return CurDAG->getRegister(Mips16SPAliasReg, |
| 124 | getTargetLowering()->getPointerTy()); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | void Mips16DAGToDAGISel::getMips16SPRefReg(SDNode *Parent, SDValue &AliasReg) { |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 128 | SDValue AliasFPReg = CurDAG->getRegister(Mips::S0, |
| 129 | getTargetLowering()->getPointerTy()); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 130 | if (Parent) { |
| 131 | switch (Parent->getOpcode()) { |
| 132 | case ISD::LOAD: { |
| 133 | LoadSDNode *SD = dyn_cast<LoadSDNode>(Parent); |
| 134 | switch (SD->getMemoryVT().getSizeInBits()) { |
| 135 | case 8: |
| 136 | case 16: |
| 137 | AliasReg = TM.getFrameLowering()->hasFP(*MF)? |
| 138 | AliasFPReg: getMips16SPAliasReg(); |
| 139 | return; |
| 140 | } |
| 141 | break; |
| 142 | } |
| 143 | case ISD::STORE: { |
| 144 | StoreSDNode *SD = dyn_cast<StoreSDNode>(Parent); |
| 145 | switch (SD->getMemoryVT().getSizeInBits()) { |
| 146 | case 8: |
| 147 | case 16: |
| 148 | AliasReg = TM.getFrameLowering()->hasFP(*MF)? |
| 149 | AliasFPReg: getMips16SPAliasReg(); |
| 150 | return; |
| 151 | } |
| 152 | break; |
| 153 | } |
| 154 | } |
| 155 | } |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 156 | AliasReg = CurDAG->getRegister(Mips::SP, getTargetLowering()->getPointerTy()); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 157 | return; |
| 158 | |
| 159 | } |
| 160 | |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 161 | bool Mips16DAGToDAGISel::selectAddr16( |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 162 | SDNode *Parent, SDValue Addr, SDValue &Base, SDValue &Offset, |
| 163 | SDValue &Alias) { |
| 164 | EVT ValTy = Addr.getValueType(); |
| 165 | |
| 166 | Alias = CurDAG->getTargetConstant(0, ValTy); |
| 167 | |
| 168 | // if Address is FI, get the TargetFrameIndex. |
| 169 | if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { |
| 170 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy); |
| 171 | Offset = CurDAG->getTargetConstant(0, ValTy); |
| 172 | getMips16SPRefReg(Parent, Alias); |
| 173 | return true; |
| 174 | } |
| 175 | // on PIC code Load GA |
| 176 | if (Addr.getOpcode() == MipsISD::Wrapper) { |
| 177 | Base = Addr.getOperand(0); |
| 178 | Offset = Addr.getOperand(1); |
| 179 | return true; |
| 180 | } |
| 181 | if (TM.getRelocationModel() != Reloc::PIC_) { |
| 182 | if ((Addr.getOpcode() == ISD::TargetExternalSymbol || |
| 183 | Addr.getOpcode() == ISD::TargetGlobalAddress)) |
| 184 | return false; |
| 185 | } |
| 186 | // Addresses of the form FI+const or FI|const |
| 187 | if (CurDAG->isBaseWithConstantOffset(Addr)) { |
| 188 | ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); |
| 189 | if (isInt<16>(CN->getSExtValue())) { |
| 190 | |
| 191 | // If the first operand is a FI, get the TargetFI Node |
| 192 | if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode> |
| 193 | (Addr.getOperand(0))) { |
| 194 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), ValTy); |
| 195 | getMips16SPRefReg(Parent, Alias); |
| 196 | } |
| 197 | else |
| 198 | Base = Addr.getOperand(0); |
| 199 | |
| 200 | Offset = CurDAG->getTargetConstant(CN->getZExtValue(), ValTy); |
| 201 | return true; |
| 202 | } |
| 203 | } |
| 204 | // Operand is a result from an ADD. |
| 205 | if (Addr.getOpcode() == ISD::ADD) { |
| 206 | // When loading from constant pools, load the lower address part in |
| 207 | // the instruction itself. Example, instead of: |
| 208 | // lui $2, %hi($CPI1_0) |
| 209 | // addiu $2, $2, %lo($CPI1_0) |
| 210 | // lwc1 $f0, 0($2) |
| 211 | // Generate: |
| 212 | // lui $2, %hi($CPI1_0) |
| 213 | // lwc1 $f0, %lo($CPI1_0)($2) |
| 214 | if (Addr.getOperand(1).getOpcode() == MipsISD::Lo || |
| 215 | Addr.getOperand(1).getOpcode() == MipsISD::GPRel) { |
| 216 | SDValue Opnd0 = Addr.getOperand(1).getOperand(0); |
| 217 | if (isa<ConstantPoolSDNode>(Opnd0) || isa<GlobalAddressSDNode>(Opnd0) || |
| 218 | isa<JumpTableSDNode>(Opnd0)) { |
| 219 | Base = Addr.getOperand(0); |
| 220 | Offset = Opnd0; |
| 221 | return true; |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | // If an indexed floating point load/store can be emitted, return false. |
| 226 | const LSBaseSDNode *LS = dyn_cast<LSBaseSDNode>(Parent); |
| 227 | |
| 228 | if (LS && |
| 229 | (LS->getMemoryVT() == MVT::f32 || LS->getMemoryVT() == MVT::f64) && |
| 230 | Subtarget.hasFPIdx()) |
| 231 | return false; |
| 232 | } |
| 233 | Base = Addr; |
| 234 | Offset = CurDAG->getTargetConstant(0, ValTy); |
| 235 | return true; |
| 236 | } |
| 237 | |
| 238 | /// Select instructions not customized! Used for |
| 239 | /// expanded, promoted and normal instructions |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 240 | std::pair<bool, SDNode*> Mips16DAGToDAGISel::selectNode(SDNode *Node) { |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 241 | unsigned Opcode = Node->getOpcode(); |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 242 | SDLoc DL(Node); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 243 | |
| 244 | /// |
| 245 | // Instruction Selection not handled by the auto-generated |
| 246 | // tablegen selection should be handled here. |
| 247 | /// |
| 248 | EVT NodeTy = Node->getValueType(0); |
| 249 | unsigned MultOpc; |
| 250 | |
| 251 | switch(Opcode) { |
| 252 | default: break; |
| 253 | |
| 254 | case ISD::SUBE: |
| 255 | case ISD::ADDE: { |
| 256 | SDValue InFlag = Node->getOperand(2), CmpLHS; |
| 257 | unsigned Opc = InFlag.getOpcode(); (void)Opc; |
| 258 | assert(((Opc == ISD::ADDC || Opc == ISD::ADDE) || |
| 259 | (Opc == ISD::SUBC || Opc == ISD::SUBE)) && |
| 260 | "(ADD|SUB)E flag operand must come from (ADD|SUB)C/E insn"); |
| 261 | |
| 262 | unsigned MOp; |
| 263 | if (Opcode == ISD::ADDE) { |
| 264 | CmpLHS = InFlag.getValue(0); |
| 265 | MOp = Mips::AdduRxRyRz16; |
| 266 | } else { |
| 267 | CmpLHS = InFlag.getOperand(0); |
| 268 | MOp = Mips::SubuRxRyRz16; |
| 269 | } |
| 270 | |
| 271 | SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) }; |
| 272 | |
| 273 | SDValue LHS = Node->getOperand(0); |
| 274 | SDValue RHS = Node->getOperand(1); |
| 275 | |
| 276 | EVT VT = LHS.getValueType(); |
| 277 | |
| 278 | unsigned Sltu_op = Mips::SltuRxRyRz16; |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 279 | SDNode *Carry = CurDAG->getMachineNode(Sltu_op, DL, VT, Ops); |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 280 | unsigned Addu_op = Mips::AdduRxRyRz16; |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 281 | SDNode *AddCarry = CurDAG->getMachineNode(Addu_op, DL, VT, |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 282 | SDValue(Carry,0), RHS); |
| 283 | |
| 284 | SDNode *Result = CurDAG->SelectNodeTo(Node, MOp, VT, MVT::Glue, LHS, |
| 285 | SDValue(AddCarry,0)); |
| 286 | return std::make_pair(true, Result); |
| 287 | } |
| 288 | |
| 289 | /// Mul with two results |
| 290 | case ISD::SMUL_LOHI: |
| 291 | case ISD::UMUL_LOHI: { |
| 292 | MultOpc = (Opcode == ISD::UMUL_LOHI ? Mips::MultuRxRy16 : Mips::MultRxRy16); |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 293 | std::pair<SDNode*, SDNode*> LoHi = selectMULT(Node, MultOpc, DL, NodeTy, |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 294 | true, true); |
| 295 | if (!SDValue(Node, 0).use_empty()) |
| 296 | ReplaceUses(SDValue(Node, 0), SDValue(LoHi.first, 0)); |
| 297 | |
| 298 | if (!SDValue(Node, 1).use_empty()) |
| 299 | ReplaceUses(SDValue(Node, 1), SDValue(LoHi.second, 0)); |
| 300 | |
| 301 | return std::make_pair(true, (SDNode*)NULL); |
| 302 | } |
| 303 | |
| 304 | case ISD::MULHS: |
| 305 | case ISD::MULHU: { |
| 306 | MultOpc = (Opcode == ISD::MULHU ? Mips::MultuRxRy16 : Mips::MultRxRy16); |
Akira Hatanaka | 040d225 | 2013-03-14 18:33:23 +0000 | [diff] [blame] | 307 | SDNode *Result = selectMULT(Node, MultOpc, DL, NodeTy, false, true).second; |
Akira Hatanaka | 30a8478 | 2013-03-14 18:27:31 +0000 | [diff] [blame] | 308 | return std::make_pair(true, Result); |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | return std::make_pair(false, (SDNode*)NULL); |
| 313 | } |
| 314 | |
| 315 | FunctionPass *llvm::createMips16ISelDag(MipsTargetMachine &TM) { |
| 316 | return new Mips16DAGToDAGISel(TM); |
| 317 | } |