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" |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 16 | #include "MipsMachineFunction.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 17 | #include "MipsRegisterInfo.h" |
| 18 | #include "MipsSubtarget.h" |
| 19 | #include "MipsTargetMachine.h" |
| 20 | #include "llvm/GlobalValue.h" |
| 21 | #include "llvm/Instructions.h" |
| 22 | #include "llvm/Intrinsics.h" |
| 23 | #include "llvm/Support/CFG.h" |
| 24 | #include "llvm/Type.h" |
| 25 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 26 | #include "llvm/CodeGen/MachineFunction.h" |
| 27 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 28 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 29 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 31 | #include "llvm/Target/TargetMachine.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 32 | #include "llvm/Support/Debug.h" |
Torok Edwin | dac237e | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 33 | #include "llvm/Support/ErrorHandling.h" |
| 34 | #include "llvm/Support/raw_ostream.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 35 | using namespace llvm; |
| 36 | |
| 37 | //===----------------------------------------------------------------------===// |
| 38 | // Instruction Selector Implementation |
| 39 | //===----------------------------------------------------------------------===// |
| 40 | |
| 41 | //===----------------------------------------------------------------------===// |
| 42 | // MipsDAGToDAGISel - MIPS specific code to select MIPS machine |
| 43 | // instructions for SelectionDAG operations. |
| 44 | //===----------------------------------------------------------------------===// |
| 45 | namespace { |
| 46 | |
Nick Lewycky | 6726b6d | 2009-10-25 06:33:48 +0000 | [diff] [blame] | 47 | class MipsDAGToDAGISel : public SelectionDAGISel { |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 48 | |
| 49 | /// TM - Keep a reference to MipsTargetMachine. |
| 50 | MipsTargetMachine &TM; |
| 51 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 52 | /// Subtarget - Keep a pointer to the MipsSubtarget around so that we can |
| 53 | /// make the right decision when generating code for different targets. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 54 | const MipsSubtarget &Subtarget; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 55 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 56 | public: |
Dan Gohman | 1002c02 | 2008-07-07 18:00:37 +0000 | [diff] [blame] | 57 | explicit MipsDAGToDAGISel(MipsTargetMachine &tm) : |
Dan Gohman | 79ce276 | 2009-01-15 19:20:50 +0000 | [diff] [blame] | 58 | SelectionDAGISel(tm), |
Dan Gohman | da8ac5f | 2008-10-03 16:55:19 +0000 | [diff] [blame] | 59 | TM(tm), Subtarget(tm.getSubtarget<MipsSubtarget>()) {} |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 60 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 61 | // Pass Name |
| 62 | virtual const char *getPassName() const { |
| 63 | return "MIPS DAG->DAG Pattern Instruction Selection"; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 64 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 65 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 66 | |
| 67 | private: |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 68 | // Include the pieces autogenerated from the target description. |
| 69 | #include "MipsGenDAGISel.inc" |
| 70 | |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 71 | /// getTargetMachine - Return a reference to the TargetMachine, casted |
| 72 | /// to the target-specific type. |
| 73 | const MipsTargetMachine &getTargetMachine() { |
| 74 | return static_cast<const MipsTargetMachine &>(TM); |
| 75 | } |
| 76 | |
| 77 | /// getInstrInfo - Return a reference to the TargetInstrInfo, casted |
| 78 | /// to the target-specific type. |
| 79 | const MipsInstrInfo *getInstrInfo() { |
| 80 | return getTargetMachine().getInstrInfo(); |
| 81 | } |
| 82 | |
| 83 | SDNode *getGlobalBaseReg(); |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 84 | SDNode *Select(SDNode *N); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 85 | |
| 86 | // Complex Pattern. |
Chris Lattner | 52a261b | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 87 | bool SelectAddr(SDValue N, SDValue &Base, SDValue &Offset); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 88 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 89 | SDNode *SelectLoadFp64(SDNode *N); |
| 90 | SDNode *SelectStoreFp64(SDNode *N); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 91 | |
| 92 | // getI32Imm - Return a target constant with the specified |
| 93 | // value, of type i32. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 94 | inline SDValue getI32Imm(unsigned Imm) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 95 | return CurDAG->getTargetConstant(Imm, MVT::i32); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 96 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | } |
| 100 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 101 | |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 102 | /// getGlobalBaseReg - Output the instructions required to put the |
| 103 | /// GOT address into a register. |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 104 | SDNode *MipsDAGToDAGISel::getGlobalBaseReg() { |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 105 | unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF); |
| 106 | return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode(); |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 109 | /// ComplexPattern used on MipsInstrInfo |
| 110 | /// Used on Mips Load/Store instructions |
| 111 | bool MipsDAGToDAGISel:: |
Chris Lattner | 52a261b | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 112 | SelectAddr(SDValue Addr, SDValue &Offset, SDValue &Base) { |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 113 | // if Address is FI, get the TargetFrameIndex. |
| 114 | if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 115 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); |
| 116 | Offset = CurDAG->getTargetConstant(0, MVT::i32); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 117 | return true; |
| 118 | } |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 119 | |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 120 | // on PIC code Load GA |
| 121 | if (TM.getRelocationModel() == Reloc::PIC_) { |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 122 | if ((Addr.getOpcode() == ISD::TargetGlobalAddress) || |
| 123 | (Addr.getOpcode() == ISD::TargetConstantPool) || |
Bruno Cardoso Lopes | ca8a2aa | 2011-03-04 20:01:52 +0000 | [diff] [blame] | 124 | (Addr.getOpcode() == ISD::TargetJumpTable) || |
Akira Hatanaka | f49fde2 | 2011-04-04 17:11:07 +0000 | [diff] [blame^] | 125 | (Addr.getOpcode() == ISD::TargetBlockAddress) || |
| 126 | (Addr.getOpcode() == ISD::TargetExternalSymbol)) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 127 | Base = CurDAG->getRegister(Mips::GP, MVT::i32); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 128 | Offset = Addr; |
| 129 | return true; |
| 130 | } |
| 131 | } else { |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 132 | if ((Addr.getOpcode() == ISD::TargetExternalSymbol || |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 133 | Addr.getOpcode() == ISD::TargetGlobalAddress)) |
| 134 | return false; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Bruno Cardoso Lopes | 7ff6fa2 | 2007-08-18 02:16:30 +0000 | [diff] [blame] | 137 | // Operand is a result from an ADD. |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 138 | if (Addr.getOpcode() == ISD::ADD) { |
| 139 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) { |
Jakob Stoklund Olesen | 7552a3d | 2010-08-18 23:56:46 +0000 | [diff] [blame] | 140 | if (isInt<16>(CN->getSExtValue())) { |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 141 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 142 | // If the first operand is a FI, get the TargetFI Node |
| 143 | if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode> |
| 144 | (Addr.getOperand(0))) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 145 | Base = CurDAG->getTargetFrameIndex(FIN->getIndex(), MVT::i32); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 146 | } else { |
| 147 | Base = Addr.getOperand(0); |
| 148 | } |
| 149 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 150 | Offset = CurDAG->getTargetConstant(CN->getZExtValue(), MVT::i32); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 151 | return true; |
| 152 | } |
| 153 | } |
Bruno Cardoso Lopes | 6e0b658 | 2009-11-16 04:33:42 +0000 | [diff] [blame] | 154 | |
| 155 | // When loading from constant pools, load the lower address part in |
Bruno Cardoso Lopes | d71cebf | 2009-11-25 12:17:58 +0000 | [diff] [blame] | 156 | // the instruction itself. Example, instead of: |
Bruno Cardoso Lopes | 6e0b658 | 2009-11-16 04:33:42 +0000 | [diff] [blame] | 157 | // lui $2, %hi($CPI1_0) |
| 158 | // addiu $2, $2, %lo($CPI1_0) |
| 159 | // lwc1 $f0, 0($2) |
| 160 | // Generate: |
| 161 | // lui $2, %hi($CPI1_0) |
| 162 | // lwc1 $f0, %lo($CPI1_0)($2) |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 163 | if ((Addr.getOperand(0).getOpcode() == MipsISD::Hi || |
Bruno Cardoso Lopes | d71cebf | 2009-11-25 12:17:58 +0000 | [diff] [blame] | 164 | Addr.getOperand(0).getOpcode() == ISD::LOAD) && |
Bruno Cardoso Lopes | 6e0b658 | 2009-11-16 04:33:42 +0000 | [diff] [blame] | 165 | Addr.getOperand(1).getOpcode() == MipsISD::Lo) { |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 166 | SDValue LoVal = Addr.getOperand(1); |
Bruno Cardoso Lopes | d71cebf | 2009-11-25 12:17:58 +0000 | [diff] [blame] | 167 | if (dyn_cast<ConstantPoolSDNode>(LoVal.getOperand(0))) { |
| 168 | Base = Addr.getOperand(0); |
| 169 | Offset = LoVal.getOperand(0); |
| 170 | return true; |
Bruno Cardoso Lopes | 6e0b658 | 2009-11-16 04:33:42 +0000 | [diff] [blame] | 171 | } |
| 172 | } |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Bruno Cardoso Lopes | a4e8200 | 2007-07-11 23:24:41 +0000 | [diff] [blame] | 175 | Base = Addr; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 176 | Offset = CurDAG->getTargetConstant(0, MVT::i32); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 177 | return true; |
| 178 | } |
| 179 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 180 | SDNode *MipsDAGToDAGISel::SelectLoadFp64(SDNode *N) { |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 181 | MVT::SimpleValueType NVT = |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 182 | N->getValueType(0).getSimpleVT().SimpleTy; |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 183 | |
| 184 | if (!Subtarget.isMips1() || NVT != MVT::f64) |
| 185 | return NULL; |
| 186 | |
Jakob Stoklund Olesen | 7fa846f | 2010-09-03 00:35:13 +0000 | [diff] [blame] | 187 | LoadSDNode *LN = cast<LoadSDNode>(N); |
| 188 | if (LN->getExtensionType() != ISD::NON_EXTLOAD || |
| 189 | LN->getAddressingMode() != ISD::UNINDEXED) |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 190 | return NULL; |
| 191 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 192 | SDValue Chain = N->getOperand(0); |
| 193 | SDValue N1 = N->getOperand(1); |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 194 | SDValue Offset0, Offset1, Base; |
| 195 | |
Chris Lattner | 52a261b | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 196 | if (!SelectAddr(N1, Offset0, Base) || |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 197 | N1.getValueType() != MVT::i32) |
| 198 | return NULL; |
| 199 | |
| 200 | MachineSDNode::mmo_iterator MemRefs0 = MF->allocateMemRefsArray(1); |
| 201 | MemRefs0[0] = cast<MemSDNode>(N)->getMemOperand(); |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 202 | DebugLoc dl = N->getDebugLoc(); |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 203 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 204 | // The second load should start after for 4 bytes. |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 205 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Offset0)) |
| 206 | Offset1 = CurDAG->getTargetConstant(C->getSExtValue()+4, MVT::i32); |
| 207 | else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Offset0)) |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 208 | Offset1 = CurDAG->getTargetConstantPool(CP->getConstVal(), |
| 209 | MVT::i32, |
| 210 | CP->getAlignment(), |
| 211 | CP->getOffset()+4, |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 212 | CP->getTargetFlags()); |
| 213 | else |
| 214 | return NULL; |
| 215 | |
Bruno Cardoso Lopes | 37fd537 | 2009-11-25 01:05:25 +0000 | [diff] [blame] | 216 | // Choose the offsets depending on the endianess |
| 217 | if (TM.getTargetData()->isBigEndian()) |
| 218 | std::swap(Offset0, Offset1); |
| 219 | |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 220 | // Instead of: |
| 221 | // ldc $f0, X($3) |
| 222 | // Generate: |
| 223 | // lwc $f0, X($3) |
| 224 | // lwc $f1, X+4($3) |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 225 | SDNode *LD0 = CurDAG->getMachineNode(Mips::LWC1, dl, MVT::f32, |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 226 | MVT::Other, Offset0, Base, Chain); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 227 | SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 228 | dl, NVT), 0); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 229 | SDValue I0 = CurDAG->getTargetInsertSubreg(Mips::sub_fpeven, dl, |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 230 | MVT::f64, Undef, SDValue(LD0, 0)); |
| 231 | |
| 232 | SDNode *LD1 = CurDAG->getMachineNode(Mips::LWC1, dl, MVT::f32, |
| 233 | MVT::Other, Offset1, Base, SDValue(LD0, 1)); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 234 | SDValue I1 = CurDAG->getTargetInsertSubreg(Mips::sub_fpodd, dl, |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 235 | MVT::f64, I0, SDValue(LD1, 0)); |
| 236 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 237 | ReplaceUses(SDValue(N, 0), I1); |
| 238 | ReplaceUses(SDValue(N, 1), Chain); |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 239 | cast<MachineSDNode>(LD0)->setMemRefs(MemRefs0, MemRefs0 + 1); |
| 240 | cast<MachineSDNode>(LD1)->setMemRefs(MemRefs0, MemRefs0 + 1); |
| 241 | return I1.getNode(); |
| 242 | } |
| 243 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 244 | SDNode *MipsDAGToDAGISel::SelectStoreFp64(SDNode *N) { |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 245 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 246 | if (!Subtarget.isMips1() || |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 247 | N->getOperand(1).getValueType() != MVT::f64) |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 248 | return NULL; |
| 249 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 250 | SDValue Chain = N->getOperand(0); |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 251 | |
Jakob Stoklund Olesen | 7552a3d | 2010-08-18 23:56:46 +0000 | [diff] [blame] | 252 | StoreSDNode *SN = cast<StoreSDNode>(N); |
| 253 | if (SN->isTruncatingStore() || SN->getAddressingMode() != ISD::UNINDEXED) |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 254 | return NULL; |
| 255 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 256 | SDValue N1 = N->getOperand(1); |
| 257 | SDValue N2 = N->getOperand(2); |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 258 | SDValue Offset0, Offset1, Base; |
| 259 | |
Chris Lattner | 52a261b | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 260 | if (!SelectAddr(N2, Offset0, Base) || |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 261 | N1.getValueType() != MVT::f64 || |
| 262 | N2.getValueType() != MVT::i32) |
| 263 | return NULL; |
| 264 | |
| 265 | MachineSDNode::mmo_iterator MemRefs0 = MF->allocateMemRefsArray(1); |
| 266 | MemRefs0[0] = cast<MemSDNode>(N)->getMemOperand(); |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 267 | DebugLoc dl = N->getDebugLoc(); |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 268 | |
| 269 | // Get the even and odd part from the f64 register |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 270 | SDValue FPOdd = CurDAG->getTargetExtractSubreg(Mips::sub_fpodd, |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 271 | dl, MVT::f32, N1); |
Jakob Stoklund Olesen | fff916a | 2010-05-24 17:42:58 +0000 | [diff] [blame] | 272 | SDValue FPEven = CurDAG->getTargetExtractSubreg(Mips::sub_fpeven, |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 273 | dl, MVT::f32, N1); |
| 274 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 275 | // The second store should start after for 4 bytes. |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 276 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Offset0)) |
| 277 | Offset1 = CurDAG->getTargetConstant(C->getSExtValue()+4, MVT::i32); |
| 278 | else |
| 279 | return NULL; |
| 280 | |
Bruno Cardoso Lopes | 37fd537 | 2009-11-25 01:05:25 +0000 | [diff] [blame] | 281 | // Choose the offsets depending on the endianess |
| 282 | if (TM.getTargetData()->isBigEndian()) |
| 283 | std::swap(Offset0, Offset1); |
| 284 | |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 285 | // Instead of: |
| 286 | // sdc $f0, X($3) |
| 287 | // Generate: |
| 288 | // swc $f0, X($3) |
| 289 | // swc $f1, X+4($3) |
| 290 | SDValue Ops0[] = { FPEven, Offset0, Base, Chain }; |
| 291 | Chain = SDValue(CurDAG->getMachineNode(Mips::SWC1, dl, |
| 292 | MVT::Other, Ops0, 4), 0); |
| 293 | cast<MachineSDNode>(Chain.getNode())->setMemRefs(MemRefs0, MemRefs0 + 1); |
| 294 | |
| 295 | SDValue Ops1[] = { FPOdd, Offset1, Base, Chain }; |
| 296 | Chain = SDValue(CurDAG->getMachineNode(Mips::SWC1, dl, |
| 297 | MVT::Other, Ops1, 4), 0); |
| 298 | cast<MachineSDNode>(Chain.getNode())->setMemRefs(MemRefs0, MemRefs0 + 1); |
| 299 | |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 300 | ReplaceUses(SDValue(N, 0), Chain); |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 301 | return Chain.getNode(); |
| 302 | } |
| 303 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 304 | /// Select instructions not customized! Used for |
| 305 | /// expanded, promoted and normal instructions |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 306 | SDNode* MipsDAGToDAGISel::Select(SDNode *Node) { |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 307 | unsigned Opcode = Node->getOpcode(); |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 308 | DebugLoc dl = Node->getDebugLoc(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 309 | |
| 310 | // Dump information about the Node being selected |
Chris Lattner | 7c306da | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 311 | DEBUG(errs() << "Selecting: "; Node->dump(CurDAG); errs() << "\n"); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 312 | |
| 313 | // If we have a custom node, we already have selected! |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 314 | if (Node->isMachineOpcode()) { |
Chris Lattner | 7c306da | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 315 | DEBUG(errs() << "== "; Node->dump(CurDAG); errs() << "\n"); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 316 | return NULL; |
| 317 | } |
| 318 | |
| 319 | /// |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 320 | // Instruction Selection not handled by the auto-generated |
Bruno Cardoso Lopes | b42abeb | 2007-09-24 20:15:11 +0000 | [diff] [blame] | 321 | // tablegen selection should be handled here. |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 322 | /// |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 323 | switch(Opcode) { |
| 324 | |
| 325 | default: break; |
| 326 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 327 | case ISD::SUBE: |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 328 | case ISD::ADDE: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 329 | SDValue InFlag = Node->getOperand(2), CmpLHS; |
Jeffrey Yasskin | 8e68c38 | 2010-12-23 00:58:24 +0000 | [diff] [blame] | 330 | unsigned Opc = InFlag.getOpcode(); (void)Opc; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 331 | assert(((Opc == ISD::ADDC || Opc == ISD::ADDE) || |
| 332 | (Opc == ISD::SUBC || Opc == ISD::SUBE)) && |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 333 | "(ADD|SUB)E flag operand must come from (ADD|SUB)C/E insn"); |
| 334 | |
Chris Lattner | 30baa95 | 2008-12-14 21:38:24 +0000 | [diff] [blame] | 335 | unsigned MOp; |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 336 | if (Opcode == ISD::ADDE) { |
| 337 | CmpLHS = InFlag.getValue(0); |
| 338 | MOp = Mips::ADDu; |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 339 | } else { |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 340 | CmpLHS = InFlag.getOperand(0); |
| 341 | MOp = Mips::SUBu; |
| 342 | } |
| 343 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 344 | SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) }; |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 345 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 346 | SDValue LHS = Node->getOperand(0); |
| 347 | SDValue RHS = Node->getOperand(1); |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 348 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 349 | EVT VT = LHS.getValueType(); |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 350 | SDNode *Carry = CurDAG->getMachineNode(Mips::SLTu, dl, VT, Ops, 2); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 351 | SDNode *AddCarry = CurDAG->getMachineNode(Mips::ADDu, dl, VT, |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 352 | SDValue(Carry,0), RHS); |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 353 | |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 354 | return CurDAG->SelectNodeTo(Node, MOp, VT, MVT::Glue, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 355 | LHS, SDValue(AddCarry,0)); |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 356 | } |
| 357 | |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 358 | /// Mul/Div with two results |
| 359 | case ISD::SDIVREM: |
| 360 | case ISD::UDIVREM: |
Bruno Cardoso Lopes | 38b5e86 | 2011-03-04 21:03:24 +0000 | [diff] [blame] | 361 | break; |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 362 | case ISD::SMUL_LOHI: |
| 363 | case ISD::UMUL_LOHI: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 364 | SDValue Op1 = Node->getOperand(0); |
| 365 | SDValue Op2 = Node->getOperand(1); |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 366 | |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 367 | unsigned Op; |
Bruno Cardoso Lopes | 38b5e86 | 2011-03-04 21:03:24 +0000 | [diff] [blame] | 368 | Op = (Opcode == ISD::UMUL_LOHI ? Mips::MULTu : Mips::MULT); |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 369 | |
Bruno Cardoso Lopes | 38b5e86 | 2011-03-04 21:03:24 +0000 | [diff] [blame] | 370 | SDNode *Mul = CurDAG->getMachineNode(Op, dl, MVT::Glue, Op1, Op2); |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 371 | |
Bruno Cardoso Lopes | 38b5e86 | 2011-03-04 21:03:24 +0000 | [diff] [blame] | 372 | SDValue InFlag = SDValue(Mul, 0); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 373 | SDNode *Lo = CurDAG->getMachineNode(Mips::MFLO, dl, MVT::i32, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 374 | MVT::Glue, InFlag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 375 | InFlag = SDValue(Lo,1); |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 376 | SDNode *Hi = CurDAG->getMachineNode(Mips::MFHI, dl, MVT::i32, InFlag); |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 377 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 378 | if (!SDValue(Node, 0).use_empty()) |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 379 | ReplaceUses(SDValue(Node, 0), SDValue(Lo,0)); |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 380 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 381 | if (!SDValue(Node, 1).use_empty()) |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 382 | ReplaceUses(SDValue(Node, 1), SDValue(Hi,0)); |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 383 | |
| 384 | return NULL; |
Bruno Cardoso Lopes | 07cec75 | 2008-06-06 00:58:26 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 387 | /// Special Muls |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 388 | case ISD::MUL: |
Bruno Cardoso Lopes | 7d5652d | 2010-11-12 00:38:32 +0000 | [diff] [blame] | 389 | if (Subtarget.isMips32()) |
| 390 | break; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 391 | case ISD::MULHS: |
| 392 | case ISD::MULHU: { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 393 | SDValue MulOp1 = Node->getOperand(0); |
| 394 | SDValue MulOp2 = Node->getOperand(1); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 395 | |
| 396 | unsigned MulOp = (Opcode == ISD::MULHU ? Mips::MULTu : Mips::MULT); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 397 | SDNode *MulNode = CurDAG->getMachineNode(MulOp, dl, |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 398 | MVT::Glue, MulOp1, MulOp2); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 399 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 400 | SDValue InFlag = SDValue(MulNode, 0); |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 401 | |
Bruno Cardoso Lopes | 9a720b0 | 2010-02-01 12:16:39 +0000 | [diff] [blame] | 402 | if (Opcode == ISD::MUL) |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 403 | return CurDAG->getMachineNode(Mips::MFLO, dl, MVT::i32, InFlag); |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 404 | else |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 405 | return CurDAG->getMachineNode(Mips::MFHI, dl, MVT::i32, InFlag); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 406 | } |
| 407 | |
Bruno Cardoso Lopes | 0af5e09 | 2008-06-06 06:37:31 +0000 | [diff] [blame] | 408 | /// Div/Rem operations |
| 409 | case ISD::SREM: |
| 410 | case ISD::UREM: |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 411 | case ISD::SDIV: |
Bruno Cardoso Lopes | 38b5e86 | 2011-03-04 21:03:24 +0000 | [diff] [blame] | 412 | case ISD::UDIV: |
| 413 | break; |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 414 | |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 415 | // Get target GOT address. |
Dan Gohman | 9911405 | 2009-06-03 20:30:14 +0000 | [diff] [blame] | 416 | case ISD::GLOBAL_OFFSET_TABLE: |
| 417 | return getGlobalBaseReg(); |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 418 | |
Bruno Cardoso Lopes | a8173b9 | 2009-11-13 18:49:59 +0000 | [diff] [blame] | 419 | case ISD::ConstantFP: { |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 420 | ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(Node); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 421 | if (Node->getValueType(0) == MVT::f64 && CN->isExactlyValue(+0.0)) { |
| 422 | SDValue Zero = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, |
Bruno Cardoso Lopes | ea98278 | 2010-01-19 12:53:04 +0000 | [diff] [blame] | 423 | Mips::ZERO, MVT::i32); |
| 424 | SDValue Undef = SDValue( |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 425 | CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, dl, MVT::f64), 0); |
Bruno Cardoso Lopes | ea98278 | 2010-01-19 12:53:04 +0000 | [diff] [blame] | 426 | SDNode *MTC = CurDAG->getMachineNode(Mips::MTC1, dl, MVT::f32, Zero); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 427 | SDValue I0 = CurDAG->getTargetInsertSubreg(Mips::sub_fpeven, dl, |
Bruno Cardoso Lopes | ea98278 | 2010-01-19 12:53:04 +0000 | [diff] [blame] | 428 | MVT::f64, Undef, SDValue(MTC, 0)); |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 429 | SDValue I1 = CurDAG->getTargetInsertSubreg(Mips::sub_fpodd, dl, |
Bruno Cardoso Lopes | ea98278 | 2010-01-19 12:53:04 +0000 | [diff] [blame] | 430 | MVT::f64, I0, SDValue(MTC, 0)); |
| 431 | ReplaceUses(SDValue(Node, 0), I1); |
| 432 | return I1.getNode(); |
Bruno Cardoso Lopes | a8173b9 | 2009-11-13 18:49:59 +0000 | [diff] [blame] | 433 | } |
| 434 | break; |
| 435 | } |
| 436 | |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 437 | case ISD::LOAD: |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 438 | if (SDNode *ResNode = SelectLoadFp64(Node)) |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 439 | return ResNode; |
| 440 | // Other cases are autogenerated. |
| 441 | break; |
| 442 | |
| 443 | case ISD::STORE: |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 444 | if (SDNode *ResNode = SelectStoreFp64(Node)) |
Bruno Cardoso Lopes | 2045c47 | 2009-11-19 06:06:13 +0000 | [diff] [blame] | 445 | return ResNode; |
| 446 | // Other cases are autogenerated. |
| 447 | break; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | // Select the default instruction |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 451 | SDNode *ResNode = SelectCode(Node); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 452 | |
Chris Lattner | 7c306da | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 453 | DEBUG(errs() << "=> "); |
Dan Gohman | eeb3a00 | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 454 | if (ResNode == NULL || ResNode == Node) |
| 455 | DEBUG(Node->dump(CurDAG)); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 456 | else |
| 457 | DEBUG(ResNode->dump(CurDAG)); |
Chris Lattner | 893e1c9 | 2009-08-23 06:49:22 +0000 | [diff] [blame] | 458 | DEBUG(errs() << "\n"); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 459 | return ResNode; |
| 460 | } |
| 461 | |
Bruno Cardoso Lopes | 81092dc | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 462 | /// createMipsISelDag - This pass converts a legalized DAG into a |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 463 | /// MIPS-specific DAG, ready for instruction scheduling. |
| 464 | FunctionPass *llvm::createMipsISelDag(MipsTargetMachine &TM) { |
| 465 | return new MipsDAGToDAGISel(TM); |
| 466 | } |