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