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