Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 1 | //===-- SparcISelLowering.cpp - Sparc DAG Lowering Implementation ---------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the interfaces that Sparc uses to lower LLVM code into a |
| 11 | // selection DAG. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "SparcISelLowering.h" |
| 16 | #include "SparcTargetMachine.h" |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 17 | #include "llvm/Function.h" |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 18 | #include "llvm/CodeGen/CallingConvLower.h" |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 19 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 20 | #include "llvm/CodeGen/MachineFunction.h" |
| 21 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
| 22 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 23 | #include "llvm/CodeGen/SelectionDAG.h" |
Anton Korobeynikov | 0eefda1 | 2008-10-10 20:28:10 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/VectorExtras.h" |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 25 | using namespace llvm; |
| 26 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 27 | |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | // Calling Convention Implementation |
| 30 | //===----------------------------------------------------------------------===// |
| 31 | |
| 32 | #include "SparcGenCallingConv.inc" |
| 33 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 34 | static SDValue LowerRET(SDValue Op, SelectionDAG &DAG) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 35 | // CCValAssign - represent the assignment of the return value to locations. |
| 36 | SmallVector<CCValAssign, 16> RVLocs; |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 37 | unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv(); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 38 | bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg(); |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 39 | DebugLoc dl = Op.getDebugLoc(); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 41 | // CCState - Info about the registers and stack slot. |
| 42 | CCState CCInfo(CC, isVarArg, DAG.getTarget(), RVLocs); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 43 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 44 | // Analize return values of ISD::RET |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 45 | CCInfo.AnalyzeReturn(Op.getNode(), RetCC_Sparc32); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 47 | // If this is the first return lowered for this function, add the regs to the |
| 48 | // liveout set for the function. |
| 49 | if (DAG.getMachineFunction().getRegInfo().liveout_empty()) { |
| 50 | for (unsigned i = 0; i != RVLocs.size(); ++i) |
| 51 | if (RVLocs[i].isRegLoc()) |
| 52 | DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg()); |
| 53 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 54 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 55 | SDValue Chain = Op.getOperand(0); |
| 56 | SDValue Flag; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 57 | |
| 58 | // Copy the result values into the output registers. |
| 59 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 60 | CCValAssign &VA = RVLocs[i]; |
| 61 | assert(VA.isRegLoc() && "Can only return in registers!"); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 62 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 63 | // ISD::RET => ret chain, (regnum1,val1), ... |
| 64 | // So i*2+1 index only the regnums. |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 65 | Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), |
| 66 | Op.getOperand(i*2+1), Flag); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 67 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 68 | // Guarantee that all emitted copies are stuck together with flags. |
| 69 | Flag = Chain.getValue(1); |
| 70 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 71 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 72 | if (Flag.getNode()) |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 73 | return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain, Flag); |
| 74 | return DAG.getNode(SPISD::RET_FLAG, dl, MVT::Other, Chain); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /// LowerArguments - V8 uses a very simple ABI, where all values are passed in |
| 78 | /// either one or two GPRs, including FP values. TODO: we should pass FP values |
| 79 | /// in FP registers for fastcc functions. |
Dan Gohman | a44b674 | 2008-06-30 20:31:15 +0000 | [diff] [blame] | 80 | void |
| 81 | SparcTargetLowering::LowerArguments(Function &F, SelectionDAG &DAG, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 82 | SmallVectorImpl<SDValue> &ArgValues, |
| 83 | DebugLoc dl) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 84 | MachineFunction &MF = DAG.getMachineFunction(); |
| 85 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 86 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 87 | static const unsigned ArgRegs[] = { |
| 88 | SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5 |
| 89 | }; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 90 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 91 | const unsigned *CurArgReg = ArgRegs, *ArgRegEnd = ArgRegs+6; |
| 92 | unsigned ArgOffset = 68; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 93 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 94 | SDValue Root = DAG.getRoot(); |
| 95 | std::vector<SDValue> OutChains; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 96 | |
| 97 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); I != E; ++I) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 98 | MVT ObjectVT = getValueType(I->getType()); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 99 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 100 | switch (ObjectVT.getSimpleVT()) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 101 | default: assert(0 && "Unhandled argument type!"); |
| 102 | case MVT::i1: |
| 103 | case MVT::i8: |
| 104 | case MVT::i16: |
| 105 | case MVT::i32: |
| 106 | if (I->use_empty()) { // Argument is dead. |
| 107 | if (CurArgReg < ArgRegEnd) ++CurArgReg; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 108 | ArgValues.push_back(DAG.getUNDEF(ObjectVT)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 109 | } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR |
| 110 | unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass); |
| 111 | MF.getRegInfo().addLiveIn(*CurArgReg++, VReg); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 112 | SDValue Arg = DAG.getCopyFromReg(Root, dl, VReg, MVT::i32); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 113 | if (ObjectVT != MVT::i32) { |
| 114 | unsigned AssertOp = ISD::AssertSext; |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 115 | Arg = DAG.getNode(AssertOp, dl, MVT::i32, Arg, |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 116 | DAG.getValueType(ObjectVT)); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 117 | Arg = DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, Arg); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 118 | } |
| 119 | ArgValues.push_back(Arg); |
| 120 | } else { |
| 121 | int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 122 | SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32); |
| 123 | SDValue Load; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 124 | if (ObjectVT == MVT::i32) { |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 125 | Load = DAG.getLoad(MVT::i32, dl, Root, FIPtr, NULL, 0); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 126 | } else { |
| 127 | ISD::LoadExtType LoadOp = ISD::SEXTLOAD; |
| 128 | |
| 129 | // Sparc is big endian, so add an offset based on the ObjectVT. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 130 | unsigned Offset = 4-std::max(1U, ObjectVT.getSizeInBits()/8); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 131 | FIPtr = DAG.getNode(ISD::ADD, dl, MVT::i32, FIPtr, |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 132 | DAG.getConstant(Offset, MVT::i32)); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 133 | Load = DAG.getExtLoad(LoadOp, dl, MVT::i32, Root, FIPtr, |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 134 | NULL, 0, ObjectVT); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 135 | Load = DAG.getNode(ISD::TRUNCATE, dl, ObjectVT, Load); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 136 | } |
| 137 | ArgValues.push_back(Load); |
| 138 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 139 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 140 | ArgOffset += 4; |
| 141 | break; |
| 142 | case MVT::f32: |
| 143 | if (I->use_empty()) { // Argument is dead. |
| 144 | if (CurArgReg < ArgRegEnd) ++CurArgReg; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 145 | ArgValues.push_back(DAG.getUNDEF(ObjectVT)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 146 | } else if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR |
| 147 | // FP value is passed in an integer register. |
| 148 | unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass); |
| 149 | MF.getRegInfo().addLiveIn(*CurArgReg++, VReg); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 150 | SDValue Arg = DAG.getCopyFromReg(Root, dl, VReg, MVT::i32); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 151 | |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 152 | Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Arg); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 153 | ArgValues.push_back(Arg); |
| 154 | } else { |
| 155 | int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 156 | SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 157 | SDValue Load = DAG.getLoad(MVT::f32, dl, Root, FIPtr, NULL, 0); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 158 | ArgValues.push_back(Load); |
| 159 | } |
| 160 | ArgOffset += 4; |
| 161 | break; |
| 162 | |
| 163 | case MVT::i64: |
| 164 | case MVT::f64: |
| 165 | if (I->use_empty()) { // Argument is dead. |
| 166 | if (CurArgReg < ArgRegEnd) ++CurArgReg; |
| 167 | if (CurArgReg < ArgRegEnd) ++CurArgReg; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 168 | ArgValues.push_back(DAG.getUNDEF(ObjectVT)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 169 | } else { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 170 | SDValue HiVal; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 171 | if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR |
| 172 | unsigned VRegHi = RegInfo.createVirtualRegister(&SP::IntRegsRegClass); |
| 173 | MF.getRegInfo().addLiveIn(*CurArgReg++, VRegHi); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 174 | HiVal = DAG.getCopyFromReg(Root, dl, VRegHi, MVT::i32); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 175 | } else { |
| 176 | int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 177 | SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 178 | HiVal = DAG.getLoad(MVT::i32, dl, Root, FIPtr, NULL, 0); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 179 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 180 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 181 | SDValue LoVal; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 182 | if (CurArgReg < ArgRegEnd) { // Lives in an incoming GPR |
| 183 | unsigned VRegLo = RegInfo.createVirtualRegister(&SP::IntRegsRegClass); |
| 184 | MF.getRegInfo().addLiveIn(*CurArgReg++, VRegLo); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 185 | LoVal = DAG.getCopyFromReg(Root, dl, VRegLo, MVT::i32); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 186 | } else { |
| 187 | int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset+4); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 188 | SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 189 | LoVal = DAG.getLoad(MVT::i32, dl, Root, FIPtr, NULL, 0); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 190 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 191 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 192 | // Compose the two halves together into an i64 unit. |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 193 | SDValue WholeValue = |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 194 | DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, LoVal, HiVal); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 195 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 196 | // If we want a double, do a bit convert. |
| 197 | if (ObjectVT == MVT::f64) |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 198 | WholeValue = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, WholeValue); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 199 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 200 | ArgValues.push_back(WholeValue); |
| 201 | } |
| 202 | ArgOffset += 8; |
| 203 | break; |
| 204 | } |
| 205 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 206 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 207 | // Store remaining ArgRegs to the stack if this is a varargs function. |
| 208 | if (F.isVarArg()) { |
| 209 | // Remember the vararg offset for the va_start implementation. |
| 210 | VarArgsFrameOffset = ArgOffset; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 211 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 212 | for (; CurArgReg != ArgRegEnd; ++CurArgReg) { |
| 213 | unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass); |
| 214 | MF.getRegInfo().addLiveIn(*CurArgReg, VReg); |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 215 | SDValue Arg = DAG.getCopyFromReg(DAG.getRoot(), dl, VReg, MVT::i32); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 216 | |
| 217 | int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 218 | SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 219 | |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 220 | OutChains.push_back(DAG.getStore(DAG.getRoot(), dl, Arg, FIPtr, NULL, 0)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 221 | ArgOffset += 4; |
| 222 | } |
| 223 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 224 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 225 | if (!OutChains.empty()) |
Dale Johannesen | 39355f9 | 2009-02-04 02:34:38 +0000 | [diff] [blame] | 226 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 227 | &OutChains[0], OutChains.size())); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 230 | static SDValue LowerCALL(SDValue Op, SelectionDAG &DAG) { |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 231 | CallSDNode *TheCall = cast<CallSDNode>(Op.getNode()); |
| 232 | unsigned CallingConv = TheCall->getCallingConv(); |
| 233 | SDValue Chain = TheCall->getChain(); |
| 234 | SDValue Callee = TheCall->getCallee(); |
| 235 | bool isVarArg = TheCall->isVarArg(); |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 236 | DebugLoc dl = TheCall->getDebugLoc(); |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 237 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 238 | #if 0 |
| 239 | // Analyze operands of the call, assigning locations to each operand. |
| 240 | SmallVector<CCValAssign, 16> ArgLocs; |
| 241 | CCState CCInfo(CallingConv, isVarArg, DAG.getTarget(), ArgLocs); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 242 | CCInfo.AnalyzeCallOperands(Op.getNode(), CC_Sparc32); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 243 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 244 | // Get the size of the outgoing arguments stack space requirement. |
| 245 | unsigned ArgsSize = CCInfo.getNextStackOffset(); |
| 246 | // FIXME: We can't use this until f64 is known to take two GPRs. |
| 247 | #else |
| 248 | (void)CC_Sparc32; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 249 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 250 | // Count the size of the outgoing arguments. |
| 251 | unsigned ArgsSize = 0; |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 252 | for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; ++i) { |
| 253 | switch (TheCall->getArg(i).getValueType().getSimpleVT()) { |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 254 | default: assert(0 && "Unknown value type!"); |
| 255 | case MVT::i1: |
| 256 | case MVT::i8: |
| 257 | case MVT::i16: |
| 258 | case MVT::i32: |
| 259 | case MVT::f32: |
| 260 | ArgsSize += 4; |
| 261 | break; |
| 262 | case MVT::i64: |
| 263 | case MVT::f64: |
| 264 | ArgsSize += 8; |
| 265 | break; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 266 | } |
| 267 | } |
| 268 | if (ArgsSize > 4*6) |
| 269 | ArgsSize -= 4*6; // Space for first 6 arguments is prereserved. |
| 270 | else |
| 271 | ArgsSize = 0; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 272 | #endif |
| 273 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 274 | // Keep stack frames 8-byte aligned. |
| 275 | ArgsSize = (ArgsSize+7) & ~7; |
| 276 | |
Chris Lattner | e563bbc | 2008-10-11 22:08:30 +0000 | [diff] [blame] | 277 | Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(ArgsSize, true)); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 278 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 279 | SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass; |
| 280 | SmallVector<SDValue, 8> MemOpChains; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 281 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 282 | #if 0 |
| 283 | // Walk the register/memloc assignments, inserting copies/loads. |
| 284 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 285 | CCValAssign &VA = ArgLocs[i]; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 286 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 287 | // Arguments start after the 5 first operands of ISD::CALL |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 288 | SDValue Arg = TheCall->getArg(i); |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 289 | |
| 290 | // Promote the value if needed. |
| 291 | switch (VA.getLocInfo()) { |
| 292 | default: assert(0 && "Unknown loc info!"); |
| 293 | case CCValAssign::Full: break; |
| 294 | case CCValAssign::SExt: |
| 295 | Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg); |
| 296 | break; |
| 297 | case CCValAssign::ZExt: |
| 298 | Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg); |
| 299 | break; |
| 300 | case CCValAssign::AExt: |
| 301 | Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg); |
| 302 | break; |
| 303 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 304 | |
| 305 | // Arguments that can be passed on register must be kept at |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 306 | // RegsToPass vector |
| 307 | if (VA.isRegLoc()) { |
| 308 | RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); |
| 309 | continue; |
| 310 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 311 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 312 | assert(VA.isMemLoc()); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 313 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 314 | // Create a store off the stack pointer for this argument. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 315 | SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32); |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 316 | // FIXME: VERIFY THAT 68 IS RIGHT. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 317 | SDValue PtrOff = DAG.getIntPtrConstant(VA.getLocMemOffset()+68); |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 318 | PtrOff = DAG.getNode(ISD::ADD, MVT::i32, StackPtr, PtrOff); |
| 319 | MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0)); |
| 320 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 321 | |
| 322 | #else |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 323 | static const unsigned ArgRegs[] = { |
| 324 | SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5 |
| 325 | }; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 326 | unsigned ArgOffset = 68; |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 327 | |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 328 | for (unsigned i = 0, e = TheCall->getNumArgs(); i != e; ++i) { |
| 329 | SDValue Val = TheCall->getArg(i); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 330 | MVT ObjectVT = Val.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 331 | SDValue ValToStore(0, 0); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 332 | unsigned ObjSize; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 333 | switch (ObjectVT.getSimpleVT()) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 334 | default: assert(0 && "Unhandled argument type!"); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 335 | case MVT::i32: |
| 336 | ObjSize = 4; |
| 337 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 338 | if (RegsToPass.size() >= 6) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 339 | ValToStore = Val; |
| 340 | } else { |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 341 | RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Val)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 342 | } |
| 343 | break; |
| 344 | case MVT::f32: |
| 345 | ObjSize = 4; |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 346 | if (RegsToPass.size() >= 6) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 347 | ValToStore = Val; |
| 348 | } else { |
| 349 | // Convert this to a FP value in an int reg. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 350 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Val); |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 351 | RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Val)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 352 | } |
| 353 | break; |
Duncan Sands | 8c0f244 | 2008-12-12 08:05:40 +0000 | [diff] [blame] | 354 | case MVT::f64: { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 355 | ObjSize = 8; |
Duncan Sands | 8c0f244 | 2008-12-12 08:05:40 +0000 | [diff] [blame] | 356 | if (RegsToPass.size() >= 6) { |
| 357 | ValToStore = Val; // Whole thing is passed in memory. |
| 358 | break; |
| 359 | } |
| 360 | |
| 361 | // Break into top and bottom parts by storing to the stack and loading |
| 362 | // out the parts as integers. Top part goes in a reg. |
| 363 | SDValue StackPtr = DAG.CreateStackTemporary(MVT::f64, MVT::i32); |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 364 | SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, |
| 365 | Val, StackPtr, NULL, 0); |
Duncan Sands | 8c0f244 | 2008-12-12 08:05:40 +0000 | [diff] [blame] | 366 | // Sparc is big-endian, so the high part comes first. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 367 | SDValue Hi = DAG.getLoad(MVT::i32, dl, Store, StackPtr, NULL, 0, 0); |
Duncan Sands | 8c0f244 | 2008-12-12 08:05:40 +0000 | [diff] [blame] | 368 | // Increment the pointer to the other half. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 369 | StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr, |
Duncan Sands | 8c0f244 | 2008-12-12 08:05:40 +0000 | [diff] [blame] | 370 | DAG.getIntPtrConstant(4)); |
| 371 | // Load the low part. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 372 | SDValue Lo = DAG.getLoad(MVT::i32, dl, Store, StackPtr, NULL, 0, 0); |
Duncan Sands | 8c0f244 | 2008-12-12 08:05:40 +0000 | [diff] [blame] | 373 | |
| 374 | RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Hi)); |
| 375 | |
| 376 | if (RegsToPass.size() >= 6) { |
| 377 | ValToStore = Lo; |
| 378 | ArgOffset += 4; |
| 379 | ObjSize = 4; |
| 380 | } else { |
| 381 | RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Lo)); |
| 382 | } |
| 383 | break; |
| 384 | } |
| 385 | case MVT::i64: { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 386 | ObjSize = 8; |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 387 | if (RegsToPass.size() >= 6) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 388 | ValToStore = Val; // Whole thing is passed in memory. |
| 389 | break; |
| 390 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 391 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 392 | // Split the value into top and bottom part. Top part goes in a reg. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 393 | SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Val, |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 394 | DAG.getConstant(1, MVT::i32)); |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 395 | SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Val, |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 396 | DAG.getConstant(0, MVT::i32)); |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 397 | RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Hi)); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 398 | |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 399 | if (RegsToPass.size() >= 6) { |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 400 | ValToStore = Lo; |
| 401 | ArgOffset += 4; |
| 402 | ObjSize = 4; |
| 403 | } else { |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 404 | RegsToPass.push_back(std::make_pair(ArgRegs[RegsToPass.size()], Lo)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 405 | } |
| 406 | break; |
| 407 | } |
Duncan Sands | 8c0f244 | 2008-12-12 08:05:40 +0000 | [diff] [blame] | 408 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 409 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 410 | if (ValToStore.getNode()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 411 | SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32); |
| 412 | SDValue PtrOff = DAG.getConstant(ArgOffset, MVT::i32); |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 413 | PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff); |
| 414 | MemOpChains.push_back(DAG.getStore(Chain, dl, ValToStore, |
| 415 | PtrOff, NULL, 0)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 416 | } |
| 417 | ArgOffset += ObjSize; |
| 418 | } |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 419 | #endif |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 420 | |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 421 | // Emit all stores, make sure the occur before any copies into physregs. |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 422 | if (!MemOpChains.empty()) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 423 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 424 | &MemOpChains[0], MemOpChains.size()); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 425 | |
| 426 | // Build a sequence of copy-to-reg nodes chained together with token |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 427 | // chain and flag operands which copy the outgoing args into registers. |
| 428 | // The InFlag in necessary since all emited instructions must be |
| 429 | // stuck together. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 430 | SDValue InFlag; |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 431 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
| 432 | unsigned Reg = RegsToPass[i].first; |
| 433 | // Remap I0->I7 -> O0->O7. |
| 434 | if (Reg >= SP::I0 && Reg <= SP::I7) |
| 435 | Reg = Reg-SP::I0+SP::O0; |
| 436 | |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 437 | Chain = DAG.getCopyToReg(Chain, dl, Reg, RegsToPass[i].second, InFlag); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 438 | InFlag = Chain.getValue(1); |
| 439 | } |
| 440 | |
| 441 | // If the callee is a GlobalAddress node (quite common, every direct call is) |
| 442 | // turn it into a TargetGlobalAddress node so that legalize doesn't hack it. |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 443 | // Likewise ExternalSymbol -> TargetExternalSymbol. |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 444 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) |
| 445 | Callee = DAG.getTargetGlobalAddress(G->getGlobal(), MVT::i32); |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 446 | else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee)) |
| 447 | Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 448 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 449 | std::vector<MVT> NodeTys; |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 450 | NodeTys.push_back(MVT::Other); // Returns a chain |
| 451 | NodeTys.push_back(MVT::Flag); // Returns a flag for retval copy to use. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 452 | SDValue Ops[] = { Chain, Callee, InFlag }; |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 453 | Chain = DAG.getNode(SPISD::CALL, dl, NodeTys, Ops, InFlag.getNode() ? 3 : 2); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 454 | InFlag = Chain.getValue(1); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 455 | |
Chris Lattner | e563bbc | 2008-10-11 22:08:30 +0000 | [diff] [blame] | 456 | Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(ArgsSize, true), |
| 457 | DAG.getIntPtrConstant(0, true), InFlag); |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 458 | InFlag = Chain.getValue(1); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 460 | // Assign locations to each value returned by this call. |
| 461 | SmallVector<CCValAssign, 16> RVLocs; |
Chris Lattner | 315123f | 2008-03-17 06:58:37 +0000 | [diff] [blame] | 462 | CCState RVInfo(CallingConv, isVarArg, DAG.getTarget(), RVLocs); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 463 | |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 464 | RVInfo.AnalyzeCallResult(TheCall, RetCC_Sparc32); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 465 | SmallVector<SDValue, 8> ResultVals; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 466 | |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 467 | // Copy all of the result registers out of their specified physreg. |
| 468 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 469 | unsigned Reg = RVLocs[i].getLocReg(); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 470 | |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 471 | // Remap I0->I7 -> O0->O7. |
| 472 | if (Reg >= SP::I0 && Reg <= SP::I7) |
| 473 | Reg = Reg-SP::I0+SP::O0; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 474 | |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 475 | Chain = DAG.getCopyFromReg(Chain, dl, Reg, |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 476 | RVLocs[i].getValVT(), InFlag).getValue(1); |
| 477 | InFlag = Chain.getValue(2); |
| 478 | ResultVals.push_back(Chain.getValue(0)); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 479 | } |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 480 | |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 481 | ResultVals.push_back(Chain); |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 482 | |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 483 | // Merge everything together with a MERGE_VALUES node. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 484 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
| 485 | TheCall->getVTList(), &ResultVals[0], |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 486 | ResultVals.size()); |
Chris Lattner | 5a65b92 | 2008-03-17 05:41:48 +0000 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | |
| 490 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 491 | //===----------------------------------------------------------------------===// |
| 492 | // TargetLowering Implementation |
| 493 | //===----------------------------------------------------------------------===// |
| 494 | |
| 495 | /// IntCondCCodeToICC - Convert a DAG integer condition code to a SPARC ICC |
| 496 | /// condition. |
| 497 | static SPCC::CondCodes IntCondCCodeToICC(ISD::CondCode CC) { |
| 498 | switch (CC) { |
| 499 | default: assert(0 && "Unknown integer condition code!"); |
| 500 | case ISD::SETEQ: return SPCC::ICC_E; |
| 501 | case ISD::SETNE: return SPCC::ICC_NE; |
| 502 | case ISD::SETLT: return SPCC::ICC_L; |
| 503 | case ISD::SETGT: return SPCC::ICC_G; |
| 504 | case ISD::SETLE: return SPCC::ICC_LE; |
| 505 | case ISD::SETGE: return SPCC::ICC_GE; |
| 506 | case ISD::SETULT: return SPCC::ICC_CS; |
| 507 | case ISD::SETULE: return SPCC::ICC_LEU; |
| 508 | case ISD::SETUGT: return SPCC::ICC_GU; |
| 509 | case ISD::SETUGE: return SPCC::ICC_CC; |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | /// FPCondCCodeToFCC - Convert a DAG floatingp oint condition code to a SPARC |
| 514 | /// FCC condition. |
| 515 | static SPCC::CondCodes FPCondCCodeToFCC(ISD::CondCode CC) { |
| 516 | switch (CC) { |
| 517 | default: assert(0 && "Unknown fp condition code!"); |
| 518 | case ISD::SETEQ: |
| 519 | case ISD::SETOEQ: return SPCC::FCC_E; |
| 520 | case ISD::SETNE: |
| 521 | case ISD::SETUNE: return SPCC::FCC_NE; |
| 522 | case ISD::SETLT: |
| 523 | case ISD::SETOLT: return SPCC::FCC_L; |
| 524 | case ISD::SETGT: |
| 525 | case ISD::SETOGT: return SPCC::FCC_G; |
| 526 | case ISD::SETLE: |
| 527 | case ISD::SETOLE: return SPCC::FCC_LE; |
| 528 | case ISD::SETGE: |
| 529 | case ISD::SETOGE: return SPCC::FCC_GE; |
| 530 | case ISD::SETULT: return SPCC::FCC_UL; |
| 531 | case ISD::SETULE: return SPCC::FCC_ULE; |
| 532 | case ISD::SETUGT: return SPCC::FCC_UG; |
| 533 | case ISD::SETUGE: return SPCC::FCC_UGE; |
| 534 | case ISD::SETUO: return SPCC::FCC_U; |
| 535 | case ISD::SETO: return SPCC::FCC_O; |
| 536 | case ISD::SETONE: return SPCC::FCC_LG; |
| 537 | case ISD::SETUEQ: return SPCC::FCC_UE; |
| 538 | } |
| 539 | } |
| 540 | |
| 541 | |
| 542 | SparcTargetLowering::SparcTargetLowering(TargetMachine &TM) |
| 543 | : TargetLowering(TM) { |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 544 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 545 | // Set up the register classes. |
| 546 | addRegisterClass(MVT::i32, SP::IntRegsRegisterClass); |
| 547 | addRegisterClass(MVT::f32, SP::FPRegsRegisterClass); |
| 548 | addRegisterClass(MVT::f64, SP::DFPRegsRegisterClass); |
| 549 | |
| 550 | // Turn FP extload into load/fextend |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 551 | setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 552 | // Sparc doesn't have i1 sign extending load |
Evan Cheng | 0329466 | 2008-10-14 21:26:46 +0000 | [diff] [blame] | 553 | setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 554 | // Turn FP truncstore into trunc + store. |
| 555 | setTruncStoreAction(MVT::f64, MVT::f32, Expand); |
| 556 | |
| 557 | // Custom legalize GlobalAddress nodes into LO/HI parts. |
| 558 | setOperationAction(ISD::GlobalAddress, MVT::i32, Custom); |
| 559 | setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom); |
| 560 | setOperationAction(ISD::ConstantPool , MVT::i32, Custom); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 561 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 562 | // Sparc doesn't have sext_inreg, replace them with shl/sra |
| 563 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand); |
| 564 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand); |
| 565 | setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand); |
| 566 | |
| 567 | // Sparc has no REM or DIVREM operations. |
| 568 | setOperationAction(ISD::UREM, MVT::i32, Expand); |
| 569 | setOperationAction(ISD::SREM, MVT::i32, Expand); |
| 570 | setOperationAction(ISD::SDIVREM, MVT::i32, Expand); |
| 571 | setOperationAction(ISD::UDIVREM, MVT::i32, Expand); |
| 572 | |
| 573 | // Custom expand fp<->sint |
| 574 | setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom); |
| 575 | setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom); |
| 576 | |
| 577 | // Expand fp<->uint |
| 578 | setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand); |
| 579 | setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 580 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 581 | setOperationAction(ISD::BIT_CONVERT, MVT::f32, Expand); |
| 582 | setOperationAction(ISD::BIT_CONVERT, MVT::i32, Expand); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 583 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 584 | // Sparc has no select or setcc: expand to SELECT_CC. |
| 585 | setOperationAction(ISD::SELECT, MVT::i32, Expand); |
| 586 | setOperationAction(ISD::SELECT, MVT::f32, Expand); |
| 587 | setOperationAction(ISD::SELECT, MVT::f64, Expand); |
| 588 | setOperationAction(ISD::SETCC, MVT::i32, Expand); |
| 589 | setOperationAction(ISD::SETCC, MVT::f32, Expand); |
| 590 | setOperationAction(ISD::SETCC, MVT::f64, Expand); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 591 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 592 | // Sparc doesn't have BRCOND either, it has BR_CC. |
| 593 | setOperationAction(ISD::BRCOND, MVT::Other, Expand); |
| 594 | setOperationAction(ISD::BRIND, MVT::Other, Expand); |
| 595 | setOperationAction(ISD::BR_JT, MVT::Other, Expand); |
| 596 | setOperationAction(ISD::BR_CC, MVT::i32, Custom); |
| 597 | setOperationAction(ISD::BR_CC, MVT::f32, Custom); |
| 598 | setOperationAction(ISD::BR_CC, MVT::f64, Custom); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 599 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 600 | setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); |
| 601 | setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); |
| 602 | setOperationAction(ISD::SELECT_CC, MVT::f64, Custom); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 603 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 604 | // SPARC has no intrinsics for these particular operations. |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 605 | setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand); |
| 606 | |
| 607 | setOperationAction(ISD::FSIN , MVT::f64, Expand); |
| 608 | setOperationAction(ISD::FCOS , MVT::f64, Expand); |
| 609 | setOperationAction(ISD::FREM , MVT::f64, Expand); |
| 610 | setOperationAction(ISD::FSIN , MVT::f32, Expand); |
| 611 | setOperationAction(ISD::FCOS , MVT::f32, Expand); |
| 612 | setOperationAction(ISD::FREM , MVT::f32, Expand); |
| 613 | setOperationAction(ISD::CTPOP, MVT::i32, Expand); |
| 614 | setOperationAction(ISD::CTTZ , MVT::i32, Expand); |
| 615 | setOperationAction(ISD::CTLZ , MVT::i32, Expand); |
| 616 | setOperationAction(ISD::ROTL , MVT::i32, Expand); |
| 617 | setOperationAction(ISD::ROTR , MVT::i32, Expand); |
| 618 | setOperationAction(ISD::BSWAP, MVT::i32, Expand); |
| 619 | setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand); |
| 620 | setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand); |
| 621 | setOperationAction(ISD::FPOW , MVT::f64, Expand); |
| 622 | setOperationAction(ISD::FPOW , MVT::f32, Expand); |
| 623 | |
| 624 | setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand); |
| 625 | setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand); |
| 626 | setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand); |
| 627 | |
| 628 | // FIXME: Sparc provides these multiplies, but we don't have them yet. |
| 629 | setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand); |
Anton Korobeynikov | 4b58b6a | 2008-10-10 20:29:31 +0000 | [diff] [blame] | 630 | setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 631 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 632 | // We don't have line number support yet. |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 633 | setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 634 | setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand); |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 635 | setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand); |
| 636 | setOperationAction(ISD::EH_LABEL, MVT::Other, Expand); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 637 | |
| 638 | // RET must be custom lowered, to meet ABI requirements |
| 639 | setOperationAction(ISD::RET , MVT::Other, Custom); |
| 640 | |
| 641 | // VASTART needs to be custom lowered to use the VarArgsFrameIndex. |
| 642 | setOperationAction(ISD::VASTART , MVT::Other, Custom); |
| 643 | // VAARG needs to be lowered to not do unaligned accesses for doubles. |
| 644 | setOperationAction(ISD::VAARG , MVT::Other, Custom); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 645 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 646 | // Use the default implementation. |
| 647 | setOperationAction(ISD::VACOPY , MVT::Other, Expand); |
| 648 | setOperationAction(ISD::VAEND , MVT::Other, Expand); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 649 | setOperationAction(ISD::STACKSAVE , MVT::Other, Expand); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 650 | setOperationAction(ISD::STACKRESTORE , MVT::Other, Expand); |
| 651 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32 , Custom); |
| 652 | |
| 653 | // No debug info support yet. |
Dan Gohman | 7f46020 | 2008-06-30 20:59:49 +0000 | [diff] [blame] | 654 | setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand); |
Dan Gohman | 4406604 | 2008-07-01 00:05:16 +0000 | [diff] [blame] | 655 | setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand); |
| 656 | setOperationAction(ISD::EH_LABEL, MVT::Other, Expand); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 657 | setOperationAction(ISD::DECLARE, MVT::Other, Expand); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 658 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 659 | setStackPointerRegisterToSaveRestore(SP::O6); |
| 660 | |
| 661 | if (TM.getSubtarget<SparcSubtarget>().isV9()) |
| 662 | setOperationAction(ISD::CTPOP, MVT::i32, Legal); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 663 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 664 | computeRegisterProperties(); |
| 665 | } |
| 666 | |
| 667 | const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const { |
| 668 | switch (Opcode) { |
| 669 | default: return 0; |
| 670 | case SPISD::CMPICC: return "SPISD::CMPICC"; |
| 671 | case SPISD::CMPFCC: return "SPISD::CMPFCC"; |
| 672 | case SPISD::BRICC: return "SPISD::BRICC"; |
| 673 | case SPISD::BRFCC: return "SPISD::BRFCC"; |
| 674 | case SPISD::SELECT_ICC: return "SPISD::SELECT_ICC"; |
| 675 | case SPISD::SELECT_FCC: return "SPISD::SELECT_FCC"; |
| 676 | case SPISD::Hi: return "SPISD::Hi"; |
| 677 | case SPISD::Lo: return "SPISD::Lo"; |
| 678 | case SPISD::FTOI: return "SPISD::FTOI"; |
| 679 | case SPISD::ITOF: return "SPISD::ITOF"; |
| 680 | case SPISD::CALL: return "SPISD::CALL"; |
| 681 | case SPISD::RET_FLAG: return "SPISD::RET_FLAG"; |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | /// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to |
| 686 | /// be zero. Op is expected to be a target specific node. Used by DAG |
| 687 | /// combiner. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 688 | void SparcTargetLowering::computeMaskedBitsForTargetNode(const SDValue Op, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 689 | const APInt &Mask, |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 690 | APInt &KnownZero, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 691 | APInt &KnownOne, |
| 692 | const SelectionDAG &DAG, |
| 693 | unsigned Depth) const { |
| 694 | APInt KnownZero2, KnownOne2; |
| 695 | KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything. |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 696 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 697 | switch (Op.getOpcode()) { |
| 698 | default: break; |
| 699 | case SPISD::SELECT_ICC: |
| 700 | case SPISD::SELECT_FCC: |
| 701 | DAG.ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, |
| 702 | Depth+1); |
| 703 | DAG.ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, |
| 704 | Depth+1); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 705 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 706 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 707 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 708 | // Only known if known in both the LHS and RHS. |
| 709 | KnownOne &= KnownOne2; |
| 710 | KnownZero &= KnownZero2; |
| 711 | break; |
| 712 | } |
| 713 | } |
| 714 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 715 | // Look at LHS/RHS/CC and see if they are a lowered setcc instruction. If so |
| 716 | // set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 717 | static void LookThroughSetCC(SDValue &LHS, SDValue &RHS, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 718 | ISD::CondCode CC, unsigned &SPCC) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 719 | if (isa<ConstantSDNode>(RHS) && |
| 720 | cast<ConstantSDNode>(RHS)->getZExtValue() == 0 && |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 721 | CC == ISD::SETNE && |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 722 | ((LHS.getOpcode() == SPISD::SELECT_ICC && |
| 723 | LHS.getOperand(3).getOpcode() == SPISD::CMPICC) || |
| 724 | (LHS.getOpcode() == SPISD::SELECT_FCC && |
| 725 | LHS.getOperand(3).getOpcode() == SPISD::CMPFCC)) && |
| 726 | isa<ConstantSDNode>(LHS.getOperand(0)) && |
| 727 | isa<ConstantSDNode>(LHS.getOperand(1)) && |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 728 | cast<ConstantSDNode>(LHS.getOperand(0))->getZExtValue() == 1 && |
| 729 | cast<ConstantSDNode>(LHS.getOperand(1))->getZExtValue() == 0) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 730 | SDValue CMPCC = LHS.getOperand(3); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 731 | SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getZExtValue(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 732 | LHS = CMPCC.getOperand(0); |
| 733 | RHS = CMPCC.getOperand(1); |
| 734 | } |
| 735 | } |
| 736 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 737 | static SDValue LowerGLOBALADDRESS(SDValue Op, SelectionDAG &DAG) { |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 738 | GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); |
Dale Johannesen | de06470 | 2009-02-06 21:50:26 +0000 | [diff] [blame] | 739 | // FIXME there isn't really any debug info here |
| 740 | DebugLoc dl = Op.getDebugLoc(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 741 | SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32); |
Dale Johannesen | de06470 | 2009-02-06 21:50:26 +0000 | [diff] [blame] | 742 | SDValue Hi = DAG.getNode(SPISD::Hi, dl, MVT::i32, GA); |
| 743 | SDValue Lo = DAG.getNode(SPISD::Lo, dl, MVT::i32, GA); |
| 744 | return DAG.getNode(ISD::ADD, dl, MVT::i32, Lo, Hi); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 745 | } |
| 746 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 747 | static SDValue LowerCONSTANTPOOL(SDValue Op, SelectionDAG &DAG) { |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 748 | ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op); |
Dale Johannesen | de06470 | 2009-02-06 21:50:26 +0000 | [diff] [blame] | 749 | // FIXME there isn't really any debug info here |
| 750 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 751 | Constant *C = N->getConstVal(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 752 | SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment()); |
Dale Johannesen | de06470 | 2009-02-06 21:50:26 +0000 | [diff] [blame] | 753 | SDValue Hi = DAG.getNode(SPISD::Hi, dl, MVT::i32, CP); |
| 754 | SDValue Lo = DAG.getNode(SPISD::Lo, dl, MVT::i32, CP); |
| 755 | return DAG.getNode(ISD::ADD, dl, MVT::i32, Lo, Hi); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 756 | } |
| 757 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 758 | static SDValue LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) { |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 759 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 760 | // Convert the fp value to integer in an FP register. |
| 761 | assert(Op.getValueType() == MVT::i32); |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 762 | Op = DAG.getNode(SPISD::FTOI, dl, MVT::f32, Op.getOperand(0)); |
| 763 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 764 | } |
| 765 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 766 | static SDValue LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) { |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 767 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 768 | assert(Op.getOperand(0).getValueType() == MVT::i32); |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 769 | SDValue Tmp = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Op.getOperand(0)); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 770 | // Convert the int value to FP in an FP register. |
Dale Johannesen | b300d2a | 2009-02-07 00:55:49 +0000 | [diff] [blame] | 771 | return DAG.getNode(SPISD::ITOF, dl, Op.getValueType(), Tmp); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 772 | } |
| 773 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 774 | static SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG) { |
| 775 | SDValue Chain = Op.getOperand(0); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 776 | ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 777 | SDValue LHS = Op.getOperand(2); |
| 778 | SDValue RHS = Op.getOperand(3); |
| 779 | SDValue Dest = Op.getOperand(4); |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 780 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 781 | unsigned Opc, SPCC = ~0U; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 782 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 783 | // If this is a br_cc of a "setcc", and if the setcc got lowered into |
| 784 | // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values. |
| 785 | LookThroughSetCC(LHS, RHS, CC, SPCC); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 786 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 787 | // Get the condition flag. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 788 | SDValue CompareFlag; |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 789 | if (LHS.getValueType() == MVT::i32) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 790 | std::vector<MVT> VTs; |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 791 | VTs.push_back(MVT::i32); |
| 792 | VTs.push_back(MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 793 | SDValue Ops[2] = { LHS, RHS }; |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 794 | CompareFlag = DAG.getNode(SPISD::CMPICC, dl, VTs, Ops, 2).getValue(1); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 795 | if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC); |
| 796 | Opc = SPISD::BRICC; |
| 797 | } else { |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 798 | CompareFlag = DAG.getNode(SPISD::CMPFCC, dl, MVT::Flag, LHS, RHS); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 799 | if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC); |
| 800 | Opc = SPISD::BRFCC; |
| 801 | } |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 802 | return DAG.getNode(Opc, dl, MVT::Other, Chain, Dest, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 803 | DAG.getConstant(SPCC, MVT::i32), CompareFlag); |
| 804 | } |
| 805 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 806 | static SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) { |
| 807 | SDValue LHS = Op.getOperand(0); |
| 808 | SDValue RHS = Op.getOperand(1); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 809 | ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 810 | SDValue TrueVal = Op.getOperand(2); |
| 811 | SDValue FalseVal = Op.getOperand(3); |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 812 | DebugLoc dl = Op.getDebugLoc(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 813 | unsigned Opc, SPCC = ~0U; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 814 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 815 | // If this is a select_cc of a "setcc", and if the setcc got lowered into |
| 816 | // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values. |
| 817 | LookThroughSetCC(LHS, RHS, CC, SPCC); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 818 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 819 | SDValue CompareFlag; |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 820 | if (LHS.getValueType() == MVT::i32) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 821 | std::vector<MVT> VTs; |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 822 | VTs.push_back(LHS.getValueType()); // subcc returns a value |
| 823 | VTs.push_back(MVT::Flag); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 824 | SDValue Ops[2] = { LHS, RHS }; |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 825 | CompareFlag = DAG.getNode(SPISD::CMPICC, dl, VTs, Ops, 2).getValue(1); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 826 | Opc = SPISD::SELECT_ICC; |
| 827 | if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC); |
| 828 | } else { |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 829 | CompareFlag = DAG.getNode(SPISD::CMPFCC, dl, MVT::Flag, LHS, RHS); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 830 | Opc = SPISD::SELECT_FCC; |
| 831 | if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC); |
| 832 | } |
Dale Johannesen | 3484c09 | 2009-02-05 22:07:54 +0000 | [diff] [blame] | 833 | return DAG.getNode(Opc, dl, TrueVal.getValueType(), TrueVal, FalseVal, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 834 | DAG.getConstant(SPCC, MVT::i32), CompareFlag); |
| 835 | } |
| 836 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 837 | static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 838 | SparcTargetLowering &TLI) { |
| 839 | // vastart just stores the address of the VarArgsFrameIndex slot into the |
| 840 | // memory location argument. |
Dale Johannesen | 6f38cb6 | 2009-02-07 19:59:05 +0000 | [diff] [blame] | 841 | DebugLoc dl = Op.getDebugLoc(); |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 842 | SDValue Offset = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 843 | DAG.getRegister(SP::I6, MVT::i32), |
| 844 | DAG.getConstant(TLI.getVarArgsFrameOffset(), |
| 845 | MVT::i32)); |
| 846 | const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue(); |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 847 | return DAG.getStore(Op.getOperand(0), dl, Offset, Op.getOperand(1), SV, 0); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 848 | } |
| 849 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 850 | static SDValue LowerVAARG(SDValue Op, SelectionDAG &DAG) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 851 | SDNode *Node = Op.getNode(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 852 | MVT VT = Node->getValueType(0); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 853 | SDValue InChain = Node->getOperand(0); |
| 854 | SDValue VAListPtr = Node->getOperand(1); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 855 | const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 856 | DebugLoc dl = Node->getDebugLoc(); |
| 857 | SDValue VAList = DAG.getLoad(MVT::i32, dl, InChain, VAListPtr, SV, 0); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 858 | // Increment the pointer, VAList, to the next vaarg |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 859 | SDValue NextPtr = DAG.getNode(ISD::ADD, dl, MVT::i32, VAList, |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 860 | DAG.getConstant(VT.getSizeInBits()/8, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 861 | MVT::i32)); |
| 862 | // Store the incremented VAList to the legalized pointer |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 863 | InChain = DAG.getStore(VAList.getValue(1), dl, NextPtr, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 864 | VAListPtr, SV, 0); |
| 865 | // Load the actual argument out of the pointer VAList, unless this is an |
| 866 | // f64 load. |
| 867 | if (VT != MVT::f64) |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 868 | return DAG.getLoad(VT, dl, InChain, VAList, NULL, 0); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 869 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 870 | // Otherwise, load it as i64, then do a bitconvert. |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 871 | SDValue V = DAG.getLoad(MVT::i64, dl, InChain, VAList, NULL, 0); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 872 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 873 | // Bit-Convert the value to f64. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 874 | SDValue Ops[2] = { |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 875 | DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f64, V), |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 876 | V.getValue(1) |
| 877 | }; |
Dale Johannesen | 33c960f | 2009-02-04 20:06:27 +0000 | [diff] [blame] | 878 | return DAG.getMergeValues(Ops, 2, dl); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 879 | } |
| 880 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 881 | static SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) { |
| 882 | SDValue Chain = Op.getOperand(0); // Legalize the chain. |
| 883 | SDValue Size = Op.getOperand(1); // Legalize the size. |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 884 | DebugLoc dl = Op.getDebugLoc(); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 885 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 886 | unsigned SPReg = SP::O6; |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 887 | SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, MVT::i32); |
| 888 | SDValue NewSP = DAG.getNode(ISD::SUB, dl, MVT::i32, SP, Size); // Value |
| 889 | Chain = DAG.getCopyToReg(SP.getValue(1), dl, SPReg, NewSP); // Output chain |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 890 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 891 | // The resultant pointer is actually 16 words from the bottom of the stack, |
| 892 | // to provide a register spill area. |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 893 | SDValue NewVal = DAG.getNode(ISD::ADD, dl, MVT::i32, NewSP, |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 894 | DAG.getConstant(96, MVT::i32)); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 895 | SDValue Ops[2] = { NewVal, Chain }; |
Dale Johannesen | a05dca4 | 2009-02-04 23:02:30 +0000 | [diff] [blame] | 896 | return DAG.getMergeValues(Ops, 2, dl); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 897 | } |
| 898 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 899 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 900 | SDValue SparcTargetLowering:: |
| 901 | LowerOperation(SDValue Op, SelectionDAG &DAG) { |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 902 | switch (Op.getOpcode()) { |
| 903 | default: assert(0 && "Should not custom lower this!"); |
| 904 | // Frame & Return address. Currently unimplemented |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 905 | case ISD::RETURNADDR: return SDValue(); |
| 906 | case ISD::FRAMEADDR: return SDValue(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 907 | case ISD::GlobalTLSAddress: |
| 908 | assert(0 && "TLS not implemented for Sparc."); |
| 909 | case ISD::GlobalAddress: return LowerGLOBALADDRESS(Op, DAG); |
| 910 | case ISD::ConstantPool: return LowerCONSTANTPOOL(Op, DAG); |
| 911 | case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG); |
| 912 | case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG); |
| 913 | case ISD::BR_CC: return LowerBR_CC(Op, DAG); |
| 914 | case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); |
| 915 | case ISD::VASTART: return LowerVASTART(Op, DAG, *this); |
| 916 | case ISD::VAARG: return LowerVAARG(Op, DAG); |
| 917 | case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG); |
Chris Lattner | 98949a6 | 2008-03-17 06:01:07 +0000 | [diff] [blame] | 918 | case ISD::CALL: return LowerCALL(Op, DAG); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 919 | case ISD::RET: return LowerRET(Op, DAG); |
| 920 | } |
| 921 | } |
| 922 | |
| 923 | MachineBasicBlock * |
| 924 | SparcTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, |
Dan Gohman | 1fdbc1d | 2009-02-07 16:15:20 +0000 | [diff] [blame] | 925 | MachineBasicBlock *BB) const { |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 926 | const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo(); |
| 927 | unsigned BROpcode; |
| 928 | unsigned CC; |
Dale Johannesen | d552eee | 2009-02-13 02:31:35 +0000 | [diff] [blame^] | 929 | DebugLoc dl = MI->getDebugLoc(); |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 930 | // Figure out the conditional branch opcode to use for this select_cc. |
| 931 | switch (MI->getOpcode()) { |
| 932 | default: assert(0 && "Unknown SELECT_CC!"); |
| 933 | case SP::SELECT_CC_Int_ICC: |
| 934 | case SP::SELECT_CC_FP_ICC: |
| 935 | case SP::SELECT_CC_DFP_ICC: |
| 936 | BROpcode = SP::BCOND; |
| 937 | break; |
| 938 | case SP::SELECT_CC_Int_FCC: |
| 939 | case SP::SELECT_CC_FP_FCC: |
| 940 | case SP::SELECT_CC_DFP_FCC: |
| 941 | BROpcode = SP::FBCOND; |
| 942 | break; |
| 943 | } |
| 944 | |
| 945 | CC = (SPCC::CondCodes)MI->getOperand(3).getImm(); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 946 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 947 | // To "insert" a SELECT_CC instruction, we actually have to insert the diamond |
| 948 | // control-flow pattern. The incoming instruction knows the destination vreg |
| 949 | // to set, the condition code register to branch on, the true/false values to |
| 950 | // select between, and a branch opcode to use. |
| 951 | const BasicBlock *LLVM_BB = BB->getBasicBlock(); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 952 | MachineFunction::iterator It = BB; |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 953 | ++It; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 954 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 955 | // thisMBB: |
| 956 | // ... |
| 957 | // TrueVal = ... |
| 958 | // [f]bCC copy1MBB |
| 959 | // fallthrough --> copy0MBB |
| 960 | MachineBasicBlock *thisMBB = BB; |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 961 | MachineFunction *F = BB->getParent(); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 962 | MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 963 | MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB); |
Dale Johannesen | d552eee | 2009-02-13 02:31:35 +0000 | [diff] [blame^] | 964 | BuildMI(BB, dl, TII.get(BROpcode)).addMBB(sinkMBB).addImm(CC); |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 965 | F->insert(It, copy0MBB); |
| 966 | F->insert(It, sinkMBB); |
Dan Gohman | 0011dc4 | 2008-06-21 20:21:19 +0000 | [diff] [blame] | 967 | // Update machine-CFG edges by transferring all successors of the current |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 968 | // block to the new block which will contain the Phi node for the select. |
Dan Gohman | 0011dc4 | 2008-06-21 20:21:19 +0000 | [diff] [blame] | 969 | sinkMBB->transferSuccessors(BB); |
| 970 | // Next, add the true and fallthrough blocks as its successors. |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 971 | BB->addSuccessor(copy0MBB); |
| 972 | BB->addSuccessor(sinkMBB); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 973 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 974 | // copy0MBB: |
| 975 | // %FalseValue = ... |
| 976 | // # fallthrough to sinkMBB |
| 977 | BB = copy0MBB; |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 978 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 979 | // Update machine-CFG edges |
| 980 | BB->addSuccessor(sinkMBB); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 981 | |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 982 | // sinkMBB: |
| 983 | // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] |
| 984 | // ... |
| 985 | BB = sinkMBB; |
Dale Johannesen | d552eee | 2009-02-13 02:31:35 +0000 | [diff] [blame^] | 986 | BuildMI(BB, dl, TII.get(SP::PHI), MI->getOperand(0).getReg()) |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 987 | .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB) |
| 988 | .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB); |
Anton Korobeynikov | 5383570 | 2008-10-10 20:27:31 +0000 | [diff] [blame] | 989 | |
Dan Gohman | 8e5f2c6 | 2008-07-07 23:14:23 +0000 | [diff] [blame] | 990 | F->DeleteMachineInstr(MI); // The pseudo instruction is gone now. |
Chris Lattner | d23405e | 2008-03-17 03:21:36 +0000 | [diff] [blame] | 991 | return BB; |
| 992 | } |
Anton Korobeynikov | 0eefda1 | 2008-10-10 20:28:10 +0000 | [diff] [blame] | 993 | |
| 994 | //===----------------------------------------------------------------------===// |
| 995 | // Sparc Inline Assembly Support |
| 996 | //===----------------------------------------------------------------------===// |
| 997 | |
| 998 | /// getConstraintType - Given a constraint letter, return the type of |
| 999 | /// constraint it is for this target. |
| 1000 | SparcTargetLowering::ConstraintType |
| 1001 | SparcTargetLowering::getConstraintType(const std::string &Constraint) const { |
| 1002 | if (Constraint.size() == 1) { |
| 1003 | switch (Constraint[0]) { |
| 1004 | default: break; |
| 1005 | case 'r': return C_RegisterClass; |
| 1006 | } |
| 1007 | } |
| 1008 | |
| 1009 | return TargetLowering::getConstraintType(Constraint); |
| 1010 | } |
| 1011 | |
| 1012 | std::pair<unsigned, const TargetRegisterClass*> |
| 1013 | SparcTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint, |
| 1014 | MVT VT) const { |
| 1015 | if (Constraint.size() == 1) { |
| 1016 | switch (Constraint[0]) { |
| 1017 | case 'r': |
| 1018 | return std::make_pair(0U, SP::IntRegsRegisterClass); |
| 1019 | } |
| 1020 | } |
| 1021 | |
| 1022 | return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); |
| 1023 | } |
| 1024 | |
| 1025 | std::vector<unsigned> SparcTargetLowering:: |
| 1026 | getRegClassForInlineAsmConstraint(const std::string &Constraint, |
| 1027 | MVT VT) const { |
| 1028 | if (Constraint.size() != 1) |
| 1029 | return std::vector<unsigned>(); |
| 1030 | |
| 1031 | switch (Constraint[0]) { |
| 1032 | default: break; |
| 1033 | case 'r': |
| 1034 | return make_vector<unsigned>(SP::L0, SP::L1, SP::L2, SP::L3, |
| 1035 | SP::L4, SP::L5, SP::L6, SP::L7, |
| 1036 | SP::I0, SP::I1, SP::I2, SP::I3, |
| 1037 | SP::I4, SP::I5, |
| 1038 | SP::O0, SP::O1, SP::O2, SP::O3, |
| 1039 | SP::O4, SP::O5, SP::O7, 0); |
| 1040 | } |
| 1041 | |
| 1042 | return std::vector<unsigned>(); |
| 1043 | } |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1044 | |
| 1045 | bool |
| 1046 | SparcTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { |
| 1047 | // The Sparc target isn't yet aware of offsets. |
| 1048 | return false; |
| 1049 | } |