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