Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 1 | //===-- SystemZISelLowering.cpp - SystemZ 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 SystemZTargetLowering class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #define DEBUG_TYPE "systemz-lower" |
| 15 | |
| 16 | #include "SystemZISelLowering.h" |
| 17 | #include "SystemZ.h" |
| 18 | #include "SystemZTargetMachine.h" |
| 19 | #include "SystemZSubtarget.h" |
| 20 | #include "llvm/DerivedTypes.h" |
| 21 | #include "llvm/Function.h" |
| 22 | #include "llvm/Intrinsics.h" |
| 23 | #include "llvm/CallingConv.h" |
| 24 | #include "llvm/GlobalVariable.h" |
| 25 | #include "llvm/GlobalAlias.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" |
| 30 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 31 | #include "llvm/CodeGen/PseudoSourceValue.h" |
| 32 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 33 | #include "llvm/CodeGen/ValueTypes.h" |
| 34 | #include "llvm/Support/Debug.h" |
Anton Korobeynikov | 2c97ae8 | 2009-07-16 14:19:02 +0000 | [diff] [blame] | 35 | #include "llvm/Target/TargetOptions.h" |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/VectorExtras.h" |
| 37 | using namespace llvm; |
| 38 | |
| 39 | SystemZTargetLowering::SystemZTargetLowering(SystemZTargetMachine &tm) : |
| 40 | TargetLowering(tm), Subtarget(*tm.getSubtargetImpl()), TM(tm) { |
| 41 | |
Anton Korobeynikov | 656ac6f | 2009-07-16 13:51:53 +0000 | [diff] [blame] | 42 | RegInfo = TM.getRegisterInfo(); |
| 43 | |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 44 | // Set up the register classes. |
Anton Korobeynikov | 8d1837d | 2009-07-16 13:56:42 +0000 | [diff] [blame] | 45 | addRegisterClass(MVT::i32, SystemZ::GR32RegisterClass); |
| 46 | addRegisterClass(MVT::i64, SystemZ::GR64RegisterClass); |
Anton Korobeynikov | 0a42d2b | 2009-07-16 14:14:33 +0000 | [diff] [blame] | 47 | addRegisterClass(MVT::v2i32,SystemZ::GR64PRegisterClass); |
Anton Korobeynikov | 8d1837d | 2009-07-16 13:56:42 +0000 | [diff] [blame] | 48 | addRegisterClass(MVT::i128, SystemZ::GR128RegisterClass); |
Anton Korobeynikov | 0a42d2b | 2009-07-16 14:14:33 +0000 | [diff] [blame] | 49 | addRegisterClass(MVT::v2i64,SystemZ::GR128RegisterClass); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 50 | |
Anton Korobeynikov | 2c97ae8 | 2009-07-16 14:19:02 +0000 | [diff] [blame] | 51 | if (!UseSoftFloat) { |
| 52 | addRegisterClass(MVT::f32, SystemZ::FP32RegisterClass); |
| 53 | addRegisterClass(MVT::f64, SystemZ::FP64RegisterClass); |
| 54 | } |
| 55 | |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 56 | // Compute derived properties from the register classes |
| 57 | computeRegisterProperties(); |
| 58 | |
Anton Korobeynikov | 9e4816e | 2009-07-16 13:43:18 +0000 | [diff] [blame] | 59 | // Set shifts properties |
| 60 | setShiftAmountFlavor(Extend); |
Anton Korobeynikov | 48e8b3c | 2009-07-16 14:15:24 +0000 | [diff] [blame] | 61 | setShiftAmountType(MVT::i64); |
Anton Korobeynikov | 9e4816e | 2009-07-16 13:43:18 +0000 | [diff] [blame] | 62 | |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 63 | // Provide all sorts of operation actions |
Anton Korobeynikov | bf02217 | 2009-07-16 13:53:35 +0000 | [diff] [blame] | 64 | setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote); |
| 65 | setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote); |
| 66 | setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 67 | |
Anton Korobeynikov | 85c5c3f | 2009-07-16 14:22:46 +0000 | [diff] [blame^] | 68 | setLoadExtAction(ISD::SEXTLOAD, MVT::f32, Expand); |
| 69 | setLoadExtAction(ISD::ZEXTLOAD, MVT::f32, Expand); |
| 70 | setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand); |
Anton Korobeynikov | 299dc78 | 2009-07-16 14:22:30 +0000 | [diff] [blame] | 71 | |
Anton Korobeynikov | 85c5c3f | 2009-07-16 14:22:46 +0000 | [diff] [blame^] | 72 | setLoadExtAction(ISD::SEXTLOAD, MVT::f64, Expand); |
| 73 | setLoadExtAction(ISD::ZEXTLOAD, MVT::f64, Expand); |
| 74 | setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand); |
Anton Korobeynikov | 23eff5c | 2009-07-16 14:20:08 +0000 | [diff] [blame] | 75 | |
Anton Korobeynikov | e0167c1 | 2009-07-16 13:35:30 +0000 | [diff] [blame] | 76 | setStackPointerRegisterToSaveRestore(SystemZ::R15D); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 77 | setSchedulingPreference(SchedulingForLatency); |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 78 | |
| 79 | setOperationAction(ISD::RET, MVT::Other, Custom); |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 80 | |
Anton Korobeynikov | 983d3a1 | 2009-07-16 14:07:24 +0000 | [diff] [blame] | 81 | setOperationAction(ISD::BR_JT, MVT::Other, Expand); |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 82 | setOperationAction(ISD::BRCOND, MVT::Other, Expand); |
| 83 | setOperationAction(ISD::BR_CC, MVT::i32, Custom); |
| 84 | setOperationAction(ISD::BR_CC, MVT::i64, Custom); |
Anton Korobeynikov | ae53567 | 2009-07-16 14:19:35 +0000 | [diff] [blame] | 85 | setOperationAction(ISD::BR_CC, MVT::f32, Custom); |
| 86 | setOperationAction(ISD::BR_CC, MVT::f64, Custom); |
| 87 | setOperationAction(ISD::ConstantPool, MVT::i32, Custom); |
| 88 | setOperationAction(ISD::ConstantPool, MVT::i64, Custom); |
Anton Korobeynikov | bad769f | 2009-07-16 13:57:27 +0000 | [diff] [blame] | 89 | setOperationAction(ISD::GlobalAddress, MVT::i64, Custom); |
Anton Korobeynikov | c16cdc5 | 2009-07-16 14:07:50 +0000 | [diff] [blame] | 90 | setOperationAction(ISD::JumpTable, MVT::i64, Custom); |
Anton Korobeynikov | c772c44 | 2009-07-16 14:08:15 +0000 | [diff] [blame] | 91 | setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand); |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 92 | |
Anton Korobeynikov | 0a42d2b | 2009-07-16 14:14:33 +0000 | [diff] [blame] | 93 | setOperationAction(ISD::SDIV, MVT::i32, Expand); |
| 94 | setOperationAction(ISD::UDIV, MVT::i32, Expand); |
| 95 | setOperationAction(ISD::SDIV, MVT::i64, Expand); |
| 96 | setOperationAction(ISD::UDIV, MVT::i64, Expand); |
| 97 | setOperationAction(ISD::SREM, MVT::i32, Expand); |
| 98 | setOperationAction(ISD::UREM, MVT::i32, Expand); |
| 99 | setOperationAction(ISD::SREM, MVT::i64, Expand); |
| 100 | setOperationAction(ISD::UREM, MVT::i64, Expand); |
| 101 | |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 102 | // FIXME: Can we lower these 2 efficiently? |
| 103 | setOperationAction(ISD::SETCC, MVT::i32, Expand); |
| 104 | setOperationAction(ISD::SETCC, MVT::i64, Expand); |
Anton Korobeynikov | da723d7 | 2009-07-16 14:22:15 +0000 | [diff] [blame] | 105 | setOperationAction(ISD::SETCC, MVT::f32, Expand); |
| 106 | setOperationAction(ISD::SETCC, MVT::f64, Expand); |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 107 | setOperationAction(ISD::SELECT, MVT::i32, Expand); |
| 108 | setOperationAction(ISD::SELECT, MVT::i64, Expand); |
Anton Korobeynikov | da723d7 | 2009-07-16 14:22:15 +0000 | [diff] [blame] | 109 | setOperationAction(ISD::SELECT, MVT::f32, Expand); |
| 110 | setOperationAction(ISD::SELECT, MVT::f64, Expand); |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 111 | setOperationAction(ISD::SELECT_CC, MVT::i32, Custom); |
| 112 | setOperationAction(ISD::SELECT_CC, MVT::i64, Custom); |
Anton Korobeynikov | ae53567 | 2009-07-16 14:19:35 +0000 | [diff] [blame] | 113 | setOperationAction(ISD::SELECT_CC, MVT::f32, Custom); |
| 114 | setOperationAction(ISD::SELECT_CC, MVT::f64, Custom); |
Anton Korobeynikov | dd0239b | 2009-07-16 13:53:55 +0000 | [diff] [blame] | 115 | |
Anton Korobeynikov | 8d1837d | 2009-07-16 13:56:42 +0000 | [diff] [blame] | 116 | // Funny enough: we don't have 64-bit signed versions of these stuff, but have |
| 117 | // unsigned. |
Anton Korobeynikov | dd0239b | 2009-07-16 13:53:55 +0000 | [diff] [blame] | 118 | setOperationAction(ISD::MULHS, MVT::i64, Expand); |
Anton Korobeynikov | dd0239b | 2009-07-16 13:53:55 +0000 | [diff] [blame] | 119 | setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand); |
Anton Korobeynikov | 9b4ae57 | 2009-07-16 14:20:56 +0000 | [diff] [blame] | 120 | |
| 121 | setOperationAction(ISD::FSIN, MVT::f32, Expand); |
| 122 | setOperationAction(ISD::FSIN, MVT::f64, Expand); |
| 123 | setOperationAction(ISD::FCOS, MVT::f32, Expand); |
| 124 | setOperationAction(ISD::FCOS, MVT::f64, Expand); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | SDValue SystemZTargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) { |
| 128 | switch (Op.getOpcode()) { |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 129 | case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG); |
| 130 | case ISD::RET: return LowerRET(Op, DAG); |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 131 | case ISD::CALL: return LowerCALL(Op, DAG); |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 132 | case ISD::BR_CC: return LowerBR_CC(Op, DAG); |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 133 | case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG); |
Anton Korobeynikov | bad769f | 2009-07-16 13:57:27 +0000 | [diff] [blame] | 134 | case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG); |
Anton Korobeynikov | c16cdc5 | 2009-07-16 14:07:50 +0000 | [diff] [blame] | 135 | case ISD::JumpTable: return LowerJumpTable(Op, DAG); |
Anton Korobeynikov | ae53567 | 2009-07-16 14:19:35 +0000 | [diff] [blame] | 136 | case ISD::ConstantPool: return LowerConstantPool(Op, DAG); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 137 | default: |
| 138 | assert(0 && "unimplemented operand"); |
| 139 | return SDValue(); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | //===----------------------------------------------------------------------===// |
| 144 | // Calling Convention Implementation |
| 145 | //===----------------------------------------------------------------------===// |
| 146 | |
| 147 | #include "SystemZGenCallingConv.inc" |
| 148 | |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 149 | SDValue SystemZTargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, |
| 150 | SelectionDAG &DAG) { |
| 151 | unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue(); |
| 152 | switch (CC) { |
| 153 | default: |
| 154 | assert(0 && "Unsupported calling convention"); |
| 155 | case CallingConv::C: |
| 156 | case CallingConv::Fast: |
| 157 | return LowerCCCArguments(Op, DAG); |
| 158 | } |
| 159 | } |
| 160 | |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 161 | SDValue SystemZTargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) { |
| 162 | CallSDNode *TheCall = cast<CallSDNode>(Op.getNode()); |
| 163 | unsigned CallingConv = TheCall->getCallingConv(); |
| 164 | switch (CallingConv) { |
| 165 | default: |
| 166 | assert(0 && "Unsupported calling convention"); |
| 167 | case CallingConv::Fast: |
| 168 | case CallingConv::C: |
| 169 | return LowerCCCCallTo(Op, DAG, CallingConv); |
| 170 | } |
| 171 | } |
| 172 | |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 173 | /// LowerCCCArguments - transform physical registers into virtual registers and |
| 174 | /// generate load operations for arguments places on the stack. |
| 175 | // FIXME: struct return stuff |
| 176 | // FIXME: varargs |
| 177 | SDValue SystemZTargetLowering::LowerCCCArguments(SDValue Op, |
| 178 | SelectionDAG &DAG) { |
| 179 | MachineFunction &MF = DAG.getMachineFunction(); |
| 180 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 181 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 182 | SDValue Root = Op.getOperand(0); |
| 183 | bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0; |
| 184 | unsigned CC = MF.getFunction()->getCallingConv(); |
| 185 | DebugLoc dl = Op.getDebugLoc(); |
| 186 | |
| 187 | // Assign locations to all of the incoming arguments. |
| 188 | SmallVector<CCValAssign, 16> ArgLocs; |
| 189 | CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs); |
| 190 | CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_SystemZ); |
| 191 | |
| 192 | assert(!isVarArg && "Varargs not supported yet"); |
| 193 | |
| 194 | SmallVector<SDValue, 16> ArgValues; |
| 195 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 196 | CCValAssign &VA = ArgLocs[i]; |
| 197 | if (VA.isRegLoc()) { |
| 198 | // Arguments passed in registers |
| 199 | MVT RegVT = VA.getLocVT(); |
Anton Korobeynikov | 0e31d5c | 2009-07-16 14:19:16 +0000 | [diff] [blame] | 200 | TargetRegisterClass *RC; |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 201 | switch (RegVT.getSimpleVT()) { |
| 202 | default: |
| 203 | cerr << "LowerFORMAL_ARGUMENTS Unhandled argument type: " |
| 204 | << RegVT.getSimpleVT() |
| 205 | << "\n"; |
| 206 | abort(); |
Anton Korobeynikov | 0e31d5c | 2009-07-16 14:19:16 +0000 | [diff] [blame] | 207 | case MVT::i64: |
| 208 | RC = SystemZ::GR64RegisterClass; |
| 209 | break; |
| 210 | case MVT::f32: |
| 211 | RC = SystemZ::FP32RegisterClass; |
| 212 | break; |
| 213 | case MVT::f64: |
| 214 | RC = SystemZ::FP64RegisterClass; |
| 215 | break; |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 216 | } |
Anton Korobeynikov | 0e31d5c | 2009-07-16 14:19:16 +0000 | [diff] [blame] | 217 | |
| 218 | unsigned VReg = RegInfo.createVirtualRegister(RC); |
| 219 | RegInfo.addLiveIn(VA.getLocReg(), VReg); |
| 220 | SDValue ArgValue = DAG.getCopyFromReg(Root, dl, VReg, RegVT); |
| 221 | |
| 222 | // If this is an 8/16/32-bit value, it is really passed promoted to 64 |
| 223 | // bits. Insert an assert[sz]ext to capture this, then truncate to the |
| 224 | // right size. |
| 225 | if (VA.getLocInfo() == CCValAssign::SExt) |
| 226 | ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue, |
| 227 | DAG.getValueType(VA.getValVT())); |
| 228 | else if (VA.getLocInfo() == CCValAssign::ZExt) |
| 229 | ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue, |
| 230 | DAG.getValueType(VA.getValVT())); |
| 231 | |
| 232 | if (VA.getLocInfo() != CCValAssign::Full) |
| 233 | ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue); |
| 234 | |
| 235 | ArgValues.push_back(ArgValue); |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 236 | } else { |
| 237 | // Sanity check |
| 238 | assert(VA.isMemLoc()); |
Anton Korobeynikov | 980d550 | 2009-07-16 14:08:42 +0000 | [diff] [blame] | 239 | |
| 240 | // Create the nodes corresponding to a load from this parameter slot. |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 241 | // Create the frame index object for this incoming parameter... |
Anton Korobeynikov | 980d550 | 2009-07-16 14:08:42 +0000 | [diff] [blame] | 242 | int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8, |
| 243 | VA.getLocMemOffset()); |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 244 | |
| 245 | // Create the SelectionDAG nodes corresponding to a load |
| 246 | //from this parameter |
Anton Korobeynikov | 980d550 | 2009-07-16 14:08:42 +0000 | [diff] [blame] | 247 | SDValue FIN = DAG.getFrameIndex(FI, getPointerTy()); |
| 248 | ArgValues.push_back(DAG.getLoad(VA.getValVT(), dl, Root, FIN, |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 249 | PseudoSourceValue::getFixedStack(FI), 0)); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | ArgValues.push_back(Root); |
| 254 | |
| 255 | // Return the new list of results. |
| 256 | return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(), |
| 257 | &ArgValues[0], ArgValues.size()).getValue(Op.getResNo()); |
| 258 | } |
| 259 | |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 260 | /// LowerCCCCallTo - functions arguments are copied from virtual regs to |
| 261 | /// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted. |
| 262 | /// TODO: sret. |
| 263 | SDValue SystemZTargetLowering::LowerCCCCallTo(SDValue Op, SelectionDAG &DAG, |
| 264 | unsigned CC) { |
| 265 | CallSDNode *TheCall = cast<CallSDNode>(Op.getNode()); |
| 266 | SDValue Chain = TheCall->getChain(); |
| 267 | SDValue Callee = TheCall->getCallee(); |
| 268 | bool isVarArg = TheCall->isVarArg(); |
| 269 | DebugLoc dl = Op.getDebugLoc(); |
Anton Korobeynikov | 656ac6f | 2009-07-16 13:51:53 +0000 | [diff] [blame] | 270 | MachineFunction &MF = DAG.getMachineFunction(); |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 271 | |
Anton Korobeynikov | c7b71be | 2009-07-16 13:52:10 +0000 | [diff] [blame] | 272 | // Offset to first argument stack slot. |
| 273 | const unsigned FirstArgOffset = 160; |
| 274 | |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 275 | // Analyze operands of the call, assigning locations to each operand. |
| 276 | SmallVector<CCValAssign, 16> ArgLocs; |
| 277 | CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs); |
| 278 | |
| 279 | CCInfo.AnalyzeCallOperands(TheCall, CC_SystemZ); |
| 280 | |
| 281 | // Get a count of how many bytes are to be pushed on the stack. |
| 282 | unsigned NumBytes = CCInfo.getNextStackOffset(); |
| 283 | |
| 284 | Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes, |
| 285 | getPointerTy(), true)); |
| 286 | |
| 287 | SmallVector<std::pair<unsigned, SDValue>, 4> RegsToPass; |
| 288 | SmallVector<SDValue, 12> MemOpChains; |
| 289 | SDValue StackPtr; |
| 290 | |
| 291 | // Walk the register/memloc assignments, inserting copies/loads. |
| 292 | for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) { |
| 293 | CCValAssign &VA = ArgLocs[i]; |
| 294 | |
| 295 | // Arguments start after the 5 first operands of ISD::CALL |
| 296 | SDValue Arg = TheCall->getArg(i); |
| 297 | |
| 298 | // Promote the value if needed. |
| 299 | switch (VA.getLocInfo()) { |
| 300 | default: assert(0 && "Unknown loc info!"); |
| 301 | case CCValAssign::Full: break; |
| 302 | case CCValAssign::SExt: |
| 303 | Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg); |
| 304 | break; |
| 305 | case CCValAssign::ZExt: |
| 306 | Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg); |
| 307 | break; |
| 308 | case CCValAssign::AExt: |
| 309 | Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg); |
| 310 | break; |
| 311 | } |
| 312 | |
| 313 | // Arguments that can be passed on register must be kept at RegsToPass |
| 314 | // vector |
| 315 | if (VA.isRegLoc()) { |
| 316 | RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg)); |
| 317 | } else { |
| 318 | assert(VA.isMemLoc()); |
| 319 | |
| 320 | if (StackPtr.getNode() == 0) |
Anton Korobeynikov | 656ac6f | 2009-07-16 13:51:53 +0000 | [diff] [blame] | 321 | StackPtr = |
| 322 | DAG.getCopyFromReg(Chain, dl, |
| 323 | (RegInfo->hasFP(MF) ? |
| 324 | SystemZ::R11D : SystemZ::R15D), |
| 325 | getPointerTy()); |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 326 | |
Anton Korobeynikov | c7b71be | 2009-07-16 13:52:10 +0000 | [diff] [blame] | 327 | unsigned Offset = FirstArgOffset + VA.getLocMemOffset(); |
| 328 | SDValue PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), |
| 329 | StackPtr, |
| 330 | DAG.getIntPtrConstant(Offset)); |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 331 | |
| 332 | MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, |
Anton Korobeynikov | c7b71be | 2009-07-16 13:52:10 +0000 | [diff] [blame] | 333 | PseudoSourceValue::getStack(), Offset)); |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 334 | } |
| 335 | } |
| 336 | |
| 337 | // Transform all store nodes into one single node because all store nodes are |
| 338 | // independent of each other. |
| 339 | if (!MemOpChains.empty()) |
| 340 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
| 341 | &MemOpChains[0], MemOpChains.size()); |
| 342 | |
| 343 | // Build a sequence of copy-to-reg nodes chained together with token chain and |
| 344 | // flag operands which copy the outgoing args into registers. The InFlag in |
| 345 | // necessary since all emited instructions must be stuck together. |
| 346 | SDValue InFlag; |
| 347 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) { |
| 348 | Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first, |
| 349 | RegsToPass[i].second, InFlag); |
| 350 | InFlag = Chain.getValue(1); |
| 351 | } |
| 352 | |
| 353 | // If the callee is a GlobalAddress node (quite common, every direct call is) |
| 354 | // turn it into a TargetGlobalAddress node so that legalize doesn't hack it. |
| 355 | // Likewise ExternalSymbol -> TargetExternalSymbol. |
| 356 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) |
| 357 | Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy()); |
| 358 | else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee)) |
| 359 | Callee = DAG.getTargetExternalSymbol(E->getSymbol(), getPointerTy()); |
| 360 | |
| 361 | // Returns a chain & a flag for retval copy to use. |
| 362 | SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag); |
| 363 | SmallVector<SDValue, 8> Ops; |
| 364 | Ops.push_back(Chain); |
| 365 | Ops.push_back(Callee); |
| 366 | |
| 367 | // Add argument registers to the end of the list so that they are |
| 368 | // known live into the call. |
| 369 | for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) |
| 370 | Ops.push_back(DAG.getRegister(RegsToPass[i].first, |
| 371 | RegsToPass[i].second.getValueType())); |
| 372 | |
| 373 | if (InFlag.getNode()) |
| 374 | Ops.push_back(InFlag); |
| 375 | |
| 376 | Chain = DAG.getNode(SystemZISD::CALL, dl, NodeTys, &Ops[0], Ops.size()); |
| 377 | InFlag = Chain.getValue(1); |
| 378 | |
| 379 | // Create the CALLSEQ_END node. |
| 380 | Chain = DAG.getCALLSEQ_END(Chain, |
| 381 | DAG.getConstant(NumBytes, getPointerTy(), true), |
| 382 | DAG.getConstant(0, getPointerTy(), true), |
| 383 | InFlag); |
| 384 | InFlag = Chain.getValue(1); |
| 385 | |
| 386 | // Handle result values, copying them out of physregs into vregs that we |
| 387 | // return. |
| 388 | return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG), |
| 389 | Op.getResNo()); |
| 390 | } |
| 391 | |
| 392 | /// LowerCallResult - Lower the result values of an ISD::CALL into the |
| 393 | /// appropriate copies out of appropriate physical registers. This assumes that |
| 394 | /// Chain/InFlag are the input chain/flag to use, and that TheCall is the call |
| 395 | /// being lowered. Returns a SDNode with the same number of values as the |
| 396 | /// ISD::CALL. |
| 397 | SDNode* |
| 398 | SystemZTargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag, |
| 399 | CallSDNode *TheCall, |
| 400 | unsigned CallingConv, |
| 401 | SelectionDAG &DAG) { |
| 402 | bool isVarArg = TheCall->isVarArg(); |
| 403 | DebugLoc dl = TheCall->getDebugLoc(); |
| 404 | |
| 405 | // Assign locations to each value returned by this call. |
| 406 | SmallVector<CCValAssign, 16> RVLocs; |
| 407 | CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs); |
| 408 | |
| 409 | CCInfo.AnalyzeCallResult(TheCall, RetCC_SystemZ); |
| 410 | SmallVector<SDValue, 8> ResultVals; |
| 411 | |
| 412 | // Copy all of the result registers out of their specified physreg. |
| 413 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
Anton Korobeynikov | 22836d1 | 2009-07-16 13:58:24 +0000 | [diff] [blame] | 414 | CCValAssign &VA = RVLocs[i]; |
| 415 | |
| 416 | Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), |
| 417 | VA.getLocVT(), InFlag).getValue(1); |
| 418 | SDValue RetValue = Chain.getValue(0); |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 419 | InFlag = Chain.getValue(2); |
Anton Korobeynikov | 22836d1 | 2009-07-16 13:58:24 +0000 | [diff] [blame] | 420 | |
| 421 | // If this is an 8/16/32-bit value, it is really passed promoted to 64 |
| 422 | // bits. Insert an assert[sz]ext to capture this, then truncate to the |
| 423 | // right size. |
| 424 | if (VA.getLocInfo() == CCValAssign::SExt) |
| 425 | RetValue = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), RetValue, |
| 426 | DAG.getValueType(VA.getValVT())); |
| 427 | else if (VA.getLocInfo() == CCValAssign::ZExt) |
| 428 | RetValue = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), RetValue, |
| 429 | DAG.getValueType(VA.getValVT())); |
| 430 | |
| 431 | if (VA.getLocInfo() != CCValAssign::Full) |
| 432 | RetValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), RetValue); |
| 433 | |
| 434 | ResultVals.push_back(RetValue); |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | ResultVals.push_back(Chain); |
| 438 | |
| 439 | // Merge everything together with a MERGE_VALUES node. |
| 440 | return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(), |
| 441 | &ResultVals[0], ResultVals.size()).getNode(); |
| 442 | } |
| 443 | |
| 444 | |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 445 | SDValue SystemZTargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) { |
| 446 | // CCValAssign - represent the assignment of the return value to a location |
| 447 | SmallVector<CCValAssign, 16> RVLocs; |
| 448 | unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv(); |
| 449 | bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg(); |
| 450 | DebugLoc dl = Op.getDebugLoc(); |
| 451 | |
| 452 | // CCState - Info about the registers and stack slot. |
| 453 | CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs); |
| 454 | |
| 455 | // Analize return values of ISD::RET |
| 456 | CCInfo.AnalyzeReturn(Op.getNode(), RetCC_SystemZ); |
| 457 | |
| 458 | // If this is the first return lowered for this function, add the regs to the |
| 459 | // liveout set for the function. |
| 460 | if (DAG.getMachineFunction().getRegInfo().liveout_empty()) { |
| 461 | for (unsigned i = 0; i != RVLocs.size(); ++i) |
| 462 | if (RVLocs[i].isRegLoc()) |
| 463 | DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg()); |
| 464 | } |
| 465 | |
| 466 | // The chain is always operand #0 |
| 467 | SDValue Chain = Op.getOperand(0); |
| 468 | SDValue Flag; |
| 469 | |
| 470 | // Copy the result values into the output registers. |
| 471 | for (unsigned i = 0; i != RVLocs.size(); ++i) { |
| 472 | CCValAssign &VA = RVLocs[i]; |
Anton Korobeynikov | a51752c | 2009-07-16 13:42:31 +0000 | [diff] [blame] | 473 | SDValue ResValue = Op.getOperand(i*2+1); |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 474 | assert(VA.isRegLoc() && "Can only return in registers!"); |
| 475 | |
Anton Korobeynikov | a51752c | 2009-07-16 13:42:31 +0000 | [diff] [blame] | 476 | // If this is an 8/16/32-bit value, it is really should be passed promoted |
| 477 | // to 64 bits. |
| 478 | if (VA.getLocInfo() == CCValAssign::SExt) |
| 479 | ResValue = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ResValue); |
| 480 | else if (VA.getLocInfo() == CCValAssign::ZExt) |
| 481 | ResValue = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ResValue); |
| 482 | else if (VA.getLocInfo() == CCValAssign::AExt) |
| 483 | ResValue = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ResValue); |
| 484 | |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 485 | // ISD::RET => ret chain, (regnum1,val1), ... |
| 486 | // So i*2+1 index only the regnums |
Anton Korobeynikov | a51752c | 2009-07-16 13:42:31 +0000 | [diff] [blame] | 487 | Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ResValue, Flag); |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 488 | |
| 489 | // Guarantee that all emitted copies are stuck together, |
| 490 | // avoiding something bad. |
| 491 | Flag = Chain.getValue(1); |
| 492 | } |
| 493 | |
| 494 | if (Flag.getNode()) |
| 495 | return DAG.getNode(SystemZISD::RET_FLAG, dl, MVT::Other, Chain, Flag); |
| 496 | |
| 497 | // Return Void |
| 498 | return DAG.getNode(SystemZISD::RET_FLAG, dl, MVT::Other, Chain); |
| 499 | } |
| 500 | |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 501 | SDValue SystemZTargetLowering::EmitCmp(SDValue LHS, SDValue RHS, |
| 502 | ISD::CondCode CC, SDValue &SystemZCC, |
| 503 | SelectionDAG &DAG) { |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 504 | // FIXME: Emit a test if RHS is zero |
| 505 | |
| 506 | bool isUnsigned = false; |
| 507 | SystemZCC::CondCodes TCC; |
| 508 | switch (CC) { |
| 509 | default: assert(0 && "Invalid integer condition!"); |
| 510 | case ISD::SETEQ: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 511 | case ISD::SETOEQ: |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 512 | TCC = SystemZCC::E; |
| 513 | break; |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 514 | case ISD::SETUEQ: |
| 515 | TCC = SystemZCC::NLH; |
| 516 | break; |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 517 | case ISD::SETNE: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 518 | case ISD::SETONE: |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 519 | TCC = SystemZCC::NE; |
| 520 | break; |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 521 | case ISD::SETUNE: |
| 522 | TCC = SystemZCC::LH; |
| 523 | break; |
| 524 | case ISD::SETO: |
| 525 | TCC = SystemZCC::O; |
| 526 | break; |
| 527 | case ISD::SETUO: |
| 528 | TCC = SystemZCC::NO; |
| 529 | break; |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 530 | case ISD::SETULE: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 531 | if (LHS.getValueType().isFloatingPoint()) { |
| 532 | TCC = SystemZCC::NH; |
| 533 | break; |
| 534 | } |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 535 | isUnsigned = true; // FALLTHROUGH |
| 536 | case ISD::SETLE: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 537 | case ISD::SETOLE: |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 538 | TCC = SystemZCC::LE; |
| 539 | break; |
| 540 | case ISD::SETUGE: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 541 | if (LHS.getValueType().isFloatingPoint()) { |
| 542 | TCC = SystemZCC::NL; |
| 543 | break; |
| 544 | } |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 545 | isUnsigned = true; // FALLTHROUGH |
| 546 | case ISD::SETGE: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 547 | case ISD::SETOGE: |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 548 | TCC = SystemZCC::HE; |
| 549 | break; |
| 550 | case ISD::SETUGT: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 551 | if (LHS.getValueType().isFloatingPoint()) { |
| 552 | TCC = SystemZCC::NLE; |
| 553 | break; |
| 554 | } |
| 555 | isUnsigned = true; // FALLTHROUGH |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 556 | case ISD::SETGT: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 557 | case ISD::SETOGT: |
| 558 | TCC = SystemZCC::H; |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 559 | break; |
| 560 | case ISD::SETULT: |
Anton Korobeynikov | 10c086c | 2009-07-16 14:19:54 +0000 | [diff] [blame] | 561 | if (LHS.getValueType().isFloatingPoint()) { |
| 562 | TCC = SystemZCC::NHE; |
| 563 | break; |
| 564 | } |
| 565 | isUnsigned = true; // FALLTHROUGH |
| 566 | case ISD::SETLT: |
| 567 | case ISD::SETOLT: |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 568 | TCC = SystemZCC::L; |
| 569 | break; |
| 570 | } |
| 571 | |
| 572 | SystemZCC = DAG.getConstant(TCC, MVT::i32); |
| 573 | |
| 574 | DebugLoc dl = LHS.getDebugLoc(); |
| 575 | return DAG.getNode((isUnsigned ? SystemZISD::UCMP : SystemZISD::CMP), |
| 576 | dl, MVT::Flag, LHS, RHS); |
| 577 | } |
| 578 | |
| 579 | |
| 580 | SDValue SystemZTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG &DAG) { |
| 581 | SDValue Chain = Op.getOperand(0); |
| 582 | ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get(); |
| 583 | SDValue LHS = Op.getOperand(2); |
| 584 | SDValue RHS = Op.getOperand(3); |
| 585 | SDValue Dest = Op.getOperand(4); |
| 586 | DebugLoc dl = Op.getDebugLoc(); |
| 587 | |
| 588 | SDValue SystemZCC; |
| 589 | SDValue Flag = EmitCmp(LHS, RHS, CC, SystemZCC, DAG); |
| 590 | return DAG.getNode(SystemZISD::BRCOND, dl, Op.getValueType(), |
| 591 | Chain, Dest, SystemZCC, Flag); |
| 592 | } |
| 593 | |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 594 | SDValue SystemZTargetLowering::LowerSELECT_CC(SDValue Op, SelectionDAG &DAG) { |
| 595 | SDValue LHS = Op.getOperand(0); |
| 596 | SDValue RHS = Op.getOperand(1); |
| 597 | SDValue TrueV = Op.getOperand(2); |
| 598 | SDValue FalseV = Op.getOperand(3); |
| 599 | ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get(); |
| 600 | DebugLoc dl = Op.getDebugLoc(); |
| 601 | |
| 602 | SDValue SystemZCC; |
| 603 | SDValue Flag = EmitCmp(LHS, RHS, CC, SystemZCC, DAG); |
| 604 | |
| 605 | SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag); |
| 606 | SmallVector<SDValue, 4> Ops; |
| 607 | Ops.push_back(TrueV); |
| 608 | Ops.push_back(FalseV); |
| 609 | Ops.push_back(SystemZCC); |
| 610 | Ops.push_back(Flag); |
| 611 | |
| 612 | return DAG.getNode(SystemZISD::SELECT, dl, VTs, &Ops[0], Ops.size()); |
| 613 | } |
| 614 | |
Anton Korobeynikov | bad769f | 2009-07-16 13:57:27 +0000 | [diff] [blame] | 615 | SDValue SystemZTargetLowering::LowerGlobalAddress(SDValue Op, |
| 616 | SelectionDAG &DAG) { |
| 617 | DebugLoc dl = Op.getDebugLoc(); |
| 618 | GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); |
Anton Korobeynikov | 6fe326c | 2009-07-16 14:16:05 +0000 | [diff] [blame] | 619 | int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset(); |
Anton Korobeynikov | bad769f | 2009-07-16 13:57:27 +0000 | [diff] [blame] | 620 | |
Anton Korobeynikov | 6fe326c | 2009-07-16 14:16:05 +0000 | [diff] [blame] | 621 | bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_; |
| 622 | bool ExtraLoadRequired = |
| 623 | Subtarget.GVRequiresExtraLoad(GV, getTargetMachine(), false); |
| 624 | |
| 625 | SDValue Result; |
| 626 | if (!IsPic && !ExtraLoadRequired) { |
| 627 | Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset); |
| 628 | Offset = 0; |
| 629 | } else { |
| 630 | unsigned char OpFlags = 0; |
| 631 | if (ExtraLoadRequired) |
| 632 | OpFlags = SystemZII::MO_GOTENT; |
| 633 | |
| 634 | Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0, OpFlags); |
| 635 | } |
| 636 | |
| 637 | Result = DAG.getNode(SystemZISD::PCRelativeWrapper, dl, |
| 638 | getPointerTy(), Result); |
| 639 | |
| 640 | if (ExtraLoadRequired) |
| 641 | Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result, |
| 642 | PseudoSourceValue::getGOT(), 0); |
| 643 | |
| 644 | // If there was a non-zero offset that we didn't fold, create an explicit |
| 645 | // addition for it. |
| 646 | if (Offset != 0) |
| 647 | Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result, |
| 648 | DAG.getConstant(Offset, getPointerTy())); |
| 649 | |
| 650 | return Result; |
Anton Korobeynikov | bad769f | 2009-07-16 13:57:27 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Anton Korobeynikov | ae53567 | 2009-07-16 14:19:35 +0000 | [diff] [blame] | 653 | // FIXME: PIC here |
Anton Korobeynikov | c16cdc5 | 2009-07-16 14:07:50 +0000 | [diff] [blame] | 654 | SDValue SystemZTargetLowering::LowerJumpTable(SDValue Op, |
| 655 | SelectionDAG &DAG) { |
| 656 | DebugLoc dl = Op.getDebugLoc(); |
| 657 | JumpTableSDNode *JT = cast<JumpTableSDNode>(Op); |
| 658 | SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy()); |
| 659 | |
| 660 | return DAG.getNode(SystemZISD::PCRelativeWrapper, dl, getPointerTy(), Result); |
| 661 | } |
| 662 | |
Anton Korobeynikov | ae53567 | 2009-07-16 14:19:35 +0000 | [diff] [blame] | 663 | |
| 664 | // FIXME: PIC here |
| 665 | // FIXME: This is just dirty hack. We need to lower cpool properly |
| 666 | SDValue SystemZTargetLowering::LowerConstantPool(SDValue Op, |
| 667 | SelectionDAG &DAG) { |
| 668 | DebugLoc dl = Op.getDebugLoc(); |
| 669 | ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op); |
| 670 | |
| 671 | SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(), |
| 672 | CP->getAlignment(), |
| 673 | CP->getOffset()); |
| 674 | |
| 675 | return DAG.getNode(SystemZISD::PCRelativeWrapper, dl, getPointerTy(), Result); |
| 676 | } |
| 677 | |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 678 | const char *SystemZTargetLowering::getTargetNodeName(unsigned Opcode) const { |
| 679 | switch (Opcode) { |
Anton Korobeynikov | 87a24e3 | 2009-07-16 13:28:59 +0000 | [diff] [blame] | 680 | case SystemZISD::RET_FLAG: return "SystemZISD::RET_FLAG"; |
Anton Korobeynikov | ba249e4 | 2009-07-16 13:50:21 +0000 | [diff] [blame] | 681 | case SystemZISD::CALL: return "SystemZISD::CALL"; |
Anton Korobeynikov | 4ec3e5f | 2009-07-16 13:52:31 +0000 | [diff] [blame] | 682 | case SystemZISD::BRCOND: return "SystemZISD::BRCOND"; |
| 683 | case SystemZISD::CMP: return "SystemZISD::CMP"; |
| 684 | case SystemZISD::UCMP: return "SystemZISD::UCMP"; |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 685 | case SystemZISD::SELECT: return "SystemZISD::SELECT"; |
Anton Korobeynikov | bad769f | 2009-07-16 13:57:27 +0000 | [diff] [blame] | 686 | case SystemZISD::PCRelativeWrapper: return "SystemZISD::PCRelativeWrapper"; |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 687 | default: return NULL; |
| 688 | } |
| 689 | } |
| 690 | |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 691 | //===----------------------------------------------------------------------===// |
| 692 | // Other Lowering Code |
| 693 | //===----------------------------------------------------------------------===// |
| 694 | |
| 695 | MachineBasicBlock* |
| 696 | SystemZTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI, |
| 697 | MachineBasicBlock *BB) const { |
| 698 | const SystemZInstrInfo &TII = *TM.getInstrInfo(); |
| 699 | DebugLoc dl = MI->getDebugLoc(); |
Anton Korobeynikov | da723d7 | 2009-07-16 14:22:15 +0000 | [diff] [blame] | 700 | assert((MI->getOpcode() == SystemZ::Select32 || |
| 701 | MI->getOpcode() == SystemZ::SelectF32 || |
| 702 | MI->getOpcode() == SystemZ::Select64 || |
| 703 | MI->getOpcode() == SystemZ::SelectF64) && |
Anton Korobeynikov | 7d1e39b | 2009-07-16 13:52:51 +0000 | [diff] [blame] | 704 | "Unexpected instr type to insert"); |
| 705 | |
| 706 | // To "insert" a SELECT instruction, we actually have to insert the diamond |
| 707 | // control-flow pattern. The incoming instruction knows the destination vreg |
| 708 | // to set, the condition code register to branch on, the true/false values to |
| 709 | // select between, and a branch opcode to use. |
| 710 | const BasicBlock *LLVM_BB = BB->getBasicBlock(); |
| 711 | MachineFunction::iterator I = BB; |
| 712 | ++I; |
| 713 | |
| 714 | // thisMBB: |
| 715 | // ... |
| 716 | // TrueVal = ... |
| 717 | // cmpTY ccX, r1, r2 |
| 718 | // jCC copy1MBB |
| 719 | // fallthrough --> copy0MBB |
| 720 | MachineBasicBlock *thisMBB = BB; |
| 721 | MachineFunction *F = BB->getParent(); |
| 722 | MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 723 | MachineBasicBlock *copy1MBB = F->CreateMachineBasicBlock(LLVM_BB); |
| 724 | SystemZCC::CondCodes CC = (SystemZCC::CondCodes)MI->getOperand(3).getImm(); |
| 725 | BuildMI(BB, dl, TII.getBrCond(CC)).addMBB(copy1MBB); |
| 726 | F->insert(I, copy0MBB); |
| 727 | F->insert(I, copy1MBB); |
| 728 | // Update machine-CFG edges by transferring all successors of the current |
| 729 | // block to the new block which will contain the Phi node for the select. |
| 730 | copy1MBB->transferSuccessors(BB); |
| 731 | // Next, add the true and fallthrough blocks as its successors. |
| 732 | BB->addSuccessor(copy0MBB); |
| 733 | BB->addSuccessor(copy1MBB); |
| 734 | |
| 735 | // copy0MBB: |
| 736 | // %FalseValue = ... |
| 737 | // # fallthrough to copy1MBB |
| 738 | BB = copy0MBB; |
| 739 | |
| 740 | // Update machine-CFG edges |
| 741 | BB->addSuccessor(copy1MBB); |
| 742 | |
| 743 | // copy1MBB: |
| 744 | // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ] |
| 745 | // ... |
| 746 | BB = copy1MBB; |
| 747 | BuildMI(BB, dl, TII.get(SystemZ::PHI), |
| 748 | MI->getOperand(0).getReg()) |
| 749 | .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB) |
| 750 | .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB); |
| 751 | |
| 752 | F->DeleteMachineInstr(MI); // The pseudo instruction is gone now. |
| 753 | return BB; |
| 754 | } |