Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 1 | //===-- MipsISelDAGToDAG.cpp - A dag to dag inst selector for Mips --------===// |
| 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. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines an instruction selector for the MIPS target. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "mips-isel" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 15 | #include "Mips.h" |
| 16 | #include "MipsISelLowering.h" |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 17 | #include "MipsMachineFunction.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 18 | #include "MipsRegisterInfo.h" |
| 19 | #include "MipsSubtarget.h" |
| 20 | #include "MipsTargetMachine.h" |
| 21 | #include "llvm/GlobalValue.h" |
| 22 | #include "llvm/Instructions.h" |
| 23 | #include "llvm/Intrinsics.h" |
| 24 | #include "llvm/Support/CFG.h" |
| 25 | #include "llvm/Type.h" |
| 26 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 27 | #include "llvm/CodeGen/MachineFunction.h" |
| 28 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 29 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 32 | #include "llvm/Target/TargetMachine.h" |
| 33 | #include "llvm/Support/Compiler.h" |
| 34 | #include "llvm/Support/Debug.h" |
| 35 | #include <queue> |
| 36 | #include <set> |
| 37 | |
| 38 | using namespace llvm; |
| 39 | |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | // Instruction Selector Implementation |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | |
| 44 | //===----------------------------------------------------------------------===// |
| 45 | // MipsDAGToDAGISel - MIPS specific code to select MIPS machine |
| 46 | // instructions for SelectionDAG operations. |
| 47 | //===----------------------------------------------------------------------===// |
| 48 | namespace { |
| 49 | |
| 50 | class VISIBILITY_HIDDEN MipsDAGToDAGISel : public SelectionDAGISel { |
| 51 | |
| 52 | /// TM - Keep a reference to MipsTargetMachine. |
| 53 | MipsTargetMachine &TM; |
| 54 | |
| 55 | /// MipsLowering - This object fully describes how to lower LLVM code to an |
| 56 | /// Mips-specific SelectionDAG. |
| 57 | MipsTargetLowering MipsLowering; |
| 58 | |
| 59 | /// Subtarget - Keep a pointer to the MipsSubtarget around so that we can |
| 60 | /// make the right decision when generating code for different targets. |
| 61 | //TODO: add initialization on constructor |
| 62 | //const MipsSubtarget *Subtarget; |
| 63 | |
| 64 | public: |
| 65 | MipsDAGToDAGISel(MipsTargetMachine &tm) : |
| 66 | SelectionDAGISel(MipsLowering), |
| 67 | TM(tm), MipsLowering(*TM.getTargetLowering()) {} |
| 68 | |
| 69 | virtual void InstructionSelectBasicBlock(SelectionDAG &SD); |
| 70 | |
| 71 | // Pass Name |
| 72 | virtual const char *getPassName() const { |
| 73 | return "MIPS DAG->DAG Pattern Instruction Selection"; |
| 74 | } |
| 75 | |
| 76 | |
| 77 | private: |
| 78 | // Include the pieces autogenerated from the target description. |
| 79 | #include "MipsGenDAGISel.inc" |
| 80 | |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 81 | SDOperand getGlobalBaseReg(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 82 | SDNode *Select(SDOperand N); |
| 83 | |
| 84 | // Complex Pattern. |
| 85 | bool SelectAddr(SDOperand Op, SDOperand N, |
| 86 | SDOperand &Base, SDOperand &Offset); |
| 87 | |
| 88 | |
| 89 | // getI32Imm - Return a target constant with the specified |
| 90 | // value, of type i32. |
| 91 | inline SDOperand getI32Imm(unsigned Imm) { |
| 92 | return CurDAG->getTargetConstant(Imm, MVT::i32); |
| 93 | } |
| 94 | |
| 95 | |
| 96 | #ifndef NDEBUG |
| 97 | unsigned Indent; |
| 98 | #endif |
| 99 | }; |
| 100 | |
| 101 | } |
| 102 | |
| 103 | /// InstructionSelectBasicBlock - This callback is invoked by |
| 104 | /// SelectionDAGISel when it has created a SelectionDAG for us to codegen. |
| 105 | void MipsDAGToDAGISel:: |
| 106 | InstructionSelectBasicBlock(SelectionDAG &SD) |
| 107 | { |
| 108 | DEBUG(BB->dump()); |
| 109 | // Codegen the basic block. |
| 110 | #ifndef NDEBUG |
| 111 | DOUT << "===== Instruction selection begins:\n"; |
| 112 | Indent = 0; |
| 113 | #endif |
| 114 | |
| 115 | // Select target instructions for the DAG. |
| 116 | SD.setRoot(SelectRoot(SD.getRoot())); |
| 117 | |
| 118 | #ifndef NDEBUG |
| 119 | DOUT << "===== Instruction selection ends:\n"; |
| 120 | #endif |
| 121 | |
| 122 | SD.RemoveDeadNodes(); |
| 123 | |
| 124 | // Emit machine code to BB. |
| 125 | ScheduleAndEmitDAG(SD); |
| 126 | } |
| 127 | |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 128 | /// getGlobalBaseReg - Output the instructions required to put the |
| 129 | /// GOT address into a register. |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 130 | SDOperand MipsDAGToDAGISel::getGlobalBaseReg() { |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 131 | MachineFunction* MF = BB->getParent(); |
| 132 | unsigned GP = 0; |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 133 | for(MachineRegisterInfo::livein_iterator ii = MF->getRegInfo().livein_begin(), |
| 134 | ee = MF->getRegInfo().livein_end(); ii != ee; ++ii) |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 135 | if (ii->first == Mips::GP) { |
| 136 | GP = ii->second; |
| 137 | break; |
| 138 | } |
| 139 | assert(GP && "GOT PTR not in liveins"); |
| 140 | return CurDAG->getCopyFromReg(CurDAG->getEntryNode(), |
| 141 | GP, MVT::i32); |
| 142 | } |
| 143 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 144 | /// ComplexPattern used on MipsInstrInfo |
| 145 | /// Used on Mips Load/Store instructions |
| 146 | bool MipsDAGToDAGISel:: |
| 147 | SelectAddr(SDOperand Op, SDOperand Addr, SDOperand &Offset, SDOperand &Base) |
| 148 | { |
| 149 | // if Address is FI, get the TargetFrameIndex. |
| 150 | if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { |
| 151 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); |
| 152 | Offset = CurDAG->getTargetConstant(0, MVT::i32); |
| 153 | return true; |
| 154 | } |
| 155 | |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 156 | // on PIC code Load GA |
| 157 | if (TM.getRelocationModel() == Reloc::PIC_) { |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 158 | if ((Addr.getOpcode() == ISD::TargetGlobalAddress) || |
| 159 | (Addr.getOpcode() == ISD::TargetJumpTable)){ |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 160 | Base = CurDAG->getRegister(Mips::GP, MVT::i32); |
| 161 | Offset = Addr; |
| 162 | return true; |
| 163 | } |
| 164 | } else { |
| 165 | if ((Addr.getOpcode() == ISD::TargetExternalSymbol || |
| 166 | Addr.getOpcode() == ISD::TargetGlobalAddress)) |
| 167 | return false; |
| 168 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 169 | |
Bruno Cardoso Lopes | 7ff6fa2 | 2007-08-18 02:16:30 +0000 | [diff] [blame] | 170 | // Operand is a result from an ADD. |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 171 | if (Addr.getOpcode() == ISD::ADD) { |
| 172 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) { |
| 173 | if (Predicate_immSExt16(CN)) { |
| 174 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 175 | // If the first operand is a FI, get the TargetFI Node |
| 176 | if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode> |
| 177 | (Addr.getOperand(0))) { |
| 178 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); |
| 179 | } else { |
| 180 | Base = Addr.getOperand(0); |
| 181 | } |
| 182 | |
| 183 | Offset = CurDAG->getTargetConstant(CN->getValue(), MVT::i32); |
| 184 | return true; |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | |
Bruno Cardoso Lopes | a4e8200 | 2007-07-11 23:24:41 +0000 | [diff] [blame] | 189 | Base = Addr; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 190 | Offset = CurDAG->getTargetConstant(0, MVT::i32); |
| 191 | return true; |
| 192 | } |
| 193 | |
| 194 | /// Select instructions not customized! Used for |
| 195 | /// expanded, promoted and normal instructions |
| 196 | SDNode* MipsDAGToDAGISel:: |
| 197 | Select(SDOperand N) |
| 198 | { |
| 199 | SDNode *Node = N.Val; |
| 200 | unsigned Opcode = Node->getOpcode(); |
| 201 | |
| 202 | // Dump information about the Node being selected |
| 203 | #ifndef NDEBUG |
| 204 | DOUT << std::string(Indent, ' ') << "Selecting: "; |
| 205 | DEBUG(Node->dump(CurDAG)); |
| 206 | DOUT << "\n"; |
| 207 | Indent += 2; |
| 208 | #endif |
| 209 | |
| 210 | // If we have a custom node, we already have selected! |
| 211 | if (Opcode >= ISD::BUILTIN_OP_END && Opcode < MipsISD::FIRST_NUMBER) { |
| 212 | #ifndef NDEBUG |
| 213 | DOUT << std::string(Indent-2, ' ') << "== "; |
| 214 | DEBUG(Node->dump(CurDAG)); |
| 215 | DOUT << "\n"; |
| 216 | Indent -= 2; |
| 217 | #endif |
| 218 | return NULL; |
| 219 | } |
| 220 | |
| 221 | /// |
Bruno Cardoso Lopes | b42abeb | 2007-09-24 20:15:11 +0000 | [diff] [blame] | 222 | // Instruction Selection not handled by the auto-generated |
| 223 | // tablegen selection should be handled here. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 224 | /// |
| 225 | switch(Opcode) { |
| 226 | |
| 227 | default: break; |
| 228 | |
| 229 | /// Special Mul operations |
| 230 | case ISD::MULHS: |
| 231 | case ISD::MULHU: { |
| 232 | SDOperand MulOp1 = Node->getOperand(0); |
| 233 | SDOperand MulOp2 = Node->getOperand(1); |
| 234 | AddToISelQueue(MulOp1); |
| 235 | AddToISelQueue(MulOp2); |
| 236 | |
| 237 | unsigned MulOp = (Opcode == ISD::MULHU ? Mips::MULTu : Mips::MULT); |
| 238 | SDNode *MulNode = CurDAG->getTargetNode(MulOp, MVT::Flag, MulOp1, MulOp2); |
| 239 | |
| 240 | SDOperand MFInFlag = SDOperand(MulNode, 0); |
| 241 | return CurDAG->getTargetNode(Mips::MFHI, MVT::i32, MFInFlag); |
| 242 | } |
| 243 | |
| 244 | /// Div operations |
| 245 | case ISD::SDIV: |
| 246 | case ISD::UDIV: { |
| 247 | SDOperand DivOp1 = Node->getOperand(0); |
| 248 | SDOperand DivOp2 = Node->getOperand(1); |
| 249 | AddToISelQueue(DivOp1); |
| 250 | AddToISelQueue(DivOp2); |
| 251 | |
| 252 | unsigned DivOp = (Opcode == ISD::SDIV ? Mips::DIV : Mips::DIVu); |
| 253 | SDNode *DivNode = CurDAG->getTargetNode(DivOp, MVT::Flag, DivOp1, DivOp2); |
| 254 | |
| 255 | SDOperand MFInFlag = SDOperand(DivNode, 0); |
| 256 | return CurDAG->getTargetNode(Mips::MFLO, MVT::i32, MFInFlag); |
| 257 | } |
| 258 | |
| 259 | /// Rem operations |
| 260 | case ISD::SREM: |
| 261 | case ISD::UREM: { |
| 262 | SDOperand RemOp1 = Node->getOperand(0); |
| 263 | SDOperand RemOp2 = Node->getOperand(1); |
| 264 | AddToISelQueue(RemOp1); |
| 265 | AddToISelQueue(RemOp2); |
| 266 | |
| 267 | unsigned RemOp = (Opcode == ISD::SREM ? Mips::DIV : Mips::DIVu); |
| 268 | SDNode *RemNode = CurDAG->getTargetNode(RemOp, MVT::Flag, RemOp1, RemOp2); |
| 269 | |
| 270 | SDOperand MFInFlag = SDOperand(RemNode, 0); |
| 271 | return CurDAG->getTargetNode(Mips::MFHI, MVT::i32, MFInFlag); |
| 272 | } |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 273 | |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 274 | // Get target GOT address. |
| 275 | case ISD::GLOBAL_OFFSET_TABLE: { |
| 276 | SDOperand Result = getGlobalBaseReg(); |
| 277 | ReplaceUses(N, Result); |
| 278 | return NULL; |
| 279 | } |
| 280 | |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 281 | /// Handle direct and indirect calls when using PIC. On PIC, when |
| 282 | /// GOT is smaller than about 64k (small code) the GA target is |
| 283 | /// loaded with only one instruction. Otherwise GA's target must |
| 284 | /// be loaded with 3 instructions. |
| 285 | case MipsISD::JmpLink: { |
| 286 | if (TM.getRelocationModel() == Reloc::PIC_) { |
| 287 | //bool isCodeLarge = (TM.getCodeModel() == CodeModel::Large); |
| 288 | SDOperand Chain = Node->getOperand(0); |
| 289 | SDOperand Callee = Node->getOperand(1); |
| 290 | AddToISelQueue(Chain); |
| 291 | SDOperand T9Reg = CurDAG->getRegister(Mips::T9, MVT::i32); |
| 292 | SDOperand InFlag(0, 0); |
| 293 | |
| 294 | if ( (isa<GlobalAddressSDNode>(Callee)) || |
| 295 | (isa<ExternalSymbolSDNode>(Callee)) ) |
| 296 | { |
| 297 | /// Direct call for global addresses and external symbols |
| 298 | SDOperand GPReg = CurDAG->getRegister(Mips::GP, MVT::i32); |
| 299 | |
| 300 | // Use load to get GOT target |
| 301 | SDOperand Ops[] = { Callee, GPReg, Chain }; |
| 302 | SDOperand Load = SDOperand(CurDAG->getTargetNode(Mips::LW, MVT::i32, |
| 303 | MVT::Other, Ops, 3), 0); |
| 304 | Chain = Load.getValue(1); |
| 305 | AddToISelQueue(Chain); |
| 306 | |
| 307 | // Call target must be on T9 |
| 308 | Chain = CurDAG->getCopyToReg(Chain, T9Reg, Load, InFlag); |
| 309 | } else |
| 310 | /// Indirect call |
| 311 | Chain = CurDAG->getCopyToReg(Chain, T9Reg, Callee, InFlag); |
| 312 | |
| 313 | AddToISelQueue(Chain); |
| 314 | |
| 315 | // Emit Jump and Link Register |
| 316 | SDNode *ResNode = CurDAG->getTargetNode(Mips::JALR, MVT::Other, |
| 317 | MVT::Flag, T9Reg, Chain); |
| 318 | Chain = SDOperand(ResNode, 0); |
| 319 | InFlag = SDOperand(ResNode, 1); |
| 320 | ReplaceUses(SDOperand(Node, 0), Chain); |
| 321 | ReplaceUses(SDOperand(Node, 1), InFlag); |
| 322 | return ResNode; |
| 323 | } |
| 324 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | // Select the default instruction |
| 328 | SDNode *ResNode = SelectCode(N); |
| 329 | |
| 330 | #ifndef NDEBUG |
| 331 | DOUT << std::string(Indent-2, ' ') << "=> "; |
| 332 | if (ResNode == NULL || ResNode == N.Val) |
| 333 | DEBUG(N.Val->dump(CurDAG)); |
| 334 | else |
| 335 | DEBUG(ResNode->dump(CurDAG)); |
| 336 | DOUT << "\n"; |
| 337 | Indent -= 2; |
| 338 | #endif |
| 339 | |
| 340 | return ResNode; |
| 341 | } |
| 342 | |
| 343 | /// createMipsISelDag - This pass converts a legalized DAG into a |
| 344 | /// MIPS-specific DAG, ready for instruction scheduling. |
| 345 | FunctionPass *llvm::createMipsISelDag(MipsTargetMachine &TM) { |
| 346 | return new MipsDAGToDAGISel(TM); |
| 347 | } |