Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 1 | //===-- MipsISelLowering.cpp - Mips DAG Lowering Implementation -----------===// |
| 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 the interfaces that Mips uses to lower LLVM code into a |
| 11 | // selection DAG. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #define DEBUG_TYPE "mips-lower" |
| 16 | |
| 17 | #include "MipsISelLowering.h" |
Bruno Cardoso Lopes | a2b1bb5 | 2007-08-28 05:08:16 +0000 | [diff] [blame] | 18 | #include "MipsMachineFunction.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 19 | #include "MipsTargetMachine.h" |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 20 | #include "MipsSubtarget.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 21 | #include "llvm/DerivedTypes.h" |
| 22 | #include "llvm/Function.h" |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 23 | #include "llvm/GlobalVariable.h" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 24 | #include "llvm/Intrinsics.h" |
| 25 | #include "llvm/CallingConv.h" |
| 26 | #include "llvm/CodeGen/CallingConvLower.h" |
| 27 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 28 | #include "llvm/CodeGen/MachineFunction.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" |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/ValueTypes.h" |
| 33 | #include "llvm/Support/Debug.h" |
| 34 | #include <queue> |
| 35 | #include <set> |
| 36 | |
| 37 | using namespace llvm; |
| 38 | |
| 39 | const char *MipsTargetLowering:: |
| 40 | getTargetNodeName(unsigned Opcode) const |
| 41 | { |
| 42 | switch (Opcode) |
| 43 | { |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 44 | case MipsISD::JmpLink : return "MipsISD::JmpLink"; |
| 45 | case MipsISD::Hi : return "MipsISD::Hi"; |
| 46 | case MipsISD::Lo : return "MipsISD::Lo"; |
| 47 | case MipsISD::GPRel : return "MipsISD::GPRel"; |
| 48 | case MipsISD::Ret : return "MipsISD::Ret"; |
Bruno Cardoso Lopes | 739e441 | 2008-08-13 07:13:40 +0000 | [diff] [blame] | 49 | case MipsISD::CMov : return "MipsISD::CMov"; |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 50 | case MipsISD::SelectCC : return "MipsISD::SelectCC"; |
| 51 | case MipsISD::FPSelectCC : return "MipsISD::FPSelectCC"; |
| 52 | case MipsISD::FPBrcond : return "MipsISD::FPBrcond"; |
| 53 | case MipsISD::FPCmp : return "MipsISD::FPCmp"; |
| 54 | default : return NULL; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 55 | } |
| 56 | } |
| 57 | |
| 58 | MipsTargetLowering:: |
| 59 | MipsTargetLowering(MipsTargetMachine &TM): TargetLowering(TM) |
| 60 | { |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 61 | Subtarget = &TM.getSubtarget<MipsSubtarget>(); |
| 62 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 63 | // Mips does not have i1 type, so use i32 for |
| 64 | // setcc operations results (slt, sgt, ...). |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 65 | setSetCCResultContents(ZeroOrOneSetCCResult); |
| 66 | |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 67 | // JumpTable targets must use GOT when using PIC_ |
| 68 | setUsesGlobalOffsetTable(true); |
| 69 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 70 | // Set up the register classes |
| 71 | addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass); |
| 72 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 73 | // When dealing with single precision only, use libcalls |
| 74 | if (!Subtarget->isSingleFloat()) { |
| 75 | addRegisterClass(MVT::f32, Mips::AFGR32RegisterClass); |
| 76 | if (!Subtarget->isFP64bit()) |
| 77 | addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass); |
| 78 | } else |
| 79 | addRegisterClass(MVT::f32, Mips::FGR32RegisterClass); |
| 80 | |
Bruno Cardoso Lopes | 7030ae7 | 2008-07-30 19:00:31 +0000 | [diff] [blame] | 81 | // Legal fp constants |
| 82 | addLegalFPImmediate(APFloat(+0.0f)); |
| 83 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 84 | // Load extented operations for i1 types must be promoted |
| 85 | setLoadXAction(ISD::EXTLOAD, MVT::i1, Promote); |
| 86 | setLoadXAction(ISD::ZEXTLOAD, MVT::i1, Promote); |
| 87 | setLoadXAction(ISD::SEXTLOAD, MVT::i1, Promote); |
| 88 | |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 89 | // Used by legalize types to correctly generate the setcc result. |
Bruno Cardoso Lopes | 1906c5a | 2008-08-02 19:37:33 +0000 | [diff] [blame] | 90 | // Without this, every float setcc comes with a AND/OR with the result, |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 91 | // we don't want this, since the fpcmp result goes to a flag register, |
| 92 | // which is used implicitly by brcond and select operations. |
| 93 | AddPromotedToType(ISD::SETCC, MVT::i1, MVT::i32); |
| 94 | |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 95 | // Mips Custom Operations |
Bruno Cardoso Lopes | 7da151c | 2008-08-07 19:08:11 +0000 | [diff] [blame] | 96 | setOperationAction(ISD::GlobalAddress, MVT::i32, Custom); |
| 97 | setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom); |
| 98 | setOperationAction(ISD::RET, MVT::Other, Custom); |
| 99 | setOperationAction(ISD::JumpTable, MVT::i32, Custom); |
| 100 | setOperationAction(ISD::ConstantPool, MVT::i32, Custom); |
| 101 | setOperationAction(ISD::SELECT, MVT::f32, Custom); |
| 102 | setOperationAction(ISD::SELECT, MVT::i32, Custom); |
Bruno Cardoso Lopes | 7da151c | 2008-08-07 19:08:11 +0000 | [diff] [blame] | 103 | setOperationAction(ISD::SETCC, MVT::f32, Custom); |
| 104 | setOperationAction(ISD::BRCOND, MVT::Other, Custom); |
| 105 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom); |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 106 | |
Bruno Cardoso Lopes | 1906c5a | 2008-08-02 19:37:33 +0000 | [diff] [blame] | 107 | // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors' |
| 108 | // with operands comming from setcc fp comparions. This is necessary since |
| 109 | // the result from these setcc are in a flag registers (FCR31). |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 110 | setOperationAction(ISD::AND, MVT::i32, Custom); |
Bruno Cardoso Lopes | 1906c5a | 2008-08-02 19:37:33 +0000 | [diff] [blame] | 111 | setOperationAction(ISD::OR, MVT::i32, Custom); |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 112 | |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 113 | // Operations not directly supported by Mips. |
Bruno Cardoso Lopes | 85e9212 | 2008-07-07 19:11:24 +0000 | [diff] [blame] | 114 | setOperationAction(ISD::BR_JT, MVT::Other, Expand); |
| 115 | setOperationAction(ISD::BR_CC, MVT::Other, Expand); |
| 116 | setOperationAction(ISD::SELECT_CC, MVT::Other, Expand); |
Bruno Cardoso Lopes | 85e9212 | 2008-07-07 19:11:24 +0000 | [diff] [blame] | 117 | setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand); |
| 118 | setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand); |
| 119 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand); |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 120 | setOperationAction(ISD::CTPOP, MVT::i32, Expand); |
| 121 | setOperationAction(ISD::CTTZ, MVT::i32, Expand); |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 122 | setOperationAction(ISD::ROTL, MVT::i32, Expand); |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 123 | setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand); |
| 124 | setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand); |
| 125 | setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand); |
Bruno Cardoso Lopes | 7bd7182 | 2008-07-31 18:50:54 +0000 | [diff] [blame] | 126 | setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 127 | |
| 128 | // We don't have line number support yet. |
| 129 | setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand); |
| 130 | setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand); |
| 131 | setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand); |
| 132 | setOperationAction(ISD::EH_LABEL, MVT::Other, Expand); |
| 133 | |
| 134 | // Use the default for now |
| 135 | setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); |
| 136 | setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand); |
| 137 | setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand); |
Bruno Cardoso Lopes | 85e9212 | 2008-07-07 19:11:24 +0000 | [diff] [blame] | 138 | |
Bruno Cardoso Lopes | ea9d4d6 | 2008-08-04 06:44:31 +0000 | [diff] [blame] | 139 | if (Subtarget->isSingleFloat()) |
Bruno Cardoso Lopes | 85e9212 | 2008-07-07 19:11:24 +0000 | [diff] [blame] | 140 | setOperationAction(ISD::SELECT_CC, MVT::f64, Expand); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 141 | |
Bruno Cardoso Lopes | 7728f7e | 2008-07-09 05:32:22 +0000 | [diff] [blame] | 142 | if (!Subtarget->hasSEInReg()) { |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 143 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 144 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand); |
| 145 | } |
| 146 | |
Bruno Cardoso Lopes | 65ad452 | 2008-08-08 06:16:31 +0000 | [diff] [blame] | 147 | if (!Subtarget->hasBitCount()) |
| 148 | setOperationAction(ISD::CTLZ, MVT::i32, Expand); |
| 149 | |
Bruno Cardoso Lopes | 739e441 | 2008-08-13 07:13:40 +0000 | [diff] [blame] | 150 | if (!Subtarget->hasSwap()) |
| 151 | setOperationAction(ISD::BSWAP, MVT::i32, Expand); |
| 152 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 153 | setStackPointerRegisterToSaveRestore(Mips::SP); |
| 154 | computeRegisterProperties(); |
| 155 | } |
| 156 | |
| 157 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 158 | MVT MipsTargetLowering::getSetCCResultType(const SDValue &) const { |
Scott Michel | 5b8f82e | 2008-03-10 15:42:14 +0000 | [diff] [blame] | 159 | return MVT::i32; |
| 160 | } |
| 161 | |
| 162 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 163 | SDValue MipsTargetLowering:: |
| 164 | LowerOperation(SDValue Op, SelectionDAG &DAG) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 165 | { |
| 166 | switch (Op.getOpcode()) |
| 167 | { |
Bruno Cardoso Lopes | 7da151c | 2008-08-07 19:08:11 +0000 | [diff] [blame] | 168 | case ISD::AND: return LowerANDOR(Op, DAG); |
| 169 | case ISD::BRCOND: return LowerBRCOND(Op, DAG); |
| 170 | case ISD::CALL: return LowerCALL(Op, DAG); |
| 171 | case ISD::ConstantPool: return LowerConstantPool(Op, DAG); |
| 172 | case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG); |
| 173 | case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG); |
| 174 | case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG); |
| 175 | case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG); |
| 176 | case ISD::JumpTable: return LowerJumpTable(Op, DAG); |
| 177 | case ISD::OR: return LowerANDOR(Op, DAG); |
| 178 | case ISD::RET: return LowerRET(Op, DAG); |
| 179 | case ISD::SELECT: return LowerSELECT(Op, DAG); |
Bruno Cardoso Lopes | 7da151c | 2008-08-07 19:08:11 +0000 | [diff] [blame] | 180 | case ISD::SETCC: return LowerSETCC(Op, DAG); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 181 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 182 | return SDValue(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | //===----------------------------------------------------------------------===// |
| 186 | // Lower helper functions |
| 187 | //===----------------------------------------------------------------------===// |
| 188 | |
| 189 | // AddLiveIn - This helper function adds the specified physical register to the |
| 190 | // MachineFunction as a live in value. It also creates a corresponding |
| 191 | // virtual register for it. |
| 192 | static unsigned |
| 193 | AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC) |
| 194 | { |
| 195 | assert(RC->contains(PReg) && "Not the correct regclass!"); |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 196 | unsigned VReg = MF.getRegInfo().createVirtualRegister(RC); |
| 197 | MF.getRegInfo().addLiveIn(PReg, VReg); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 198 | return VReg; |
| 199 | } |
| 200 | |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 201 | // A address must be loaded from a small section if its size is less than the |
| 202 | // small section size threshold. Data in this section must be addressed using |
| 203 | // gp_rel operator. |
| 204 | bool MipsTargetLowering::IsInSmallSection(unsigned Size) { |
| 205 | return (Size > 0 && (Size <= Subtarget->getSSectionThreshold())); |
| 206 | } |
| 207 | |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 208 | // Discover if this global address can be placed into small data/bss section. |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 209 | bool MipsTargetLowering::IsGlobalInSmallSection(GlobalValue *GV) |
| 210 | { |
| 211 | const TargetData *TD = getTargetData(); |
Bruno Cardoso Lopes | feb95cc | 2008-07-22 15:34:27 +0000 | [diff] [blame] | 212 | const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV); |
| 213 | |
| 214 | if (!GVA) |
| 215 | return false; |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 216 | |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 217 | const Type *Ty = GV->getType()->getElementType(); |
| 218 | unsigned Size = TD->getABITypeSize(Ty); |
| 219 | |
| 220 | // if this is a internal constant string, there is a special |
| 221 | // section for it, but not in small data/bss. |
| 222 | if (GVA->hasInitializer() && GV->hasInternalLinkage()) { |
| 223 | Constant *C = GVA->getInitializer(); |
| 224 | const ConstantArray *CVA = dyn_cast<ConstantArray>(C); |
| 225 | if (CVA && CVA->isCString()) |
| 226 | return false; |
| 227 | } |
| 228 | |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 229 | return IsInSmallSection(Size); |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 230 | } |
| 231 | |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 232 | // Get fp branch code (not opcode) from condition code. |
| 233 | static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) { |
| 234 | if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT) |
| 235 | return Mips::BRANCH_T; |
| 236 | |
| 237 | if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT) |
| 238 | return Mips::BRANCH_F; |
| 239 | |
| 240 | return Mips::BRANCH_INVALID; |
| 241 | } |
| 242 | |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 243 | static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) { |
| 244 | switch(BC) { |
| 245 | default: |
| 246 | assert(0 && "Unknown branch code"); |
| 247 | case Mips::BRANCH_T : return Mips::BC1T; |
| 248 | case Mips::BRANCH_F : return Mips::BC1F; |
| 249 | case Mips::BRANCH_TL : return Mips::BC1TL; |
| 250 | case Mips::BRANCH_FL : return Mips::BC1FL; |
| 251 | } |
| 252 | } |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 253 | |
| 254 | static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) { |
| 255 | switch (CC) { |
| 256 | default: assert(0 && "Unknown fp condition code!"); |
| 257 | case ISD::SETEQ: |
| 258 | case ISD::SETOEQ: return Mips::FCOND_EQ; |
| 259 | case ISD::SETUNE: return Mips::FCOND_OGL; |
| 260 | case ISD::SETLT: |
| 261 | case ISD::SETOLT: return Mips::FCOND_OLT; |
| 262 | case ISD::SETGT: |
| 263 | case ISD::SETOGT: return Mips::FCOND_OGT; |
| 264 | case ISD::SETLE: |
| 265 | case ISD::SETOLE: return Mips::FCOND_OLE; |
| 266 | case ISD::SETGE: |
| 267 | case ISD::SETOGE: return Mips::FCOND_OGE; |
| 268 | case ISD::SETULT: return Mips::FCOND_ULT; |
| 269 | case ISD::SETULE: return Mips::FCOND_ULE; |
| 270 | case ISD::SETUGT: return Mips::FCOND_UGT; |
| 271 | case ISD::SETUGE: return Mips::FCOND_UGE; |
| 272 | case ISD::SETUO: return Mips::FCOND_UN; |
| 273 | case ISD::SETO: return Mips::FCOND_OR; |
| 274 | case ISD::SETNE: |
| 275 | case ISD::SETONE: return Mips::FCOND_NEQ; |
| 276 | case ISD::SETUEQ: return Mips::FCOND_UEQ; |
| 277 | } |
| 278 | } |
| 279 | |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 280 | MachineBasicBlock * |
| 281 | MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, |
| 282 | MachineBasicBlock *BB) |
| 283 | { |
| 284 | const TargetInstrInfo *TII = getTargetMachine().getInstrInfo(); |
| 285 | bool isFPCmp = false; |
| 286 | |
| 287 | switch (MI->getOpcode()) { |
| 288 | default: assert(false && "Unexpected instr type to insert"); |
| 289 | case Mips::Select_FCC: |
| 290 | case Mips::Select_FCC_SO32: |
| 291 | case Mips::Select_FCC_AS32: |
| 292 | case Mips::Select_FCC_D32: |
| 293 | isFPCmp = true; // FALL THROUGH |
| 294 | case Mips::Select_CC: |
| 295 | case Mips::Select_CC_SO32: |
| 296 | case Mips::Select_CC_AS32: |
| 297 | case Mips::Select_CC_D32: { |
| 298 | // To "insert" a SELECT_CC instruction, we actually have to insert the |
| 299 | // diamond control-flow pattern. The incoming instruction knows the |
| 300 | // destination vreg to set, the condition code register to branch on, the |
| 301 | // true/false values to select between, and a branch opcode to use. |
| 302 | const BasicBlock *LLVM_BB = BB->getBasicBlock(); |
| 303 | MachineFunction::iterator It = BB; |
| 304 | ++It; |
| 305 | |
| 306 | // thisMBB: |
| 307 | // ... |
| 308 | // TrueVal = ... |
| 309 | // setcc r1, r2, r3 |
| 310 | // bNE r1, r0, copy1MBB |
| 311 | // fallthrough --> copy0MBB |
| 312 | MachineBasicBlock *thisMBB = BB; |
| 313 | MachineFunction *F = BB->getParent(); |
| 314 | MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 315 | MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 316 | |
| 317 | // Emit the right instruction according to the type of the operands compared |
| 318 | if (isFPCmp) { |
| 319 | // Find the condiction code present in the setcc operation. |
| 320 | Mips::CondCode CC = (Mips::CondCode)MI->getOperand(4).getImm(); |
| 321 | // Get the branch opcode from the branch code. |
| 322 | unsigned Opc = FPBranchCodeToOpc(GetFPBranchCodeFromCond(CC)); |
| 323 | BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB); |
| 324 | } else |
| 325 | BuildMI(BB, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg()) |
| 326 | .addReg(Mips::ZERO).addMBB(sinkMBB); |
| 327 | |
| 328 | F->insert(It, copy0MBB); |
| 329 | F->insert(It, sinkMBB); |
| 330 | // Update machine-CFG edges by first adding all successors of the current |
| 331 | // block to the new block which will contain the Phi node for the select. |
| 332 | for(MachineBasicBlock::succ_iterator i = BB->succ_begin(), |
| 333 | e = BB->succ_end(); i != e; ++i) |
| 334 | sinkMBB->addSuccessor(*i); |
| 335 | // Next, remove all successors of the current block, and add the true |
| 336 | // and fallthrough blocks as its successors. |
| 337 | while(!BB->succ_empty()) |
| 338 | BB->removeSuccessor(BB->succ_begin()); |
| 339 | BB->addSuccessor(copy0MBB); |
| 340 | BB->addSuccessor(sinkMBB); |
| 341 | |
| 342 | // copy0MBB: |
| 343 | // %FalseValue = ... |
| 344 | // # fallthrough to sinkMBB |
| 345 | BB = copy0MBB; |
| 346 | |
| 347 | // Update machine-CFG edges |
| 348 | BB->addSuccessor(sinkMBB); |
| 349 | |
| 350 | // sinkMBB: |
| 351 | // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] |
| 352 | // ... |
| 353 | BB = sinkMBB; |
| 354 | BuildMI(BB, TII->get(Mips::PHI), MI->getOperand(0).getReg()) |
| 355 | .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB) |
| 356 | .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB); |
| 357 | |
| 358 | F->DeleteMachineInstr(MI); // The pseudo instruction is gone now. |
| 359 | return BB; |
| 360 | } |
| 361 | } |
| 362 | } |
| 363 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 364 | //===----------------------------------------------------------------------===// |
| 365 | // Misc Lower Operation implementation |
| 366 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 97843cd | 2008-07-29 19:29:50 +0000 | [diff] [blame] | 367 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 368 | SDValue MipsTargetLowering:: |
Bruno Cardoso Lopes | 7da151c | 2008-08-07 19:08:11 +0000 | [diff] [blame] | 369 | LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) |
| 370 | { |
| 371 | SDValue Chain = Op.getOperand(0); |
| 372 | SDValue Size = Op.getOperand(1); |
| 373 | |
| 374 | // Get a reference from Mips stack pointer |
| 375 | SDValue StackPointer = DAG.getCopyFromReg(Chain, Mips::SP, MVT::i32); |
| 376 | |
| 377 | // Subtract the dynamic size from the actual stack size to |
| 378 | // obtain the new stack size. |
| 379 | SDValue Sub = DAG.getNode(ISD::SUB, MVT::i32, StackPointer, Size); |
| 380 | |
| 381 | // The Sub result contains the new stack start address, so it |
| 382 | // must be placed in the stack pointer register. |
| 383 | Chain = DAG.getCopyToReg(StackPointer.getValue(1), Mips::SP, Sub); |
| 384 | |
| 385 | // This node always has two return values: a new stack pointer |
| 386 | // value and a chain |
| 387 | SDValue Ops[2] = { Sub, Chain }; |
| 388 | return DAG.getMergeValues(Ops, 2); |
| 389 | } |
| 390 | |
| 391 | SDValue MipsTargetLowering:: |
Bruno Cardoso Lopes | 1906c5a | 2008-08-02 19:37:33 +0000 | [diff] [blame] | 392 | LowerANDOR(SDValue Op, SelectionDAG &DAG) |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 393 | { |
| 394 | SDValue LHS = Op.getOperand(0); |
| 395 | SDValue RHS = Op.getOperand(1); |
| 396 | |
| 397 | if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp) |
| 398 | return Op; |
| 399 | |
| 400 | SDValue True = DAG.getConstant(1, MVT::i32); |
| 401 | SDValue False = DAG.getConstant(0, MVT::i32); |
| 402 | |
| 403 | SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(), |
| 404 | LHS, True, False, LHS.getOperand(2)); |
| 405 | SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(), |
| 406 | RHS, True, False, RHS.getOperand(2)); |
| 407 | |
Bruno Cardoso Lopes | 1906c5a | 2008-08-02 19:37:33 +0000 | [diff] [blame] | 408 | return DAG.getNode(Op.getOpcode(), MVT::i32, LSEL, RSEL); |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | SDValue MipsTargetLowering:: |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 412 | LowerBRCOND(SDValue Op, SelectionDAG &DAG) |
| 413 | { |
| 414 | // The first operand is the chain, the second is the condition, the third is |
| 415 | // the block to branch to if the condition is true. |
| 416 | SDValue Chain = Op.getOperand(0); |
| 417 | SDValue Dest = Op.getOperand(2); |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 418 | |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 419 | if (Op.getOperand(1).getOpcode() != MipsISD::FPCmp) |
Bruno Cardoso Lopes | 4b877ca | 2008-07-30 17:06:13 +0000 | [diff] [blame] | 420 | return Op; |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 421 | |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 422 | SDValue CondRes = Op.getOperand(1); |
| 423 | SDValue CCNode = CondRes.getOperand(2); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame^] | 424 | Mips::CondCode CC = |
| 425 | (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getZExtValue(); |
Bruno Cardoso Lopes | 85e31e3 | 2008-07-28 19:11:24 +0000 | [diff] [blame] | 426 | SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32); |
| 427 | |
| 428 | return DAG.getNode(MipsISD::FPBrcond, Op.getValueType(), Chain, BrCode, |
| 429 | Dest, CondRes); |
| 430 | } |
| 431 | |
| 432 | SDValue MipsTargetLowering:: |
| 433 | LowerSETCC(SDValue Op, SelectionDAG &DAG) |
| 434 | { |
| 435 | // The operands to this are the left and right operands to compare (ops #0, |
| 436 | // and #1) and the condition code to compare them with (op #2) as a |
| 437 | // CondCodeSDNode. |
| 438 | SDValue LHS = Op.getOperand(0); |
| 439 | SDValue RHS = Op.getOperand(1); |
| 440 | |
| 441 | ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get(); |
| 442 | |
| 443 | return DAG.getNode(MipsISD::FPCmp, Op.getValueType(), LHS, RHS, |
| 444 | DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32)); |
| 445 | } |
| 446 | |
| 447 | SDValue MipsTargetLowering:: |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 448 | LowerSELECT(SDValue Op, SelectionDAG &DAG) |
| 449 | { |
| 450 | SDValue Cond = Op.getOperand(0); |
| 451 | SDValue True = Op.getOperand(1); |
| 452 | SDValue False = Op.getOperand(2); |
| 453 | |
Bruno Cardoso Lopes | 739e441 | 2008-08-13 07:13:40 +0000 | [diff] [blame] | 454 | // if the incomming condition comes from a integer compare, the select |
| 455 | // operation must be SelectCC or a conditional move if the subtarget |
| 456 | // supports it. |
| 457 | if (Cond.getOpcode() != MipsISD::FPCmp) { |
| 458 | if (Subtarget->hasCondMov() && !True.getValueType().isFloatingPoint()) |
| 459 | return Op; |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 460 | return DAG.getNode(MipsISD::SelectCC, True.getValueType(), |
| 461 | Cond, True, False); |
Bruno Cardoso Lopes | 739e441 | 2008-08-13 07:13:40 +0000 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | // if the incomming condition comes from fpcmp, the select |
| 465 | // operation must use FPSelectCC. |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 466 | SDValue CCNode = Cond.getOperand(2); |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 467 | return DAG.getNode(MipsISD::FPSelectCC, True.getValueType(), |
Bruno Cardoso Lopes | 7728377 | 2008-07-31 18:31:28 +0000 | [diff] [blame] | 468 | Cond, True, False, CCNode); |
Bruno Cardoso Lopes | 6d399bd | 2008-07-29 19:05:28 +0000 | [diff] [blame] | 469 | } |
| 470 | |
| 471 | SDValue MipsTargetLowering:: |
Bruno Cardoso Lopes | 97843cd | 2008-07-29 19:29:50 +0000 | [diff] [blame] | 472 | LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) |
| 473 | { |
| 474 | GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); |
| 475 | SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32); |
| 476 | |
| 477 | if (!Subtarget->hasABICall()) { |
Bruno Cardoso Lopes | 97843cd | 2008-07-29 19:29:50 +0000 | [diff] [blame] | 478 | const MVT *VTs = DAG.getNodeValueTypes(MVT::i32); |
| 479 | SDValue Ops[] = { GA }; |
Bruno Cardoso Lopes | 4b877ca | 2008-07-30 17:06:13 +0000 | [diff] [blame] | 480 | // %gp_rel relocation |
| 481 | if (!isa<Function>(GV) && IsGlobalInSmallSection(GV)) { |
Bruno Cardoso Lopes | 97843cd | 2008-07-29 19:29:50 +0000 | [diff] [blame] | 482 | SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, VTs, 1, Ops, 1); |
| 483 | SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32); |
| 484 | return DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode); |
| 485 | } |
| 486 | // %hi/%lo relocation |
| 487 | SDValue HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1); |
| 488 | SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA); |
| 489 | return DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo); |
| 490 | |
| 491 | } else { // Abicall relocations, TODO: make this cleaner. |
| 492 | SDValue ResNode = DAG.getLoad(MVT::i32, DAG.getEntryNode(), GA, NULL, 0); |
| 493 | // On functions and global targets not internal linked only |
| 494 | // a load from got/GP is necessary for PIC to work. |
| 495 | if (!GV->hasInternalLinkage() || isa<Function>(GV)) |
| 496 | return ResNode; |
| 497 | SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA); |
| 498 | return DAG.getNode(ISD::ADD, MVT::i32, ResNode, Lo); |
| 499 | } |
| 500 | |
| 501 | assert(0 && "Dont know how to handle GlobalAddress"); |
| 502 | return SDValue(0,0); |
| 503 | } |
| 504 | |
| 505 | SDValue MipsTargetLowering:: |
| 506 | LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) |
| 507 | { |
| 508 | assert(0 && "TLS not implemented for MIPS."); |
| 509 | return SDValue(); // Not reached |
| 510 | } |
| 511 | |
| 512 | SDValue MipsTargetLowering:: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 513 | LowerJumpTable(SDValue Op, SelectionDAG &DAG) |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 514 | { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 515 | SDValue ResNode; |
| 516 | SDValue HiPart; |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 517 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 518 | MVT PtrVT = Op.getValueType(); |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 519 | JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 520 | SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT); |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 521 | |
| 522 | if (getTargetMachine().getRelocationModel() != Reloc::PIC_) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 523 | const MVT *VTs = DAG.getNodeValueTypes(MVT::i32); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 524 | SDValue Ops[] = { JTI }; |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 525 | HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1); |
| 526 | } else // Emit Load from Global Pointer |
| 527 | HiPart = DAG.getLoad(MVT::i32, DAG.getEntryNode(), JTI, NULL, 0); |
| 528 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 529 | SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, JTI); |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 530 | ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo); |
| 531 | |
| 532 | return ResNode; |
| 533 | } |
| 534 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 535 | SDValue MipsTargetLowering:: |
| 536 | LowerConstantPool(SDValue Op, SelectionDAG &DAG) |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 537 | { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 538 | SDValue ResNode; |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 539 | ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op); |
| 540 | Constant *C = N->getConstVal(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 541 | SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment()); |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 542 | |
| 543 | // gp_rel relocation |
Bruno Cardoso Lopes | f33bc43 | 2008-07-28 19:26:25 +0000 | [diff] [blame] | 544 | // FIXME: we should reference the constant pool using small data sections, |
| 545 | // but the asm printer currently doens't support this feature without |
| 546 | // hacking it. This feature should come soon so we can uncomment the |
| 547 | // stuff below. |
| 548 | //if (!Subtarget->hasABICall() && |
| 549 | // IsInSmallSection(getTargetData()->getABITypeSize(C->getType()))) { |
| 550 | // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP); |
| 551 | // SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32); |
| 552 | // ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode); |
| 553 | //} else { // %hi/%lo relocation |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 554 | SDValue HiPart = DAG.getNode(MipsISD::Hi, MVT::i32, CP); |
| 555 | SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, CP); |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 556 | ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo); |
Bruno Cardoso Lopes | f33bc43 | 2008-07-28 19:26:25 +0000 | [diff] [blame] | 557 | //} |
Bruno Cardoso Lopes | 92e87f2 | 2008-07-23 16:01:50 +0000 | [diff] [blame] | 558 | |
| 559 | return ResNode; |
Bruno Cardoso Lopes | 97c2537 | 2008-07-09 04:15:08 +0000 | [diff] [blame] | 560 | } |
| 561 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 562 | //===----------------------------------------------------------------------===// |
| 563 | // Calling Convention Implementation |
| 564 | // |
| 565 | // The lower operations present on calling convention works on this order: |
| 566 | // LowerCALL (virt regs --> phys regs, virt regs --> stack) |
| 567 | // LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs) |
| 568 | // LowerRET (virt regs --> phys regs) |
| 569 | // LowerCALL (phys regs --> virt regs) |
| 570 | // |
| 571 | //===----------------------------------------------------------------------===// |
| 572 | |
| 573 | #include "MipsGenCallingConv.inc" |
| 574 | |
| 575 | //===----------------------------------------------------------------------===// |
| 576 | // CALL Calling Convention Implementation |
| 577 | //===----------------------------------------------------------------------===// |
| 578 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 579 | /// LowerCCCCallTo - functions arguments are copied from virtual |
| 580 | /// regs to (physical regs)/(stack frame), CALLSEQ_START and |
| 581 | /// CALLSEQ_END are emitted. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 582 | /// TODO: isVarArg, isTailCall. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 583 | SDValue MipsTargetLowering:: |
Bruno Cardoso Lopes | f7f3b50 | 2008-08-04 07:12:52 +0000 | [diff] [blame] | 584 | LowerCALL(SDValue Op, SelectionDAG &DAG) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 585 | { |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 586 | MachineFunction &MF = DAG.getMachineFunction(); |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 587 | |
Bruno Cardoso Lopes | f7f3b50 | 2008-08-04 07:12:52 +0000 | [diff] [blame] | 588 | SDValue Chain = Op.getOperand(0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 589 | SDValue Callee = Op.getOperand(4); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame^] | 590 | bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0; |
Bruno Cardoso Lopes | f7f3b50 | 2008-08-04 07:12:52 +0000 | [diff] [blame] | 591 | unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv(); |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 592 | |
| 593 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 594 | |
| 595 | // Analyze operands of the call, assigning locations to each operand. |
| 596 | SmallVector<CCValAssign, 16> ArgLocs; |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 597 | CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs); |
| 598 | |
Bruno Cardoso Lopes | b27cb55 | 2008-07-15 02:03:36 +0000 | [diff] [blame] | 599 | // To meet O32 ABI, Mips must always allocate 16 bytes on |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 600 | // the stack (even if less than 4 are used as arguments) |
Bruno Cardoso Lopes | b27cb55 | 2008-07-15 02:03:36 +0000 | [diff] [blame] | 601 | if (Subtarget->isABI_O32()) { |
| 602 | int VTsize = MVT(MVT::i32).getSizeInBits()/8; |
| 603 | MFI->CreateFixedObject(VTsize, (VTsize*3)); |
| 604 | } |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 605 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 606 | CCInfo.AnalyzeCallOperands(Op.getNode(), CC_Mips); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 607 | |
| 608 | // Get a count of how many bytes are to be pushed on the stack. |
| 609 | unsigned NumBytes = CCInfo.getNextStackOffset(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 610 | Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes, |
| 611 | getPointerTy())); |
| 612 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 613 | // With EABI is it possible to have 16 args on registers. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 614 | SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass; |
| 615 | SmallVector<SDValue, 8> MemOpChains; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 616 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 617 | // First/LastArgStackLoc contains the first/last |
| 618 | // "at stack" argument location. |
| 619 | int LastArgStackLoc = 0; |
| 620 | unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 621 | |
| 622 | // Walk the register/memloc assignments, inserting copies/loads. |
| 623 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 624 | CCValAssign &VA = ArgLocs[i]; |
| 625 | |
| 626 | // Arguments start after the 5 first operands of ISD::CALL |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 627 | SDValue Arg = Op.getOperand(5+2*VA.getValNo()); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 628 | |
| 629 | // Promote the value if needed. |
| 630 | switch (VA.getLocInfo()) { |
Chris Lattner | e0b1215 | 2008-03-17 06:57:02 +0000 | [diff] [blame] | 631 | default: assert(0 && "Unknown loc info!"); |
| 632 | case CCValAssign::Full: break; |
| 633 | case CCValAssign::SExt: |
| 634 | Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg); |
| 635 | break; |
| 636 | case CCValAssign::ZExt: |
| 637 | Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg); |
| 638 | break; |
| 639 | case CCValAssign::AExt: |
| 640 | Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg); |
| 641 | break; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 644 | // Arguments that can be passed on register must be kept at |
| 645 | // RegsToPass vector |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 646 | if (VA.isRegLoc()) { |
| 647 | RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); |
Chris Lattner | e0b1215 | 2008-03-17 06:57:02 +0000 | [diff] [blame] | 648 | continue; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 649 | } |
Chris Lattner | e0b1215 | 2008-03-17 06:57:02 +0000 | [diff] [blame] | 650 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 651 | // Register cant get to this point... |
Chris Lattner | e0b1215 | 2008-03-17 06:57:02 +0000 | [diff] [blame] | 652 | assert(VA.isMemLoc()); |
| 653 | |
| 654 | // Create the frame index object for this incoming parameter |
| 655 | // This guarantees that when allocating Local Area the firsts |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 656 | // 16 bytes which are alwayes reserved won't be overwritten |
| 657 | // if O32 ABI is used. For EABI the first address is zero. |
| 658 | LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset()); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 659 | int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8, |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 660 | LastArgStackLoc); |
Chris Lattner | e0b1215 | 2008-03-17 06:57:02 +0000 | [diff] [blame] | 661 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 662 | SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy()); |
Chris Lattner | e0b1215 | 2008-03-17 06:57:02 +0000 | [diff] [blame] | 663 | |
| 664 | // emit ISD::STORE whichs stores the |
| 665 | // parameter value to a stack Location |
| 666 | MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0)); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 667 | } |
| 668 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 669 | // Transform all store nodes into one single node because all store |
| 670 | // nodes are independent of each other. |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 671 | if (!MemOpChains.empty()) |
| 672 | Chain = DAG.getNode(ISD::TokenFactor, MVT::Other, |
| 673 | &MemOpChains[0], MemOpChains.size()); |
| 674 | |
| 675 | // Build a sequence of copy-to-reg nodes chained together with token |
| 676 | // chain and flag operands which copy the outgoing args into registers. |
| 677 | // The InFlag in necessary since all emited instructions must be |
| 678 | // stuck together. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 679 | SDValue InFlag; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 680 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
| 681 | Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, |
| 682 | RegsToPass[i].second, InFlag); |
| 683 | InFlag = Chain.getValue(1); |
| 684 | } |
| 685 | |
Bruno Cardoso Lopes | 8262df3 | 2007-10-09 03:15:11 +0000 | [diff] [blame] | 686 | // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every |
| 687 | // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 688 | // node so that legalize doesn't hack it. |
| 689 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 690 | Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy()); |
Bruno Cardoso Lopes | 8262df3 | 2007-10-09 03:15:11 +0000 | [diff] [blame] | 691 | else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 692 | Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy()); |
| 693 | |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 694 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 695 | // MipsJmpLink = #chain, #target_address, #opt_in_flags... |
| 696 | // = Chain, Callee, Reg#1, Reg#2, ... |
| 697 | // |
| 698 | // Returns a chain & a flag for retval copy to use. |
| 699 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 700 | SmallVector<SDValue, 8> Ops; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 701 | Ops.push_back(Chain); |
| 702 | Ops.push_back(Callee); |
| 703 | |
| 704 | // Add argument registers to the end of the list so that they are |
| 705 | // known live into the call. |
| 706 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) |
| 707 | Ops.push_back(DAG.getRegister(RegsToPass[i].first, |
| 708 | RegsToPass[i].second.getValueType())); |
| 709 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 710 | if (InFlag.getNode()) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 711 | Ops.push_back(InFlag); |
| 712 | |
| 713 | Chain = DAG.getNode(MipsISD::JmpLink, NodeTys, &Ops[0], Ops.size()); |
| 714 | InFlag = Chain.getValue(1); |
| 715 | |
Bruno Cardoso Lopes | d2947ee | 2008-06-04 01:45:25 +0000 | [diff] [blame] | 716 | // Create the CALLSEQ_END node. |
Bruno Cardoso Lopes | bdbb750 | 2008-06-01 03:49:39 +0000 | [diff] [blame] | 717 | Chain = DAG.getCALLSEQ_END(Chain, |
| 718 | DAG.getConstant(NumBytes, getPointerTy()), |
| 719 | DAG.getConstant(0, getPointerTy()), |
| 720 | InFlag); |
| 721 | InFlag = Chain.getValue(1); |
| 722 | |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 723 | // Create a stack location to hold GP when PIC is used. This stack |
| 724 | // location is used on function prologue to save GP and also after all |
| 725 | // emited CALL's to restore GP. |
| 726 | if (getTargetMachine().getRelocationModel() == Reloc::PIC_) { |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 727 | // Function can have an arbitrary number of calls, so |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 728 | // hold the LastArgStackLoc with the biggest offset. |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 729 | int FI; |
| 730 | MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>(); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 731 | if (LastArgStackLoc >= MipsFI->getGPStackOffset()) { |
| 732 | LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 733 | // Create the frame index only once. SPOffset here can be anything |
| 734 | // (this will be fixed on processFunctionBeforeFrameFinalized) |
| 735 | if (MipsFI->getGPStackOffset() == -1) { |
| 736 | FI = MFI->CreateFixedObject(4, 0); |
| 737 | MipsFI->setGPFI(FI); |
| 738 | } |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 739 | MipsFI->setGPStackOffset(LastArgStackLoc); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 740 | } |
| 741 | |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 742 | // Reload GP value. |
| 743 | FI = MipsFI->getGPFI(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 744 | SDValue FIN = DAG.getFrameIndex(FI,getPointerTy()); |
| 745 | SDValue GPLoad = DAG.getLoad(MVT::i32, Chain, FIN, NULL, 0); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 746 | Chain = GPLoad.getValue(1); |
| 747 | Chain = DAG.getCopyToReg(Chain, DAG.getRegister(Mips::GP, MVT::i32), |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 748 | GPLoad, SDValue(0,0)); |
Bruno Cardoso Lopes | bdbb750 | 2008-06-01 03:49:39 +0000 | [diff] [blame] | 749 | InFlag = Chain.getValue(1); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 750 | } |
| 751 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 752 | // Handle result values, copying them out of physregs into vregs that we |
| 753 | // return. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 754 | return SDValue(LowerCallResult(Chain, InFlag, Op.getNode(), CC, DAG), Op.getResNo()); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | /// LowerCallResult - Lower the result values of an ISD::CALL into the |
| 758 | /// appropriate copies out of appropriate physical registers. This assumes that |
| 759 | /// Chain/InFlag are the input chain/flag to use, and that TheCall is the call |
| 760 | /// being lowered. Returns a SDNode with the same number of values as the |
| 761 | /// ISD::CALL. |
| 762 | SDNode *MipsTargetLowering:: |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 763 | LowerCallResult(SDValue Chain, SDValue InFlag, SDNode *TheCall, |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 764 | unsigned CallingConv, SelectionDAG &DAG) { |
| 765 | |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame^] | 766 | bool isVarArg = |
| 767 | cast<ConstantSDNode>(TheCall->getOperand(2))->getZExtValue() != 0; |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 768 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 769 | // Assign locations to each value returned by this call. |
| 770 | SmallVector<CCValAssign, 16> RVLocs; |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 771 | CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs); |
| 772 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 773 | CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 774 | SmallVector<SDValue, 8> ResultVals; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 775 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 776 | // Copy all of the result registers out of their specified physreg. |
| 777 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 778 | Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(), |
| 779 | RVLocs[i].getValVT(), InFlag).getValue(1); |
| 780 | InFlag = Chain.getValue(2); |
| 781 | ResultVals.push_back(Chain.getValue(0)); |
| 782 | } |
| 783 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 784 | ResultVals.push_back(Chain); |
Bruno Cardoso Lopes | c7db561 | 2007-11-05 03:02:32 +0000 | [diff] [blame] | 785 | |
| 786 | // Merge everything together with a MERGE_VALUES node. |
Duncan Sands | f951620 | 2008-06-30 10:19:09 +0000 | [diff] [blame] | 787 | return DAG.getMergeValues(TheCall->getVTList(), &ResultVals[0], |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 788 | ResultVals.size()).getNode(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 789 | } |
| 790 | |
| 791 | //===----------------------------------------------------------------------===// |
| 792 | // FORMAL_ARGUMENTS Calling Convention Implementation |
| 793 | //===----------------------------------------------------------------------===// |
| 794 | |
Bruno Cardoso Lopes | f7f3b50 | 2008-08-04 07:12:52 +0000 | [diff] [blame] | 795 | /// LowerFORMAL_ARGUMENTS - transform physical registers into |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 796 | /// virtual registers and generate load operations for |
| 797 | /// arguments places on the stack. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 798 | /// TODO: isVarArg |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 799 | SDValue MipsTargetLowering:: |
Bruno Cardoso Lopes | f7f3b50 | 2008-08-04 07:12:52 +0000 | [diff] [blame] | 800 | LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 801 | { |
Bruno Cardoso Lopes | f7f3b50 | 2008-08-04 07:12:52 +0000 | [diff] [blame] | 802 | SDValue Root = Op.getOperand(0); |
| 803 | MachineFunction &MF = DAG.getMachineFunction(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 804 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Bruno Cardoso Lopes | a2b1bb5 | 2007-08-28 05:08:16 +0000 | [diff] [blame] | 805 | MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>(); |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 806 | |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame^] | 807 | bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0; |
Bruno Cardoso Lopes | f7f3b50 | 2008-08-04 07:12:52 +0000 | [diff] [blame] | 808 | unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv(); |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 809 | |
| 810 | unsigned StackReg = MF.getTarget().getRegisterInfo()->getFrameRegister(MF); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 811 | |
Bruno Cardoso Lopes | 91fd532 | 2008-07-21 18:52:34 +0000 | [diff] [blame] | 812 | // GP must be live into PIC and non-PIC call target. |
| 813 | AddLiveIn(MF, Mips::GP, Mips::CPURegsRegisterClass); |
Bruno Cardoso Lopes | 753a987 | 2007-11-12 19:49:57 +0000 | [diff] [blame] | 814 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 815 | // Assign locations to all of the incoming arguments. |
| 816 | SmallVector<CCValAssign, 16> ArgLocs; |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 817 | CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs); |
| 818 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 819 | CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_Mips); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 820 | SmallVector<SDValue, 16> ArgValues; |
| 821 | SDValue StackPtr; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 822 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 823 | unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16); |
| 824 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 825 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 826 | |
| 827 | CCValAssign &VA = ArgLocs[i]; |
| 828 | |
| 829 | // Arguments stored on registers |
| 830 | if (VA.isRegLoc()) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 831 | MVT RegVT = VA.getLocVT(); |
Bill Wendling | 06b8c19 | 2008-07-09 05:55:53 +0000 | [diff] [blame] | 832 | TargetRegisterClass *RC = 0; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 833 | |
| 834 | if (RegVT == MVT::i32) |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 835 | RC = Mips::CPURegsRegisterClass; |
| 836 | else if (RegVT == MVT::f32) { |
| 837 | if (Subtarget->isSingleFloat()) |
| 838 | RC = Mips::FGR32RegisterClass; |
| 839 | else |
| 840 | RC = Mips::AFGR32RegisterClass; |
| 841 | } else if (RegVT == MVT::f64) { |
| 842 | if (!Subtarget->isSingleFloat()) |
| 843 | RC = Mips::AFGR64RegisterClass; |
| 844 | } else |
| 845 | assert(0 && "RegVT not supported by FORMAL_ARGUMENTS Lowering"); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 846 | |
| 847 | // Transform the arguments stored on |
| 848 | // physical registers into virtual ones |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 849 | unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 850 | SDValue ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 851 | |
| 852 | // If this is an 8 or 16-bit value, it is really passed promoted |
| 853 | // to 32 bits. Insert an assert[sz]ext to capture this, then |
| 854 | // truncate to the right size. |
| 855 | if (VA.getLocInfo() == CCValAssign::SExt) |
| 856 | ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue, |
| 857 | DAG.getValueType(VA.getValVT())); |
| 858 | else if (VA.getLocInfo() == CCValAssign::ZExt) |
| 859 | ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue, |
| 860 | DAG.getValueType(VA.getValVT())); |
| 861 | |
| 862 | if (VA.getLocInfo() != CCValAssign::Full) |
| 863 | ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue); |
| 864 | |
| 865 | ArgValues.push_back(ArgValue); |
| 866 | |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 867 | // To meet ABI, when VARARGS are passed on registers, the registers |
Bruno Cardoso Lopes | a2b1bb5 | 2007-08-28 05:08:16 +0000 | [diff] [blame] | 868 | // must have their values written to the caller stack frame. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 869 | if ((isVarArg) && (Subtarget->isABI_O32())) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 870 | if (StackPtr.getNode() == 0) |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 871 | StackPtr = DAG.getRegister(StackReg, getPointerTy()); |
| 872 | |
Bruno Cardoso Lopes | a2b1bb5 | 2007-08-28 05:08:16 +0000 | [diff] [blame] | 873 | // The stack pointer offset is relative to the caller stack frame. |
| 874 | // Since the real stack size is unknown here, a negative SPOffset |
| 875 | // is used so there's a way to adjust these offsets when the stack |
| 876 | // size get known (on EliminateFrameIndex). A dummy SPOffset is |
| 877 | // used instead of a direct negative address (which is recorded to |
| 878 | // be used on emitPrologue) to avoid mis-calc of the first stack |
| 879 | // offset on PEI::calculateFrameObjectOffsets. |
| 880 | // Arguments are always 32-bit. |
| 881 | int FI = MFI->CreateFixedObject(4, 0); |
| 882 | MipsFI->recordStoreVarArgsFI(FI, -(4+(i*4))); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 883 | SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy()); |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 884 | |
| 885 | // emit ISD::STORE whichs stores the |
| 886 | // parameter value to a stack Location |
| 887 | ArgValues.push_back(DAG.getStore(Root, ArgValue, PtrOff, NULL, 0)); |
| 888 | } |
| 889 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 890 | } else { // VA.isRegLoc() |
| 891 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 892 | // sanity check |
| 893 | assert(VA.isMemLoc()); |
| 894 | |
Bruno Cardoso Lopes | a2b1bb5 | 2007-08-28 05:08:16 +0000 | [diff] [blame] | 895 | // The stack pointer offset is relative to the caller stack frame. |
| 896 | // Since the real stack size is unknown here, a negative SPOffset |
| 897 | // is used so there's a way to adjust these offsets when the stack |
| 898 | // size get known (on EliminateFrameIndex). A dummy SPOffset is |
| 899 | // used instead of a direct negative address (which is recorded to |
| 900 | // be used on emitPrologue) to avoid mis-calc of the first stack |
| 901 | // offset on PEI::calculateFrameObjectOffsets. |
| 902 | // Arguments are always 32-bit. |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 903 | unsigned ArgSize = VA.getLocVT().getSizeInBits()/8; |
| 904 | int FI = MFI->CreateFixedObject(ArgSize, 0); |
| 905 | MipsFI->recordLoadArgsFI(FI, -(ArgSize+ |
| 906 | (FirstStackArgLoc + VA.getLocMemOffset()))); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 907 | |
| 908 | // Create load nodes to retrieve arguments from the stack |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 909 | SDValue FIN = DAG.getFrameIndex(FI, getPointerTy()); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 910 | ArgValues.push_back(DAG.getLoad(VA.getValVT(), Root, FIN, NULL, 0)); |
| 911 | } |
| 912 | } |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 913 | |
| 914 | // The mips ABIs for returning structs by value requires that we copy |
| 915 | // the sret argument into $v0 for the return. Save the argument into |
| 916 | // a virtual register so that we can access it from the return points. |
| 917 | if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) { |
| 918 | unsigned Reg = MipsFI->getSRetReturnReg(); |
| 919 | if (!Reg) { |
| 920 | Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32)); |
| 921 | MipsFI->setSRetReturnReg(Reg); |
| 922 | } |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 923 | SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), Reg, ArgValues[0]); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 924 | Root = DAG.getNode(ISD::TokenFactor, MVT::Other, Copy, Root); |
| 925 | } |
| 926 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 927 | ArgValues.push_back(Root); |
| 928 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 929 | // Return the new list of results. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 930 | return DAG.getMergeValues(Op.getNode()->getVTList(), &ArgValues[0], |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 931 | ArgValues.size()).getValue(Op.getResNo()); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | //===----------------------------------------------------------------------===// |
| 935 | // Return Value Calling Convention Implementation |
| 936 | //===----------------------------------------------------------------------===// |
| 937 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 938 | SDValue MipsTargetLowering:: |
| 939 | LowerRET(SDValue Op, SelectionDAG &DAG) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 940 | { |
| 941 | // CCValAssign - represent the assignment of |
| 942 | // the return value to a location |
| 943 | SmallVector<CCValAssign, 16> RVLocs; |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 944 | unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv(); |
| 945 | bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg(); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 946 | |
| 947 | // CCState - Info about the registers and stack slot. |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 948 | CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 949 | |
| 950 | // Analize return values of ISD::RET |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 951 | CCInfo.AnalyzeReturn(Op.getNode(), RetCC_Mips); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 952 | |
| 953 | // If this is the first return lowered for this function, add |
| 954 | // the regs to the liveout set for the function. |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 955 | if (DAG.getMachineFunction().getRegInfo().liveout_empty()) { |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 956 | for (unsigned i = 0; i != RVLocs.size(); ++i) |
Bruno Cardoso Lopes | 2ab22d1 | 2007-07-11 23:16:16 +0000 | [diff] [blame] | 957 | if (RVLocs[i].isRegLoc()) |
Chris Lattner | 84bc542 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 958 | DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg()); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | // The chain is always operand #0 |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 962 | SDValue Chain = Op.getOperand(0); |
| 963 | SDValue Flag; |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 964 | |
| 965 | // Copy the result values into the output registers. |
| 966 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 967 | CCValAssign &VA = RVLocs[i]; |
| 968 | assert(VA.isRegLoc() && "Can only return in registers!"); |
| 969 | |
| 970 | // ISD::RET => ret chain, (regnum1,val1), ... |
| 971 | // So i*2+1 index only the regnums |
Bruno Cardoso Lopes | 8262df3 | 2007-10-09 03:15:11 +0000 | [diff] [blame] | 972 | Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), Op.getOperand(i*2+1), Flag); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 973 | |
| 974 | // guarantee that all emitted copies are |
| 975 | // stuck together, avoiding something bad |
| 976 | Flag = Chain.getValue(1); |
| 977 | } |
| 978 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 979 | // The mips ABIs for returning structs by value requires that we copy |
| 980 | // the sret argument into $v0 for the return. We saved the argument into |
| 981 | // a virtual register in the entry block, so now we copy the value out |
| 982 | // and into $v0. |
| 983 | if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) { |
| 984 | MachineFunction &MF = DAG.getMachineFunction(); |
| 985 | MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>(); |
| 986 | unsigned Reg = MipsFI->getSRetReturnReg(); |
| 987 | |
| 988 | if (!Reg) |
| 989 | assert(0 && "sret virtual register not created in the entry block"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 990 | SDValue Val = DAG.getCopyFromReg(Chain, Reg, getPointerTy()); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 991 | |
| 992 | Chain = DAG.getCopyToReg(Chain, Mips::V0, Val, Flag); |
| 993 | Flag = Chain.getValue(1); |
| 994 | } |
| 995 | |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 996 | // Return on Mips is always a "jr $ra" |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 997 | if (Flag.getNode()) |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 998 | return DAG.getNode(MipsISD::Ret, MVT::Other, |
Bruno Cardoso Lopes | 8262df3 | 2007-10-09 03:15:11 +0000 | [diff] [blame] | 999 | Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 1000 | else // Return Void |
| 1001 | return DAG.getNode(MipsISD::Ret, MVT::Other, |
Bruno Cardoso Lopes | 8262df3 | 2007-10-09 03:15:11 +0000 | [diff] [blame] | 1002 | Chain, DAG.getRegister(Mips::RA, MVT::i32)); |
Bruno Cardoso Lopes | 972f589 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 1003 | } |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1004 | |
| 1005 | //===----------------------------------------------------------------------===// |
| 1006 | // Mips Inline Assembly Support |
| 1007 | //===----------------------------------------------------------------------===// |
| 1008 | |
| 1009 | /// getConstraintType - Given a constraint letter, return the type of |
| 1010 | /// constraint it is for this target. |
| 1011 | MipsTargetLowering::ConstraintType MipsTargetLowering:: |
| 1012 | getConstraintType(const std::string &Constraint) const |
| 1013 | { |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1014 | // Mips specific constrainy |
| 1015 | // GCC config/mips/constraints.md |
| 1016 | // |
| 1017 | // 'd' : An address register. Equivalent to r |
| 1018 | // unless generating MIPS16 code. |
| 1019 | // 'y' : Equivalent to r; retained for |
| 1020 | // backwards compatibility. |
Bruno Cardoso Lopes | 7b76da1 | 2008-07-09 04:45:36 +0000 | [diff] [blame] | 1021 | // 'f' : Floating Point registers. |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1022 | if (Constraint.size() == 1) { |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1023 | switch (Constraint[0]) { |
| 1024 | default : break; |
| 1025 | case 'd': |
| 1026 | case 'y': |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1027 | case 'f': |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1028 | return C_RegisterClass; |
| 1029 | break; |
| 1030 | } |
| 1031 | } |
| 1032 | return TargetLowering::getConstraintType(Constraint); |
| 1033 | } |
| 1034 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1035 | /// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"), |
| 1036 | /// return a list of registers that can be used to satisfy the constraint. |
| 1037 | /// This should only be used for C_RegisterClass constraints. |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1038 | std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering:: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1039 | getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1040 | { |
| 1041 | if (Constraint.size() == 1) { |
| 1042 | switch (Constraint[0]) { |
| 1043 | case 'r': |
| 1044 | return std::make_pair(0U, Mips::CPURegsRegisterClass); |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1045 | case 'f': |
Duncan Sands | 1512642 | 2008-07-08 09:33:14 +0000 | [diff] [blame] | 1046 | if (VT == MVT::f32) { |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1047 | if (Subtarget->isSingleFloat()) |
| 1048 | return std::make_pair(0U, Mips::FGR32RegisterClass); |
| 1049 | else |
| 1050 | return std::make_pair(0U, Mips::AFGR32RegisterClass); |
Duncan Sands | 1512642 | 2008-07-08 09:33:14 +0000 | [diff] [blame] | 1051 | } |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1052 | if (VT == MVT::f64) |
| 1053 | if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit())) |
| 1054 | return std::make_pair(0U, Mips::AFGR64RegisterClass); |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1055 | } |
| 1056 | } |
| 1057 | return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); |
| 1058 | } |
| 1059 | |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1060 | /// Given a register class constraint, like 'r', if this corresponds directly |
| 1061 | /// to an LLVM register class, return a register of 0 and the register class |
| 1062 | /// pointer. |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1063 | std::vector<unsigned> MipsTargetLowering:: |
| 1064 | getRegClassForInlineAsmConstraint(const std::string &Constraint, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1065 | MVT VT) const |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1066 | { |
| 1067 | if (Constraint.size() != 1) |
| 1068 | return std::vector<unsigned>(); |
| 1069 | |
| 1070 | switch (Constraint[0]) { |
| 1071 | default : break; |
| 1072 | case 'r': |
| 1073 | // GCC Mips Constraint Letters |
| 1074 | case 'd': |
| 1075 | case 'y': |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1076 | return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3, |
| 1077 | Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1, |
| 1078 | Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7, |
| 1079 | Mips::T8, 0); |
| 1080 | |
| 1081 | case 'f': |
Duncan Sands | 1512642 | 2008-07-08 09:33:14 +0000 | [diff] [blame] | 1082 | if (VT == MVT::f32) { |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1083 | if (Subtarget->isSingleFloat()) |
| 1084 | return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5, |
| 1085 | Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11, |
| 1086 | Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24, |
| 1087 | Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29, |
| 1088 | Mips::F30, Mips::F31, 0); |
| 1089 | else |
| 1090 | return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8, |
| 1091 | Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26, |
| 1092 | Mips::F28, Mips::F30, 0); |
Duncan Sands | 1512642 | 2008-07-08 09:33:14 +0000 | [diff] [blame] | 1093 | } |
Bruno Cardoso Lopes | 225ca9c | 2008-07-05 19:05:21 +0000 | [diff] [blame] | 1094 | |
| 1095 | if (VT == MVT::f64) |
| 1096 | if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit())) |
| 1097 | return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4, |
| 1098 | Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13, |
| 1099 | Mips::D14, Mips::D15, 0); |
Bruno Cardoso Lopes | 84f47c5 | 2007-08-21 16:09:25 +0000 | [diff] [blame] | 1100 | } |
| 1101 | return std::vector<unsigned>(); |
| 1102 | } |