[Sparc] Add support for inline assembly constraint 'I'.
[oota-llvm.git] / lib / Target / Sparc / SparcISelLowering.cpp
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 "MCTargetDesc/SparcBaseInfo.h"
17 #include "SparcMachineFunctionInfo.h"
18 #include "SparcRegisterInfo.h"
19 #include "SparcTargetMachine.h"
20 #include "llvm/CodeGen/CallingConvLower.h"
21 #include "llvm/CodeGen/MachineFrameInfo.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/MachineInstrBuilder.h"
24 #include "llvm/CodeGen/MachineRegisterInfo.h"
25 #include "llvm/CodeGen/SelectionDAG.h"
26 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
27 #include "llvm/IR/DerivedTypes.h"
28 #include "llvm/IR/Function.h"
29 #include "llvm/IR/Module.h"
30 #include "llvm/Support/ErrorHandling.h"
31 using namespace llvm;
32
33
34 //===----------------------------------------------------------------------===//
35 // Calling Convention Implementation
36 //===----------------------------------------------------------------------===//
37
38 static bool CC_Sparc_Assign_SRet(unsigned &ValNo, MVT &ValVT,
39                                  MVT &LocVT, CCValAssign::LocInfo &LocInfo,
40                                  ISD::ArgFlagsTy &ArgFlags, CCState &State)
41 {
42   assert (ArgFlags.isSRet());
43
44   // Assign SRet argument.
45   State.addLoc(CCValAssign::getCustomMem(ValNo, ValVT,
46                                          0,
47                                          LocVT, LocInfo));
48   return true;
49 }
50
51 static bool CC_Sparc_Assign_f64(unsigned &ValNo, MVT &ValVT,
52                                 MVT &LocVT, CCValAssign::LocInfo &LocInfo,
53                                 ISD::ArgFlagsTy &ArgFlags, CCState &State)
54 {
55   static const uint16_t RegList[] = {
56     SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
57   };
58   // Try to get first reg.
59   if (unsigned Reg = State.AllocateReg(RegList, 6)) {
60     State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg, LocVT, LocInfo));
61   } else {
62     // Assign whole thing in stack.
63     State.addLoc(CCValAssign::getCustomMem(ValNo, ValVT,
64                                            State.AllocateStack(8,4),
65                                            LocVT, LocInfo));
66     return true;
67   }
68
69   // Try to get second reg.
70   if (unsigned Reg = State.AllocateReg(RegList, 6))
71     State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg, LocVT, LocInfo));
72   else
73     State.addLoc(CCValAssign::getCustomMem(ValNo, ValVT,
74                                            State.AllocateStack(4,4),
75                                            LocVT, LocInfo));
76   return true;
77 }
78
79 // Allocate a full-sized argument for the 64-bit ABI.
80 static bool CC_Sparc64_Full(unsigned &ValNo, MVT &ValVT,
81                             MVT &LocVT, CCValAssign::LocInfo &LocInfo,
82                             ISD::ArgFlagsTy &ArgFlags, CCState &State) {
83   assert((LocVT == MVT::f32 || LocVT == MVT::f128
84           || LocVT.getSizeInBits() == 64) &&
85          "Can't handle non-64 bits locations");
86
87   // Stack space is allocated for all arguments starting from [%fp+BIAS+128].
88   unsigned size      = (LocVT == MVT::f128) ? 16 : 8;
89   unsigned alignment = (LocVT == MVT::f128) ? 16 : 8;
90   unsigned Offset = State.AllocateStack(size, alignment);
91   unsigned Reg = 0;
92
93   if (LocVT == MVT::i64 && Offset < 6*8)
94     // Promote integers to %i0-%i5.
95     Reg = SP::I0 + Offset/8;
96   else if (LocVT == MVT::f64 && Offset < 16*8)
97     // Promote doubles to %d0-%d30. (Which LLVM calls D0-D15).
98     Reg = SP::D0 + Offset/8;
99   else if (LocVT == MVT::f32 && Offset < 16*8)
100     // Promote floats to %f1, %f3, ...
101     Reg = SP::F1 + Offset/4;
102   else if (LocVT == MVT::f128 && Offset < 16*8)
103     // Promote long doubles to %q0-%q28. (Which LLVM calls Q0-Q7).
104     Reg = SP::Q0 + Offset/16;
105
106   // Promote to register when possible, otherwise use the stack slot.
107   if (Reg) {
108     State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
109     return true;
110   }
111
112   // This argument goes on the stack in an 8-byte slot.
113   // When passing floats, LocVT is smaller than 8 bytes. Adjust the offset to
114   // the right-aligned float. The first 4 bytes of the stack slot are undefined.
115   if (LocVT == MVT::f32)
116     Offset += 4;
117
118   State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
119   return true;
120 }
121
122 // Allocate a half-sized argument for the 64-bit ABI.
123 //
124 // This is used when passing { float, int } structs by value in registers.
125 static bool CC_Sparc64_Half(unsigned &ValNo, MVT &ValVT,
126                             MVT &LocVT, CCValAssign::LocInfo &LocInfo,
127                             ISD::ArgFlagsTy &ArgFlags, CCState &State) {
128   assert(LocVT.getSizeInBits() == 32 && "Can't handle non-32 bits locations");
129   unsigned Offset = State.AllocateStack(4, 4);
130
131   if (LocVT == MVT::f32 && Offset < 16*8) {
132     // Promote floats to %f0-%f31.
133     State.addLoc(CCValAssign::getReg(ValNo, ValVT, SP::F0 + Offset/4,
134                                      LocVT, LocInfo));
135     return true;
136   }
137
138   if (LocVT == MVT::i32 && Offset < 6*8) {
139     // Promote integers to %i0-%i5, using half the register.
140     unsigned Reg = SP::I0 + Offset/8;
141     LocVT = MVT::i64;
142     LocInfo = CCValAssign::AExt;
143
144     // Set the Custom bit if this i32 goes in the high bits of a register.
145     if (Offset % 8 == 0)
146       State.addLoc(CCValAssign::getCustomReg(ValNo, ValVT, Reg,
147                                              LocVT, LocInfo));
148     else
149       State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
150     return true;
151   }
152
153   State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
154   return true;
155 }
156
157 #include "SparcGenCallingConv.inc"
158
159 // The calling conventions in SparcCallingConv.td are described in terms of the
160 // callee's register window. This function translates registers to the
161 // corresponding caller window %o register.
162 static unsigned toCallerWindow(unsigned Reg) {
163   assert(SP::I0 + 7 == SP::I7 && SP::O0 + 7 == SP::O7 && "Unexpected enum");
164   if (Reg >= SP::I0 && Reg <= SP::I7)
165     return Reg - SP::I0 + SP::O0;
166   return Reg;
167 }
168
169 SDValue
170 SparcTargetLowering::LowerReturn(SDValue Chain,
171                                  CallingConv::ID CallConv, bool IsVarArg,
172                                  const SmallVectorImpl<ISD::OutputArg> &Outs,
173                                  const SmallVectorImpl<SDValue> &OutVals,
174                                  SDLoc DL, SelectionDAG &DAG) const {
175   if (Subtarget->is64Bit())
176     return LowerReturn_64(Chain, CallConv, IsVarArg, Outs, OutVals, DL, DAG);
177   return LowerReturn_32(Chain, CallConv, IsVarArg, Outs, OutVals, DL, DAG);
178 }
179
180 SDValue
181 SparcTargetLowering::LowerReturn_32(SDValue Chain,
182                                     CallingConv::ID CallConv, bool IsVarArg,
183                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
184                                     const SmallVectorImpl<SDValue> &OutVals,
185                                     SDLoc DL, SelectionDAG &DAG) const {
186   MachineFunction &MF = DAG.getMachineFunction();
187
188   // CCValAssign - represent the assignment of the return value to locations.
189   SmallVector<CCValAssign, 16> RVLocs;
190
191   // CCState - Info about the registers and stack slot.
192   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(),
193                  DAG.getTarget(), RVLocs, *DAG.getContext());
194
195   // Analyze return values.
196   CCInfo.AnalyzeReturn(Outs, RetCC_Sparc32);
197
198   SDValue Flag;
199   SmallVector<SDValue, 4> RetOps(1, Chain);
200   // Make room for the return address offset.
201   RetOps.push_back(SDValue());
202
203   // Copy the result values into the output registers.
204   for (unsigned i = 0; i != RVLocs.size(); ++i) {
205     CCValAssign &VA = RVLocs[i];
206     assert(VA.isRegLoc() && "Can only return in registers!");
207
208     Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(),
209                              OutVals[i], Flag);
210
211     // Guarantee that all emitted copies are stuck together with flags.
212     Flag = Chain.getValue(1);
213     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
214   }
215
216   unsigned RetAddrOffset = 8; // Call Inst + Delay Slot
217   // If the function returns a struct, copy the SRetReturnReg to I0
218   if (MF.getFunction()->hasStructRetAttr()) {
219     SparcMachineFunctionInfo *SFI = MF.getInfo<SparcMachineFunctionInfo>();
220     unsigned Reg = SFI->getSRetReturnReg();
221     if (!Reg)
222       llvm_unreachable("sret virtual register not created in the entry block");
223     SDValue Val = DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
224     Chain = DAG.getCopyToReg(Chain, DL, SP::I0, Val, Flag);
225     Flag = Chain.getValue(1);
226     RetOps.push_back(DAG.getRegister(SP::I0, getPointerTy()));
227     RetAddrOffset = 12; // CallInst + Delay Slot + Unimp
228   }
229
230   RetOps[0] = Chain;  // Update chain.
231   RetOps[1] = DAG.getConstant(RetAddrOffset, MVT::i32);
232
233   // Add the flag if we have it.
234   if (Flag.getNode())
235     RetOps.push_back(Flag);
236
237   return DAG.getNode(SPISD::RET_FLAG, DL, MVT::Other,
238                      &RetOps[0], RetOps.size());
239 }
240
241 // Lower return values for the 64-bit ABI.
242 // Return values are passed the exactly the same way as function arguments.
243 SDValue
244 SparcTargetLowering::LowerReturn_64(SDValue Chain,
245                                     CallingConv::ID CallConv, bool IsVarArg,
246                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
247                                     const SmallVectorImpl<SDValue> &OutVals,
248                                     SDLoc DL, SelectionDAG &DAG) const {
249   // CCValAssign - represent the assignment of the return value to locations.
250   SmallVector<CCValAssign, 16> RVLocs;
251
252   // CCState - Info about the registers and stack slot.
253   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(),
254                  DAG.getTarget(), RVLocs, *DAG.getContext());
255
256   // Analyze return values.
257   CCInfo.AnalyzeReturn(Outs, RetCC_Sparc64);
258
259   SDValue Flag;
260   SmallVector<SDValue, 4> RetOps(1, Chain);
261
262   // The second operand on the return instruction is the return address offset.
263   // The return address is always %i7+8 with the 64-bit ABI.
264   RetOps.push_back(DAG.getConstant(8, MVT::i32));
265
266   // Copy the result values into the output registers.
267   for (unsigned i = 0; i != RVLocs.size(); ++i) {
268     CCValAssign &VA = RVLocs[i];
269     assert(VA.isRegLoc() && "Can only return in registers!");
270     SDValue OutVal = OutVals[i];
271
272     // Integer return values must be sign or zero extended by the callee.
273     switch (VA.getLocInfo()) {
274     case CCValAssign::Full: break;
275     case CCValAssign::SExt:
276       OutVal = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), OutVal);
277       break;
278     case CCValAssign::ZExt:
279       OutVal = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), OutVal);
280       break;
281     case CCValAssign::AExt:
282       OutVal = DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), OutVal);
283       break;
284     default:
285       llvm_unreachable("Unknown loc info!");
286     }
287
288     // The custom bit on an i32 return value indicates that it should be passed
289     // in the high bits of the register.
290     if (VA.getValVT() == MVT::i32 && VA.needsCustom()) {
291       OutVal = DAG.getNode(ISD::SHL, DL, MVT::i64, OutVal,
292                            DAG.getConstant(32, MVT::i32));
293
294       // The next value may go in the low bits of the same register.
295       // Handle both at once.
296       if (i+1 < RVLocs.size() && RVLocs[i+1].getLocReg() == VA.getLocReg()) {
297         SDValue NV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, OutVals[i+1]);
298         OutVal = DAG.getNode(ISD::OR, DL, MVT::i64, OutVal, NV);
299         // Skip the next value, it's already done.
300         ++i;
301       }
302     }
303
304     Chain = DAG.getCopyToReg(Chain, DL, VA.getLocReg(), OutVal, Flag);
305
306     // Guarantee that all emitted copies are stuck together with flags.
307     Flag = Chain.getValue(1);
308     RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
309   }
310
311   RetOps[0] = Chain;  // Update chain.
312
313   // Add the flag if we have it.
314   if (Flag.getNode())
315     RetOps.push_back(Flag);
316
317   return DAG.getNode(SPISD::RET_FLAG, DL, MVT::Other,
318                      &RetOps[0], RetOps.size());
319 }
320
321 SDValue SparcTargetLowering::
322 LowerFormalArguments(SDValue Chain,
323                      CallingConv::ID CallConv,
324                      bool IsVarArg,
325                      const SmallVectorImpl<ISD::InputArg> &Ins,
326                      SDLoc DL,
327                      SelectionDAG &DAG,
328                      SmallVectorImpl<SDValue> &InVals) const {
329   if (Subtarget->is64Bit())
330     return LowerFormalArguments_64(Chain, CallConv, IsVarArg, Ins,
331                                    DL, DAG, InVals);
332   return LowerFormalArguments_32(Chain, CallConv, IsVarArg, Ins,
333                                  DL, DAG, InVals);
334 }
335
336 /// LowerFormalArguments32 - V8 uses a very simple ABI, where all values are
337 /// passed in either one or two GPRs, including FP values.  TODO: we should
338 /// pass FP values in FP registers for fastcc functions.
339 SDValue SparcTargetLowering::
340 LowerFormalArguments_32(SDValue Chain,
341                         CallingConv::ID CallConv,
342                         bool isVarArg,
343                         const SmallVectorImpl<ISD::InputArg> &Ins,
344                         SDLoc dl,
345                         SelectionDAG &DAG,
346                         SmallVectorImpl<SDValue> &InVals) const {
347   MachineFunction &MF = DAG.getMachineFunction();
348   MachineRegisterInfo &RegInfo = MF.getRegInfo();
349   SparcMachineFunctionInfo *FuncInfo = MF.getInfo<SparcMachineFunctionInfo>();
350
351   // Assign locations to all of the incoming arguments.
352   SmallVector<CCValAssign, 16> ArgLocs;
353   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
354                  getTargetMachine(), ArgLocs, *DAG.getContext());
355   CCInfo.AnalyzeFormalArguments(Ins, CC_Sparc32);
356
357   const unsigned StackOffset = 92;
358
359   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
360     CCValAssign &VA = ArgLocs[i];
361
362     if (i == 0  && Ins[i].Flags.isSRet()) {
363       // Get SRet from [%fp+64].
364       int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, 64, true);
365       SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
366       SDValue Arg = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
367                                 MachinePointerInfo(),
368                                 false, false, false, 0);
369       InVals.push_back(Arg);
370       continue;
371     }
372
373     if (VA.isRegLoc()) {
374       if (VA.needsCustom()) {
375         assert(VA.getLocVT() == MVT::f64);
376         unsigned VRegHi = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
377         MF.getRegInfo().addLiveIn(VA.getLocReg(), VRegHi);
378         SDValue HiVal = DAG.getCopyFromReg(Chain, dl, VRegHi, MVT::i32);
379
380         assert(i+1 < e);
381         CCValAssign &NextVA = ArgLocs[++i];
382
383         SDValue LoVal;
384         if (NextVA.isMemLoc()) {
385           int FrameIdx = MF.getFrameInfo()->
386             CreateFixedObject(4, StackOffset+NextVA.getLocMemOffset(),true);
387           SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
388           LoVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
389                               MachinePointerInfo(),
390                               false, false, false, 0);
391         } else {
392           unsigned loReg = MF.addLiveIn(NextVA.getLocReg(),
393                                         &SP::IntRegsRegClass);
394           LoVal = DAG.getCopyFromReg(Chain, dl, loReg, MVT::i32);
395         }
396         SDValue WholeValue =
397           DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, LoVal, HiVal);
398         WholeValue = DAG.getNode(ISD::BITCAST, dl, MVT::f64, WholeValue);
399         InVals.push_back(WholeValue);
400         continue;
401       }
402       unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
403       MF.getRegInfo().addLiveIn(VA.getLocReg(), VReg);
404       SDValue Arg = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i32);
405       if (VA.getLocVT() == MVT::f32)
406         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::f32, Arg);
407       else if (VA.getLocVT() != MVT::i32) {
408         Arg = DAG.getNode(ISD::AssertSext, dl, MVT::i32, Arg,
409                           DAG.getValueType(VA.getLocVT()));
410         Arg = DAG.getNode(ISD::TRUNCATE, dl, VA.getLocVT(), Arg);
411       }
412       InVals.push_back(Arg);
413       continue;
414     }
415
416     assert(VA.isMemLoc());
417
418     unsigned Offset = VA.getLocMemOffset()+StackOffset;
419
420     if (VA.needsCustom()) {
421       assert(VA.getValVT() == MVT::f64);
422       // If it is double-word aligned, just load.
423       if (Offset % 8 == 0) {
424         int FI = MF.getFrameInfo()->CreateFixedObject(8,
425                                                       Offset,
426                                                       true);
427         SDValue FIPtr = DAG.getFrameIndex(FI, getPointerTy());
428         SDValue Load = DAG.getLoad(VA.getValVT(), dl, Chain, FIPtr,
429                                    MachinePointerInfo(),
430                                    false,false, false, 0);
431         InVals.push_back(Load);
432         continue;
433       }
434
435       int FI = MF.getFrameInfo()->CreateFixedObject(4,
436                                                     Offset,
437                                                     true);
438       SDValue FIPtr = DAG.getFrameIndex(FI, getPointerTy());
439       SDValue HiVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
440                                   MachinePointerInfo(),
441                                   false, false, false, 0);
442       int FI2 = MF.getFrameInfo()->CreateFixedObject(4,
443                                                      Offset+4,
444                                                      true);
445       SDValue FIPtr2 = DAG.getFrameIndex(FI2, getPointerTy());
446
447       SDValue LoVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr2,
448                                   MachinePointerInfo(),
449                                   false, false, false, 0);
450
451       SDValue WholeValue =
452         DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, LoVal, HiVal);
453       WholeValue = DAG.getNode(ISD::BITCAST, dl, MVT::f64, WholeValue);
454       InVals.push_back(WholeValue);
455       continue;
456     }
457
458     int FI = MF.getFrameInfo()->CreateFixedObject(4,
459                                                   Offset,
460                                                   true);
461     SDValue FIPtr = DAG.getFrameIndex(FI, getPointerTy());
462     SDValue Load ;
463     if (VA.getValVT() == MVT::i32 || VA.getValVT() == MVT::f32) {
464       Load = DAG.getLoad(VA.getValVT(), dl, Chain, FIPtr,
465                          MachinePointerInfo(),
466                          false, false, false, 0);
467     } else {
468       ISD::LoadExtType LoadOp = ISD::SEXTLOAD;
469       // Sparc is big endian, so add an offset based on the ObjectVT.
470       unsigned Offset = 4-std::max(1U, VA.getValVT().getSizeInBits()/8);
471       FIPtr = DAG.getNode(ISD::ADD, dl, MVT::i32, FIPtr,
472                           DAG.getConstant(Offset, MVT::i32));
473       Load = DAG.getExtLoad(LoadOp, dl, MVT::i32, Chain, FIPtr,
474                             MachinePointerInfo(),
475                             VA.getValVT(), false, false,0);
476       Load = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), Load);
477     }
478     InVals.push_back(Load);
479   }
480
481   if (MF.getFunction()->hasStructRetAttr()) {
482     // Copy the SRet Argument to SRetReturnReg.
483     SparcMachineFunctionInfo *SFI = MF.getInfo<SparcMachineFunctionInfo>();
484     unsigned Reg = SFI->getSRetReturnReg();
485     if (!Reg) {
486       Reg = MF.getRegInfo().createVirtualRegister(&SP::IntRegsRegClass);
487       SFI->setSRetReturnReg(Reg);
488     }
489     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
490     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
491   }
492
493   // Store remaining ArgRegs to the stack if this is a varargs function.
494   if (isVarArg) {
495     static const uint16_t ArgRegs[] = {
496       SP::I0, SP::I1, SP::I2, SP::I3, SP::I4, SP::I5
497     };
498     unsigned NumAllocated = CCInfo.getFirstUnallocated(ArgRegs, 6);
499     const uint16_t *CurArgReg = ArgRegs+NumAllocated, *ArgRegEnd = ArgRegs+6;
500     unsigned ArgOffset = CCInfo.getNextStackOffset();
501     if (NumAllocated == 6)
502       ArgOffset += StackOffset;
503     else {
504       assert(!ArgOffset);
505       ArgOffset = 68+4*NumAllocated;
506     }
507
508     // Remember the vararg offset for the va_start implementation.
509     FuncInfo->setVarArgsFrameOffset(ArgOffset);
510
511     std::vector<SDValue> OutChains;
512
513     for (; CurArgReg != ArgRegEnd; ++CurArgReg) {
514       unsigned VReg = RegInfo.createVirtualRegister(&SP::IntRegsRegClass);
515       MF.getRegInfo().addLiveIn(*CurArgReg, VReg);
516       SDValue Arg = DAG.getCopyFromReg(DAG.getRoot(), dl, VReg, MVT::i32);
517
518       int FrameIdx = MF.getFrameInfo()->CreateFixedObject(4, ArgOffset,
519                                                           true);
520       SDValue FIPtr = DAG.getFrameIndex(FrameIdx, MVT::i32);
521
522       OutChains.push_back(DAG.getStore(DAG.getRoot(), dl, Arg, FIPtr,
523                                        MachinePointerInfo(),
524                                        false, false, 0));
525       ArgOffset += 4;
526     }
527
528     if (!OutChains.empty()) {
529       OutChains.push_back(Chain);
530       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
531                           &OutChains[0], OutChains.size());
532     }
533   }
534
535   return Chain;
536 }
537
538 // Lower formal arguments for the 64 bit ABI.
539 SDValue SparcTargetLowering::
540 LowerFormalArguments_64(SDValue Chain,
541                         CallingConv::ID CallConv,
542                         bool IsVarArg,
543                         const SmallVectorImpl<ISD::InputArg> &Ins,
544                         SDLoc DL,
545                         SelectionDAG &DAG,
546                         SmallVectorImpl<SDValue> &InVals) const {
547   MachineFunction &MF = DAG.getMachineFunction();
548
549   // Analyze arguments according to CC_Sparc64.
550   SmallVector<CCValAssign, 16> ArgLocs;
551   CCState CCInfo(CallConv, IsVarArg, DAG.getMachineFunction(),
552                  getTargetMachine(), ArgLocs, *DAG.getContext());
553   CCInfo.AnalyzeFormalArguments(Ins, CC_Sparc64);
554
555   // The argument array begins at %fp+BIAS+128, after the register save area.
556   const unsigned ArgArea = 128;
557
558   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
559     CCValAssign &VA = ArgLocs[i];
560     if (VA.isRegLoc()) {
561       // This argument is passed in a register.
562       // All integer register arguments are promoted by the caller to i64.
563
564       // Create a virtual register for the promoted live-in value.
565       unsigned VReg = MF.addLiveIn(VA.getLocReg(),
566                                    getRegClassFor(VA.getLocVT()));
567       SDValue Arg = DAG.getCopyFromReg(Chain, DL, VReg, VA.getLocVT());
568
569       // Get the high bits for i32 struct elements.
570       if (VA.getValVT() == MVT::i32 && VA.needsCustom())
571         Arg = DAG.getNode(ISD::SRL, DL, VA.getLocVT(), Arg,
572                           DAG.getConstant(32, MVT::i32));
573
574       // The caller promoted the argument, so insert an Assert?ext SDNode so we
575       // won't promote the value again in this function.
576       switch (VA.getLocInfo()) {
577       case CCValAssign::SExt:
578         Arg = DAG.getNode(ISD::AssertSext, DL, VA.getLocVT(), Arg,
579                           DAG.getValueType(VA.getValVT()));
580         break;
581       case CCValAssign::ZExt:
582         Arg = DAG.getNode(ISD::AssertZext, DL, VA.getLocVT(), Arg,
583                           DAG.getValueType(VA.getValVT()));
584         break;
585       default:
586         break;
587       }
588
589       // Truncate the register down to the argument type.
590       if (VA.isExtInLoc())
591         Arg = DAG.getNode(ISD::TRUNCATE, DL, VA.getValVT(), Arg);
592
593       InVals.push_back(Arg);
594       continue;
595     }
596
597     // The registers are exhausted. This argument was passed on the stack.
598     assert(VA.isMemLoc());
599     // The CC_Sparc64_Full/Half functions compute stack offsets relative to the
600     // beginning of the arguments area at %fp+BIAS+128.
601     unsigned Offset = VA.getLocMemOffset() + ArgArea;
602     unsigned ValSize = VA.getValVT().getSizeInBits() / 8;
603     // Adjust offset for extended arguments, SPARC is big-endian.
604     // The caller will have written the full slot with extended bytes, but we
605     // prefer our own extending loads.
606     if (VA.isExtInLoc())
607       Offset += 8 - ValSize;
608     int FI = MF.getFrameInfo()->CreateFixedObject(ValSize, Offset, true);
609     InVals.push_back(DAG.getLoad(VA.getValVT(), DL, Chain,
610                                  DAG.getFrameIndex(FI, getPointerTy()),
611                                  MachinePointerInfo::getFixedStack(FI),
612                                  false, false, false, 0));
613   }
614
615   if (!IsVarArg)
616     return Chain;
617
618   // This function takes variable arguments, some of which may have been passed
619   // in registers %i0-%i5. Variable floating point arguments are never passed
620   // in floating point registers. They go on %i0-%i5 or on the stack like
621   // integer arguments.
622   //
623   // The va_start intrinsic needs to know the offset to the first variable
624   // argument.
625   unsigned ArgOffset = CCInfo.getNextStackOffset();
626   SparcMachineFunctionInfo *FuncInfo = MF.getInfo<SparcMachineFunctionInfo>();
627   // Skip the 128 bytes of register save area.
628   FuncInfo->setVarArgsFrameOffset(ArgOffset + ArgArea +
629                                   Subtarget->getStackPointerBias());
630
631   // Save the variable arguments that were passed in registers.
632   // The caller is required to reserve stack space for 6 arguments regardless
633   // of how many arguments were actually passed.
634   SmallVector<SDValue, 8> OutChains;
635   for (; ArgOffset < 6*8; ArgOffset += 8) {
636     unsigned VReg = MF.addLiveIn(SP::I0 + ArgOffset/8, &SP::I64RegsRegClass);
637     SDValue VArg = DAG.getCopyFromReg(Chain, DL, VReg, MVT::i64);
638     int FI = MF.getFrameInfo()->CreateFixedObject(8, ArgOffset + ArgArea, true);
639     OutChains.push_back(DAG.getStore(Chain, DL, VArg,
640                                      DAG.getFrameIndex(FI, getPointerTy()),
641                                      MachinePointerInfo::getFixedStack(FI),
642                                      false, false, 0));
643   }
644
645   if (!OutChains.empty())
646     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
647                         &OutChains[0], OutChains.size());
648
649   return Chain;
650 }
651
652 SDValue
653 SparcTargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
654                                SmallVectorImpl<SDValue> &InVals) const {
655   if (Subtarget->is64Bit())
656     return LowerCall_64(CLI, InVals);
657   return LowerCall_32(CLI, InVals);
658 }
659
660 static bool hasReturnsTwiceAttr(SelectionDAG &DAG, SDValue Callee,
661                                      ImmutableCallSite *CS) {
662   if (CS)
663     return CS->hasFnAttr(Attribute::ReturnsTwice);
664
665   const Function *CalleeFn = 0;
666   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
667     CalleeFn = dyn_cast<Function>(G->getGlobal());
668   } else if (ExternalSymbolSDNode *E =
669              dyn_cast<ExternalSymbolSDNode>(Callee)) {
670     const Function *Fn = DAG.getMachineFunction().getFunction();
671     const Module *M = Fn->getParent();
672     const char *CalleeName = E->getSymbol();
673     CalleeFn = M->getFunction(CalleeName);
674   }
675
676   if (!CalleeFn)
677     return false;
678   return CalleeFn->hasFnAttribute(Attribute::ReturnsTwice);
679 }
680
681 // Lower a call for the 32-bit ABI.
682 SDValue
683 SparcTargetLowering::LowerCall_32(TargetLowering::CallLoweringInfo &CLI,
684                                   SmallVectorImpl<SDValue> &InVals) const {
685   SelectionDAG &DAG                     = CLI.DAG;
686   SDLoc &dl                             = CLI.DL;
687   SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
688   SmallVectorImpl<SDValue> &OutVals     = CLI.OutVals;
689   SmallVectorImpl<ISD::InputArg> &Ins   = CLI.Ins;
690   SDValue Chain                         = CLI.Chain;
691   SDValue Callee                        = CLI.Callee;
692   bool &isTailCall                      = CLI.IsTailCall;
693   CallingConv::ID CallConv              = CLI.CallConv;
694   bool isVarArg                         = CLI.IsVarArg;
695
696   // Sparc target does not yet support tail call optimization.
697   isTailCall = false;
698
699   // Analyze operands of the call, assigning locations to each operand.
700   SmallVector<CCValAssign, 16> ArgLocs;
701   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
702                  DAG.getTarget(), ArgLocs, *DAG.getContext());
703   CCInfo.AnalyzeCallOperands(Outs, CC_Sparc32);
704
705   // Get the size of the outgoing arguments stack space requirement.
706   unsigned ArgsSize = CCInfo.getNextStackOffset();
707
708   // Keep stack frames 8-byte aligned.
709   ArgsSize = (ArgsSize+7) & ~7;
710
711   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
712
713   // Create local copies for byval args.
714   SmallVector<SDValue, 8> ByValArgs;
715   for (unsigned i = 0,  e = Outs.size(); i != e; ++i) {
716     ISD::ArgFlagsTy Flags = Outs[i].Flags;
717     if (!Flags.isByVal())
718       continue;
719
720     SDValue Arg = OutVals[i];
721     unsigned Size = Flags.getByValSize();
722     unsigned Align = Flags.getByValAlign();
723
724     int FI = MFI->CreateStackObject(Size, Align, false);
725     SDValue FIPtr = DAG.getFrameIndex(FI, getPointerTy());
726     SDValue SizeNode = DAG.getConstant(Size, MVT::i32);
727
728     Chain = DAG.getMemcpy(Chain, dl, FIPtr, Arg, SizeNode, Align,
729                           false,        // isVolatile,
730                           (Size <= 32), // AlwaysInline if size <= 32
731                           MachinePointerInfo(), MachinePointerInfo());
732     ByValArgs.push_back(FIPtr);
733   }
734
735   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(ArgsSize, true),
736                                dl);
737
738   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
739   SmallVector<SDValue, 8> MemOpChains;
740
741   const unsigned StackOffset = 92;
742   bool hasStructRetAttr = false;
743   // Walk the register/memloc assignments, inserting copies/loads.
744   for (unsigned i = 0, realArgIdx = 0, byvalArgIdx = 0, e = ArgLocs.size();
745        i != e;
746        ++i, ++realArgIdx) {
747     CCValAssign &VA = ArgLocs[i];
748     SDValue Arg = OutVals[realArgIdx];
749
750     ISD::ArgFlagsTy Flags = Outs[realArgIdx].Flags;
751
752     // Use local copy if it is a byval arg.
753     if (Flags.isByVal())
754       Arg = ByValArgs[byvalArgIdx++];
755
756     // Promote the value if needed.
757     switch (VA.getLocInfo()) {
758     default: llvm_unreachable("Unknown loc info!");
759     case CCValAssign::Full: break;
760     case CCValAssign::SExt:
761       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
762       break;
763     case CCValAssign::ZExt:
764       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
765       break;
766     case CCValAssign::AExt:
767       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
768       break;
769     case CCValAssign::BCvt:
770       Arg = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), Arg);
771       break;
772     }
773
774     if (Flags.isSRet()) {
775       assert(VA.needsCustom());
776       // store SRet argument in %sp+64
777       SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32);
778       SDValue PtrOff = DAG.getIntPtrConstant(64);
779       PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
780       MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
781                                          MachinePointerInfo(),
782                                          false, false, 0));
783       hasStructRetAttr = true;
784       continue;
785     }
786
787     if (VA.needsCustom()) {
788       assert(VA.getLocVT() == MVT::f64);
789
790       if (VA.isMemLoc()) {
791         unsigned Offset = VA.getLocMemOffset() + StackOffset;
792         // if it is double-word aligned, just store.
793         if (Offset % 8 == 0) {
794           SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32);
795           SDValue PtrOff = DAG.getIntPtrConstant(Offset);
796           PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
797           MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
798                                              MachinePointerInfo(),
799                                              false, false, 0));
800           continue;
801         }
802       }
803
804       SDValue StackPtr = DAG.CreateStackTemporary(MVT::f64, MVT::i32);
805       SDValue Store = DAG.getStore(DAG.getEntryNode(), dl,
806                                    Arg, StackPtr, MachinePointerInfo(),
807                                    false, false, 0);
808       // Sparc is big-endian, so the high part comes first.
809       SDValue Hi = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
810                                MachinePointerInfo(), false, false, false, 0);
811       // Increment the pointer to the other half.
812       StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
813                              DAG.getIntPtrConstant(4));
814       // Load the low part.
815       SDValue Lo = DAG.getLoad(MVT::i32, dl, Store, StackPtr,
816                                MachinePointerInfo(), false, false, false, 0);
817
818       if (VA.isRegLoc()) {
819         RegsToPass.push_back(std::make_pair(VA.getLocReg(), Hi));
820         assert(i+1 != e);
821         CCValAssign &NextVA = ArgLocs[++i];
822         if (NextVA.isRegLoc()) {
823           RegsToPass.push_back(std::make_pair(NextVA.getLocReg(), Lo));
824         } else {
825           // Store the low part in stack.
826           unsigned Offset = NextVA.getLocMemOffset() + StackOffset;
827           SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32);
828           SDValue PtrOff = DAG.getIntPtrConstant(Offset);
829           PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
830           MemOpChains.push_back(DAG.getStore(Chain, dl, Lo, PtrOff,
831                                              MachinePointerInfo(),
832                                              false, false, 0));
833         }
834       } else {
835         unsigned Offset = VA.getLocMemOffset() + StackOffset;
836         // Store the high part.
837         SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32);
838         SDValue PtrOff = DAG.getIntPtrConstant(Offset);
839         PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
840         MemOpChains.push_back(DAG.getStore(Chain, dl, Hi, PtrOff,
841                                            MachinePointerInfo(),
842                                            false, false, 0));
843         // Store the low part.
844         PtrOff = DAG.getIntPtrConstant(Offset+4);
845         PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
846         MemOpChains.push_back(DAG.getStore(Chain, dl, Lo, PtrOff,
847                                            MachinePointerInfo(),
848                                            false, false, 0));
849       }
850       continue;
851     }
852
853     // Arguments that can be passed on register must be kept at
854     // RegsToPass vector
855     if (VA.isRegLoc()) {
856       if (VA.getLocVT() != MVT::f32) {
857         RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
858         continue;
859       }
860       Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i32, Arg);
861       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
862       continue;
863     }
864
865     assert(VA.isMemLoc());
866
867     // Create a store off the stack pointer for this argument.
868     SDValue StackPtr = DAG.getRegister(SP::O6, MVT::i32);
869     SDValue PtrOff = DAG.getIntPtrConstant(VA.getLocMemOffset()+StackOffset);
870     PtrOff = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, PtrOff);
871     MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff,
872                                        MachinePointerInfo(),
873                                        false, false, 0));
874   }
875
876
877   // Emit all stores, make sure the occur before any copies into physregs.
878   if (!MemOpChains.empty())
879     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
880                         &MemOpChains[0], MemOpChains.size());
881
882   // Build a sequence of copy-to-reg nodes chained together with token
883   // chain and flag operands which copy the outgoing args into registers.
884   // The InFlag in necessary since all emitted instructions must be
885   // stuck together.
886   SDValue InFlag;
887   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
888     unsigned Reg = toCallerWindow(RegsToPass[i].first);
889     Chain = DAG.getCopyToReg(Chain, dl, Reg, RegsToPass[i].second, InFlag);
890     InFlag = Chain.getValue(1);
891   }
892
893   unsigned SRetArgSize = (hasStructRetAttr)? getSRetArgSize(DAG, Callee):0;
894   bool hasReturnsTwice = hasReturnsTwiceAttr(DAG, Callee, CLI.CS);
895
896   // If the callee is a GlobalAddress node (quite common, every direct call is)
897   // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
898   // Likewise ExternalSymbol -> TargetExternalSymbol.
899   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
900     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), dl, MVT::i32);
901   else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
902     Callee = DAG.getTargetExternalSymbol(E->getSymbol(), MVT::i32);
903
904   // Returns a chain & a flag for retval copy to use
905   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
906   SmallVector<SDValue, 8> Ops;
907   Ops.push_back(Chain);
908   Ops.push_back(Callee);
909   if (hasStructRetAttr)
910     Ops.push_back(DAG.getTargetConstant(SRetArgSize, MVT::i32));
911   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
912     Ops.push_back(DAG.getRegister(toCallerWindow(RegsToPass[i].first),
913                                   RegsToPass[i].second.getValueType()));
914
915   // Add a register mask operand representing the call-preserved registers.
916   const SparcRegisterInfo *TRI =
917     ((const SparcTargetMachine&)getTargetMachine()).getRegisterInfo();
918   const uint32_t *Mask = ((hasReturnsTwice)
919                           ? TRI->getRTCallPreservedMask(CallConv)
920                           : TRI->getCallPreservedMask(CallConv));
921   assert(Mask && "Missing call preserved mask for calling convention");
922   Ops.push_back(DAG.getRegisterMask(Mask));
923
924   if (InFlag.getNode())
925     Ops.push_back(InFlag);
926
927   Chain = DAG.getNode(SPISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
928   InFlag = Chain.getValue(1);
929
930   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(ArgsSize, true),
931                              DAG.getIntPtrConstant(0, true), InFlag, dl);
932   InFlag = Chain.getValue(1);
933
934   // Assign locations to each value returned by this call.
935   SmallVector<CCValAssign, 16> RVLocs;
936   CCState RVInfo(CallConv, isVarArg, DAG.getMachineFunction(),
937                  DAG.getTarget(), RVLocs, *DAG.getContext());
938
939   RVInfo.AnalyzeCallResult(Ins, RetCC_Sparc32);
940
941   // Copy all of the result registers out of their specified physreg.
942   for (unsigned i = 0; i != RVLocs.size(); ++i) {
943     Chain = DAG.getCopyFromReg(Chain, dl, toCallerWindow(RVLocs[i].getLocReg()),
944                                RVLocs[i].getValVT(), InFlag).getValue(1);
945     InFlag = Chain.getValue(2);
946     InVals.push_back(Chain.getValue(0));
947   }
948
949   return Chain;
950 }
951
952 // This functions returns true if CalleeName is a ABI function that returns
953 // a long double (fp128).
954 static bool isFP128ABICall(const char *CalleeName)
955 {
956   static const char *const ABICalls[] =
957     {  "_Q_add", "_Q_sub", "_Q_mul", "_Q_div",
958        "_Q_sqrt", "_Q_neg",
959        "_Q_itoq", "_Q_stoq", "_Q_dtoq", "_Q_utoq",
960        "_Q_lltoq", "_Q_ulltoq",
961        0
962     };
963   for (const char * const *I = ABICalls; *I != 0; ++I)
964     if (strcmp(CalleeName, *I) == 0)
965       return true;
966   return false;
967 }
968
969 unsigned
970 SparcTargetLowering::getSRetArgSize(SelectionDAG &DAG, SDValue Callee) const
971 {
972   const Function *CalleeFn = 0;
973   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
974     CalleeFn = dyn_cast<Function>(G->getGlobal());
975   } else if (ExternalSymbolSDNode *E =
976              dyn_cast<ExternalSymbolSDNode>(Callee)) {
977     const Function *Fn = DAG.getMachineFunction().getFunction();
978     const Module *M = Fn->getParent();
979     const char *CalleeName = E->getSymbol();
980     CalleeFn = M->getFunction(CalleeName);
981     if (!CalleeFn && isFP128ABICall(CalleeName))
982       return 16; // Return sizeof(fp128)
983   }
984
985   if (!CalleeFn)
986     return 0;
987
988   assert(CalleeFn->hasStructRetAttr() &&
989          "Callee does not have the StructRet attribute.");
990
991   PointerType *Ty = cast<PointerType>(CalleeFn->arg_begin()->getType());
992   Type *ElementTy = Ty->getElementType();
993   return getDataLayout()->getTypeAllocSize(ElementTy);
994 }
995
996
997 // Fixup floating point arguments in the ... part of a varargs call.
998 //
999 // The SPARC v9 ABI requires that floating point arguments are treated the same
1000 // as integers when calling a varargs function. This does not apply to the
1001 // fixed arguments that are part of the function's prototype.
1002 //
1003 // This function post-processes a CCValAssign array created by
1004 // AnalyzeCallOperands().
1005 static void fixupVariableFloatArgs(SmallVectorImpl<CCValAssign> &ArgLocs,
1006                                    ArrayRef<ISD::OutputArg> Outs) {
1007   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1008     const CCValAssign &VA = ArgLocs[i];
1009     MVT ValTy = VA.getLocVT();
1010     // FIXME: What about f32 arguments? C promotes them to f64 when calling
1011     // varargs functions.
1012     if (!VA.isRegLoc() || (ValTy != MVT::f64 && ValTy != MVT::f128))
1013       continue;
1014     // The fixed arguments to a varargs function still go in FP registers.
1015     if (Outs[VA.getValNo()].IsFixed)
1016       continue;
1017
1018     // This floating point argument should be reassigned.
1019     CCValAssign NewVA;
1020
1021     // Determine the offset into the argument array.
1022     unsigned firstReg = (ValTy == MVT::f64) ? SP::D0 : SP::Q0;
1023     unsigned argSize  = (ValTy == MVT::f64) ? 8 : 16;
1024     unsigned Offset = argSize * (VA.getLocReg() - firstReg);
1025     assert(Offset < 16*8 && "Offset out of range, bad register enum?");
1026
1027     if (Offset < 6*8) {
1028       // This argument should go in %i0-%i5.
1029       unsigned IReg = SP::I0 + Offset/8;
1030       if (ValTy == MVT::f64)
1031         // Full register, just bitconvert into i64.
1032         NewVA = CCValAssign::getReg(VA.getValNo(), VA.getValVT(),
1033                                     IReg, MVT::i64, CCValAssign::BCvt);
1034       else {
1035         assert(ValTy == MVT::f128 && "Unexpected type!");
1036         // Full register, just bitconvert into i128 -- We will lower this into
1037         // two i64s in LowerCall_64.
1038         NewVA = CCValAssign::getCustomReg(VA.getValNo(), VA.getValVT(),
1039                                           IReg, MVT::i128, CCValAssign::BCvt);
1040       }
1041     } else {
1042       // This needs to go to memory, we're out of integer registers.
1043       NewVA = CCValAssign::getMem(VA.getValNo(), VA.getValVT(),
1044                                   Offset, VA.getLocVT(), VA.getLocInfo());
1045     }
1046     ArgLocs[i] = NewVA;
1047   }
1048 }
1049
1050 // Lower a call for the 64-bit ABI.
1051 SDValue
1052 SparcTargetLowering::LowerCall_64(TargetLowering::CallLoweringInfo &CLI,
1053                                   SmallVectorImpl<SDValue> &InVals) const {
1054   SelectionDAG &DAG = CLI.DAG;
1055   SDLoc DL = CLI.DL;
1056   SDValue Chain = CLI.Chain;
1057
1058   // Sparc target does not yet support tail call optimization.
1059   CLI.IsTailCall = false;
1060
1061   // Analyze operands of the call, assigning locations to each operand.
1062   SmallVector<CCValAssign, 16> ArgLocs;
1063   CCState CCInfo(CLI.CallConv, CLI.IsVarArg, DAG.getMachineFunction(),
1064                  DAG.getTarget(), ArgLocs, *DAG.getContext());
1065   CCInfo.AnalyzeCallOperands(CLI.Outs, CC_Sparc64);
1066
1067   // Get the size of the outgoing arguments stack space requirement.
1068   // The stack offset computed by CC_Sparc64 includes all arguments.
1069   // Called functions expect 6 argument words to exist in the stack frame, used
1070   // or not.
1071   unsigned ArgsSize = std::max(6*8u, CCInfo.getNextStackOffset());
1072
1073   // Keep stack frames 16-byte aligned.
1074   ArgsSize = RoundUpToAlignment(ArgsSize, 16);
1075
1076   // Varargs calls require special treatment.
1077   if (CLI.IsVarArg)
1078     fixupVariableFloatArgs(ArgLocs, CLI.Outs);
1079
1080   // Adjust the stack pointer to make room for the arguments.
1081   // FIXME: Use hasReservedCallFrame to avoid %sp adjustments around all calls
1082   // with more than 6 arguments.
1083   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(ArgsSize, true),
1084                                DL);
1085
1086   // Collect the set of registers to pass to the function and their values.
1087   // This will be emitted as a sequence of CopyToReg nodes glued to the call
1088   // instruction.
1089   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1090
1091   // Collect chains from all the memory opeations that copy arguments to the
1092   // stack. They must follow the stack pointer adjustment above and precede the
1093   // call instruction itself.
1094   SmallVector<SDValue, 8> MemOpChains;
1095
1096   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1097     const CCValAssign &VA = ArgLocs[i];
1098     SDValue Arg = CLI.OutVals[i];
1099
1100     // Promote the value if needed.
1101     switch (VA.getLocInfo()) {
1102     default:
1103       llvm_unreachable("Unknown location info!");
1104     case CCValAssign::Full:
1105       break;
1106     case CCValAssign::SExt:
1107       Arg = DAG.getNode(ISD::SIGN_EXTEND, DL, VA.getLocVT(), Arg);
1108       break;
1109     case CCValAssign::ZExt:
1110       Arg = DAG.getNode(ISD::ZERO_EXTEND, DL, VA.getLocVT(), Arg);
1111       break;
1112     case CCValAssign::AExt:
1113       Arg = DAG.getNode(ISD::ANY_EXTEND, DL, VA.getLocVT(), Arg);
1114       break;
1115     case CCValAssign::BCvt:
1116       // fixupVariableFloatArgs() may create bitcasts from f128 to i128. But
1117       // SPARC does not support i128 natively. Lower it into two i64, see below.
1118       if (!VA.needsCustom() || VA.getValVT() != MVT::f128
1119           || VA.getLocVT() != MVT::i128)
1120         Arg = DAG.getNode(ISD::BITCAST, DL, VA.getLocVT(), Arg);
1121       break;
1122     }
1123
1124     if (VA.isRegLoc()) {
1125       if (VA.needsCustom() && VA.getValVT() == MVT::f128
1126           && VA.getLocVT() == MVT::i128) {
1127         // Store and reload into the interger register reg and reg+1.
1128         unsigned Offset = 8 * (VA.getLocReg() - SP::I0);
1129         unsigned StackOffset = Offset + Subtarget->getStackPointerBias() + 128;
1130         SDValue StackPtr = DAG.getRegister(SP::O6, getPointerTy());
1131         SDValue HiPtrOff = DAG.getIntPtrConstant(StackOffset);
1132         HiPtrOff         = DAG.getNode(ISD::ADD, DL, getPointerTy(), StackPtr,
1133                                        HiPtrOff);
1134         SDValue LoPtrOff = DAG.getIntPtrConstant(StackOffset + 8);
1135         LoPtrOff         = DAG.getNode(ISD::ADD, DL, getPointerTy(), StackPtr,
1136                                        LoPtrOff);
1137
1138         // Store to %sp+BIAS+128+Offset
1139         SDValue Store = DAG.getStore(Chain, DL, Arg, HiPtrOff,
1140                                      MachinePointerInfo(),
1141                                      false, false, 0);
1142         // Load into Reg and Reg+1
1143         SDValue Hi64 = DAG.getLoad(MVT::i64, DL, Store, HiPtrOff,
1144                                    MachinePointerInfo(),
1145                                    false, false, false, 0);
1146         SDValue Lo64 = DAG.getLoad(MVT::i64, DL, Store, LoPtrOff,
1147                                    MachinePointerInfo(),
1148                                    false, false, false, 0);
1149         RegsToPass.push_back(std::make_pair(toCallerWindow(VA.getLocReg()),
1150                                             Hi64));
1151         RegsToPass.push_back(std::make_pair(toCallerWindow(VA.getLocReg()+1),
1152                                             Lo64));
1153         continue;
1154       }
1155
1156       // The custom bit on an i32 return value indicates that it should be
1157       // passed in the high bits of the register.
1158       if (VA.getValVT() == MVT::i32 && VA.needsCustom()) {
1159         Arg = DAG.getNode(ISD::SHL, DL, MVT::i64, Arg,
1160                           DAG.getConstant(32, MVT::i32));
1161
1162         // The next value may go in the low bits of the same register.
1163         // Handle both at once.
1164         if (i+1 < ArgLocs.size() && ArgLocs[i+1].isRegLoc() &&
1165             ArgLocs[i+1].getLocReg() == VA.getLocReg()) {
1166           SDValue NV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64,
1167                                    CLI.OutVals[i+1]);
1168           Arg = DAG.getNode(ISD::OR, DL, MVT::i64, Arg, NV);
1169           // Skip the next value, it's already done.
1170           ++i;
1171         }
1172       }
1173       RegsToPass.push_back(std::make_pair(toCallerWindow(VA.getLocReg()), Arg));
1174       continue;
1175     }
1176
1177     assert(VA.isMemLoc());
1178
1179     // Create a store off the stack pointer for this argument.
1180     SDValue StackPtr = DAG.getRegister(SP::O6, getPointerTy());
1181     // The argument area starts at %fp+BIAS+128 in the callee frame,
1182     // %sp+BIAS+128 in ours.
1183     SDValue PtrOff = DAG.getIntPtrConstant(VA.getLocMemOffset() +
1184                                            Subtarget->getStackPointerBias() +
1185                                            128);
1186     PtrOff = DAG.getNode(ISD::ADD, DL, getPointerTy(), StackPtr, PtrOff);
1187     MemOpChains.push_back(DAG.getStore(Chain, DL, Arg, PtrOff,
1188                                        MachinePointerInfo(),
1189                                        false, false, 0));
1190   }
1191
1192   // Emit all stores, make sure they occur before the call.
1193   if (!MemOpChains.empty())
1194     Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
1195                         &MemOpChains[0], MemOpChains.size());
1196
1197   // Build a sequence of CopyToReg nodes glued together with token chain and
1198   // glue operands which copy the outgoing args into registers. The InGlue is
1199   // necessary since all emitted instructions must be stuck together in order
1200   // to pass the live physical registers.
1201   SDValue InGlue;
1202   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1203     Chain = DAG.getCopyToReg(Chain, DL,
1204                              RegsToPass[i].first, RegsToPass[i].second, InGlue);
1205     InGlue = Chain.getValue(1);
1206   }
1207
1208   // If the callee is a GlobalAddress node (quite common, every direct call is)
1209   // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1210   // Likewise ExternalSymbol -> TargetExternalSymbol.
1211   SDValue Callee = CLI.Callee;
1212   bool hasReturnsTwice = hasReturnsTwiceAttr(DAG, Callee, CLI.CS);
1213   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1214     Callee = DAG.getTargetGlobalAddress(G->getGlobal(), DL, getPointerTy());
1215   else if (ExternalSymbolSDNode *E = dyn_cast<ExternalSymbolSDNode>(Callee))
1216     Callee = DAG.getTargetExternalSymbol(E->getSymbol(), getPointerTy());
1217
1218   // Build the operands for the call instruction itself.
1219   SmallVector<SDValue, 8> Ops;
1220   Ops.push_back(Chain);
1221   Ops.push_back(Callee);
1222   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1223     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1224                                   RegsToPass[i].second.getValueType()));
1225
1226   // Add a register mask operand representing the call-preserved registers.
1227   const SparcRegisterInfo *TRI =
1228     ((const SparcTargetMachine&)getTargetMachine()).getRegisterInfo();
1229   const uint32_t *Mask = ((hasReturnsTwice)
1230                           ? TRI->getRTCallPreservedMask(CLI.CallConv)
1231                           : TRI->getCallPreservedMask(CLI.CallConv));
1232   assert(Mask && "Missing call preserved mask for calling convention");
1233   Ops.push_back(DAG.getRegisterMask(Mask));
1234
1235   // Make sure the CopyToReg nodes are glued to the call instruction which
1236   // consumes the registers.
1237   if (InGlue.getNode())
1238     Ops.push_back(InGlue);
1239
1240   // Now the call itself.
1241   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1242   Chain = DAG.getNode(SPISD::CALL, DL, NodeTys, &Ops[0], Ops.size());
1243   InGlue = Chain.getValue(1);
1244
1245   // Revert the stack pointer immediately after the call.
1246   Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(ArgsSize, true),
1247                              DAG.getIntPtrConstant(0, true), InGlue, DL);
1248   InGlue = Chain.getValue(1);
1249
1250   // Now extract the return values. This is more or less the same as
1251   // LowerFormalArguments_64.
1252
1253   // Assign locations to each value returned by this call.
1254   SmallVector<CCValAssign, 16> RVLocs;
1255   CCState RVInfo(CLI.CallConv, CLI.IsVarArg, DAG.getMachineFunction(),
1256                  DAG.getTarget(), RVLocs, *DAG.getContext());
1257
1258   // Set inreg flag manually for codegen generated library calls that
1259   // return float.
1260   if (CLI.Ins.size() == 1 && CLI.Ins[0].VT == MVT::f32 && CLI.CS == 0)
1261     CLI.Ins[0].Flags.setInReg();
1262
1263   RVInfo.AnalyzeCallResult(CLI.Ins, RetCC_Sparc64);
1264
1265   // Copy all of the result registers out of their specified physreg.
1266   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1267     CCValAssign &VA = RVLocs[i];
1268     unsigned Reg = toCallerWindow(VA.getLocReg());
1269
1270     // When returning 'inreg {i32, i32 }', two consecutive i32 arguments can
1271     // reside in the same register in the high and low bits. Reuse the
1272     // CopyFromReg previous node to avoid duplicate copies.
1273     SDValue RV;
1274     if (RegisterSDNode *SrcReg = dyn_cast<RegisterSDNode>(Chain.getOperand(1)))
1275       if (SrcReg->getReg() == Reg && Chain->getOpcode() == ISD::CopyFromReg)
1276         RV = Chain.getValue(0);
1277
1278     // But usually we'll create a new CopyFromReg for a different register.
1279     if (!RV.getNode()) {
1280       RV = DAG.getCopyFromReg(Chain, DL, Reg, RVLocs[i].getLocVT(), InGlue);
1281       Chain = RV.getValue(1);
1282       InGlue = Chain.getValue(2);
1283     }
1284
1285     // Get the high bits for i32 struct elements.
1286     if (VA.getValVT() == MVT::i32 && VA.needsCustom())
1287       RV = DAG.getNode(ISD::SRL, DL, VA.getLocVT(), RV,
1288                        DAG.getConstant(32, MVT::i32));
1289
1290     // The callee promoted the return value, so insert an Assert?ext SDNode so
1291     // we won't promote the value again in this function.
1292     switch (VA.getLocInfo()) {
1293     case CCValAssign::SExt:
1294       RV = DAG.getNode(ISD::AssertSext, DL, VA.getLocVT(), RV,
1295                        DAG.getValueType(VA.getValVT()));
1296       break;
1297     case CCValAssign::ZExt:
1298       RV = DAG.getNode(ISD::AssertZext, DL, VA.getLocVT(), RV,
1299                        DAG.getValueType(VA.getValVT()));
1300       break;
1301     default:
1302       break;
1303     }
1304
1305     // Truncate the register down to the return value type.
1306     if (VA.isExtInLoc())
1307       RV = DAG.getNode(ISD::TRUNCATE, DL, VA.getValVT(), RV);
1308
1309     InVals.push_back(RV);
1310   }
1311
1312   return Chain;
1313 }
1314
1315 //===----------------------------------------------------------------------===//
1316 // TargetLowering Implementation
1317 //===----------------------------------------------------------------------===//
1318
1319 /// IntCondCCodeToICC - Convert a DAG integer condition code to a SPARC ICC
1320 /// condition.
1321 static SPCC::CondCodes IntCondCCodeToICC(ISD::CondCode CC) {
1322   switch (CC) {
1323   default: llvm_unreachable("Unknown integer condition code!");
1324   case ISD::SETEQ:  return SPCC::ICC_E;
1325   case ISD::SETNE:  return SPCC::ICC_NE;
1326   case ISD::SETLT:  return SPCC::ICC_L;
1327   case ISD::SETGT:  return SPCC::ICC_G;
1328   case ISD::SETLE:  return SPCC::ICC_LE;
1329   case ISD::SETGE:  return SPCC::ICC_GE;
1330   case ISD::SETULT: return SPCC::ICC_CS;
1331   case ISD::SETULE: return SPCC::ICC_LEU;
1332   case ISD::SETUGT: return SPCC::ICC_GU;
1333   case ISD::SETUGE: return SPCC::ICC_CC;
1334   }
1335 }
1336
1337 /// FPCondCCodeToFCC - Convert a DAG floatingp oint condition code to a SPARC
1338 /// FCC condition.
1339 static SPCC::CondCodes FPCondCCodeToFCC(ISD::CondCode CC) {
1340   switch (CC) {
1341   default: llvm_unreachable("Unknown fp condition code!");
1342   case ISD::SETEQ:
1343   case ISD::SETOEQ: return SPCC::FCC_E;
1344   case ISD::SETNE:
1345   case ISD::SETUNE: return SPCC::FCC_NE;
1346   case ISD::SETLT:
1347   case ISD::SETOLT: return SPCC::FCC_L;
1348   case ISD::SETGT:
1349   case ISD::SETOGT: return SPCC::FCC_G;
1350   case ISD::SETLE:
1351   case ISD::SETOLE: return SPCC::FCC_LE;
1352   case ISD::SETGE:
1353   case ISD::SETOGE: return SPCC::FCC_GE;
1354   case ISD::SETULT: return SPCC::FCC_UL;
1355   case ISD::SETULE: return SPCC::FCC_ULE;
1356   case ISD::SETUGT: return SPCC::FCC_UG;
1357   case ISD::SETUGE: return SPCC::FCC_UGE;
1358   case ISD::SETUO:  return SPCC::FCC_U;
1359   case ISD::SETO:   return SPCC::FCC_O;
1360   case ISD::SETONE: return SPCC::FCC_LG;
1361   case ISD::SETUEQ: return SPCC::FCC_UE;
1362   }
1363 }
1364
1365 SparcTargetLowering::SparcTargetLowering(TargetMachine &TM)
1366   : TargetLowering(TM, new TargetLoweringObjectFileELF()) {
1367   Subtarget = &TM.getSubtarget<SparcSubtarget>();
1368
1369   // Set up the register classes.
1370   addRegisterClass(MVT::i32, &SP::IntRegsRegClass);
1371   addRegisterClass(MVT::f32, &SP::FPRegsRegClass);
1372   addRegisterClass(MVT::f64, &SP::DFPRegsRegClass);
1373   addRegisterClass(MVT::f128, &SP::QFPRegsRegClass);
1374   if (Subtarget->is64Bit())
1375     addRegisterClass(MVT::i64, &SP::I64RegsRegClass);
1376
1377   // Turn FP extload into load/fextend
1378   setLoadExtAction(ISD::EXTLOAD, MVT::f32, Expand);
1379   setLoadExtAction(ISD::EXTLOAD, MVT::f64, Expand);
1380
1381   // Sparc doesn't have i1 sign extending load
1382   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
1383
1384   // Turn FP truncstore into trunc + store.
1385   setTruncStoreAction(MVT::f64, MVT::f32, Expand);
1386   setTruncStoreAction(MVT::f128, MVT::f32, Expand);
1387   setTruncStoreAction(MVT::f128, MVT::f64, Expand);
1388
1389   // Custom legalize GlobalAddress nodes into LO/HI parts.
1390   setOperationAction(ISD::GlobalAddress, getPointerTy(), Custom);
1391   setOperationAction(ISD::GlobalTLSAddress, getPointerTy(), Custom);
1392   setOperationAction(ISD::ConstantPool, getPointerTy(), Custom);
1393   setOperationAction(ISD::BlockAddress, getPointerTy(), Custom);
1394
1395   // Sparc doesn't have sext_inreg, replace them with shl/sra
1396   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
1397   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
1398   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
1399
1400   // Sparc has no REM or DIVREM operations.
1401   setOperationAction(ISD::UREM, MVT::i32, Expand);
1402   setOperationAction(ISD::SREM, MVT::i32, Expand);
1403   setOperationAction(ISD::SDIVREM, MVT::i32, Expand);
1404   setOperationAction(ISD::UDIVREM, MVT::i32, Expand);
1405
1406   // ... nor does SparcV9.
1407   if (Subtarget->is64Bit()) {
1408     setOperationAction(ISD::UREM, MVT::i64, Expand);
1409     setOperationAction(ISD::SREM, MVT::i64, Expand);
1410     setOperationAction(ISD::SDIVREM, MVT::i64, Expand);
1411     setOperationAction(ISD::UDIVREM, MVT::i64, Expand);
1412   }
1413
1414   // Custom expand fp<->sint
1415   setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
1416   setOperationAction(ISD::SINT_TO_FP, MVT::i32, Custom);
1417   setOperationAction(ISD::FP_TO_SINT, MVT::i64, Custom);
1418   setOperationAction(ISD::SINT_TO_FP, MVT::i64, Custom);
1419
1420   // Custom Expand fp<->uint
1421   setOperationAction(ISD::FP_TO_UINT, MVT::i32, Custom);
1422   setOperationAction(ISD::UINT_TO_FP, MVT::i32, Custom);
1423   setOperationAction(ISD::FP_TO_UINT, MVT::i64, Custom);
1424   setOperationAction(ISD::UINT_TO_FP, MVT::i64, Custom);
1425
1426   setOperationAction(ISD::BITCAST, MVT::f32, Expand);
1427   setOperationAction(ISD::BITCAST, MVT::i32, Expand);
1428
1429   // Sparc has no select or setcc: expand to SELECT_CC.
1430   setOperationAction(ISD::SELECT, MVT::i32, Expand);
1431   setOperationAction(ISD::SELECT, MVT::f32, Expand);
1432   setOperationAction(ISD::SELECT, MVT::f64, Expand);
1433   setOperationAction(ISD::SELECT, MVT::f128, Expand);
1434
1435   setOperationAction(ISD::SETCC, MVT::i32, Expand);
1436   setOperationAction(ISD::SETCC, MVT::f32, Expand);
1437   setOperationAction(ISD::SETCC, MVT::f64, Expand);
1438   setOperationAction(ISD::SETCC, MVT::f128, Expand);
1439
1440   // Sparc doesn't have BRCOND either, it has BR_CC.
1441   setOperationAction(ISD::BRCOND, MVT::Other, Expand);
1442   setOperationAction(ISD::BRIND, MVT::Other, Expand);
1443   setOperationAction(ISD::BR_JT, MVT::Other, Expand);
1444   setOperationAction(ISD::BR_CC, MVT::i32, Custom);
1445   setOperationAction(ISD::BR_CC, MVT::f32, Custom);
1446   setOperationAction(ISD::BR_CC, MVT::f64, Custom);
1447   setOperationAction(ISD::BR_CC, MVT::f128, Custom);
1448
1449   setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
1450   setOperationAction(ISD::SELECT_CC, MVT::f32, Custom);
1451   setOperationAction(ISD::SELECT_CC, MVT::f64, Custom);
1452   setOperationAction(ISD::SELECT_CC, MVT::f128, Custom);
1453
1454   if (Subtarget->is64Bit()) {
1455     setOperationAction(ISD::ADDC, MVT::i64, Custom);
1456     setOperationAction(ISD::ADDE, MVT::i64, Custom);
1457     setOperationAction(ISD::SUBC, MVT::i64, Custom);
1458     setOperationAction(ISD::SUBE, MVT::i64, Custom);
1459     setOperationAction(ISD::BITCAST, MVT::f64, Expand);
1460     setOperationAction(ISD::BITCAST, MVT::i64, Expand);
1461     setOperationAction(ISD::SELECT, MVT::i64, Expand);
1462     setOperationAction(ISD::SETCC, MVT::i64, Expand);
1463     setOperationAction(ISD::BR_CC, MVT::i64, Custom);
1464     setOperationAction(ISD::SELECT_CC, MVT::i64, Custom);
1465
1466     setOperationAction(ISD::CTPOP, MVT::i64, Legal);
1467     setOperationAction(ISD::CTTZ , MVT::i64, Expand);
1468     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
1469     setOperationAction(ISD::CTLZ , MVT::i64, Expand);
1470     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
1471     setOperationAction(ISD::BSWAP, MVT::i64, Expand);
1472     setOperationAction(ISD::ROTL , MVT::i64, Expand);
1473     setOperationAction(ISD::ROTR , MVT::i64, Expand);
1474     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Custom);
1475   }
1476
1477   // ATOMICs.
1478   // FIXME: We insert fences for each atomics and generate sub-optimal code
1479   // for PSO/TSO. Also, implement other atomicrmw operations.
1480
1481   setInsertFencesForAtomic(true);
1482
1483   setOperationAction(ISD::ATOMIC_SWAP, MVT::i32, Legal);
1484   setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32,
1485                      (Subtarget->isV9() ? Legal: Expand));
1486
1487
1488   setOperationAction(ISD::ATOMIC_FENCE, MVT::Other, Legal);
1489
1490   // Custom Lower Atomic LOAD/STORE
1491   setOperationAction(ISD::ATOMIC_LOAD, MVT::i32, Custom);
1492   setOperationAction(ISD::ATOMIC_STORE, MVT::i32, Custom);
1493
1494   if (Subtarget->is64Bit()) {
1495     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Legal);
1496     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Expand);
1497     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
1498     setOperationAction(ISD::ATOMIC_STORE, MVT::i64, Custom);
1499   }
1500
1501   if (!Subtarget->isV9()) {
1502     // SparcV8 does not have FNEGD and FABSD.
1503     setOperationAction(ISD::FNEG, MVT::f64, Custom);
1504     setOperationAction(ISD::FABS, MVT::f64, Custom);
1505   }
1506
1507   setOperationAction(ISD::FSIN , MVT::f128, Expand);
1508   setOperationAction(ISD::FCOS , MVT::f128, Expand);
1509   setOperationAction(ISD::FSINCOS, MVT::f128, Expand);
1510   setOperationAction(ISD::FREM , MVT::f128, Expand);
1511   setOperationAction(ISD::FMA  , MVT::f128, Expand);
1512   setOperationAction(ISD::FSIN , MVT::f64, Expand);
1513   setOperationAction(ISD::FCOS , MVT::f64, Expand);
1514   setOperationAction(ISD::FSINCOS, MVT::f64, Expand);
1515   setOperationAction(ISD::FREM , MVT::f64, Expand);
1516   setOperationAction(ISD::FMA  , MVT::f64, Expand);
1517   setOperationAction(ISD::FSIN , MVT::f32, Expand);
1518   setOperationAction(ISD::FCOS , MVT::f32, Expand);
1519   setOperationAction(ISD::FSINCOS, MVT::f32, Expand);
1520   setOperationAction(ISD::FREM , MVT::f32, Expand);
1521   setOperationAction(ISD::FMA  , MVT::f32, Expand);
1522   setOperationAction(ISD::CTPOP, MVT::i32, Expand);
1523   setOperationAction(ISD::CTTZ , MVT::i32, Expand);
1524   setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32, Expand);
1525   setOperationAction(ISD::CTLZ , MVT::i32, Expand);
1526   setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32, Expand);
1527   setOperationAction(ISD::ROTL , MVT::i32, Expand);
1528   setOperationAction(ISD::ROTR , MVT::i32, Expand);
1529   setOperationAction(ISD::BSWAP, MVT::i32, Expand);
1530   setOperationAction(ISD::FCOPYSIGN, MVT::f128, Expand);
1531   setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
1532   setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
1533   setOperationAction(ISD::FPOW , MVT::f128, Expand);
1534   setOperationAction(ISD::FPOW , MVT::f64, Expand);
1535   setOperationAction(ISD::FPOW , MVT::f32, Expand);
1536
1537   setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
1538   setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
1539   setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
1540
1541   // FIXME: Sparc provides these multiplies, but we don't have them yet.
1542   setOperationAction(ISD::UMUL_LOHI, MVT::i32, Expand);
1543   setOperationAction(ISD::SMUL_LOHI, MVT::i32, Expand);
1544
1545   if (Subtarget->is64Bit()) {
1546     setOperationAction(ISD::UMUL_LOHI, MVT::i64, Expand);
1547     setOperationAction(ISD::SMUL_LOHI, MVT::i64, Expand);
1548     setOperationAction(ISD::MULHU,     MVT::i64, Expand);
1549     setOperationAction(ISD::MULHS,     MVT::i64, Expand);
1550
1551     setOperationAction(ISD::UMULO,     MVT::i64, Custom);
1552     setOperationAction(ISD::SMULO,     MVT::i64, Custom);
1553   }
1554
1555   // VASTART needs to be custom lowered to use the VarArgsFrameIndex.
1556   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
1557   // VAARG needs to be lowered to not do unaligned accesses for doubles.
1558   setOperationAction(ISD::VAARG             , MVT::Other, Custom);
1559
1560   // Use the default implementation.
1561   setOperationAction(ISD::VACOPY            , MVT::Other, Expand);
1562   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
1563   setOperationAction(ISD::STACKSAVE         , MVT::Other, Expand);
1564   setOperationAction(ISD::STACKRESTORE      , MVT::Other, Expand);
1565   setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32  , Custom);
1566
1567   setExceptionPointerRegister(SP::I0);
1568   setExceptionSelectorRegister(SP::I1);
1569
1570   setStackPointerRegisterToSaveRestore(SP::O6);
1571
1572   if (Subtarget->isV9())
1573     setOperationAction(ISD::CTPOP, MVT::i32, Legal);
1574
1575   if (Subtarget->isV9() && Subtarget->hasHardQuad()) {
1576     setOperationAction(ISD::LOAD, MVT::f128, Legal);
1577     setOperationAction(ISD::STORE, MVT::f128, Legal);
1578   } else {
1579     setOperationAction(ISD::LOAD, MVT::f128, Custom);
1580     setOperationAction(ISD::STORE, MVT::f128, Custom);
1581   }
1582
1583   if (Subtarget->hasHardQuad()) {
1584     setOperationAction(ISD::FADD,  MVT::f128, Legal);
1585     setOperationAction(ISD::FSUB,  MVT::f128, Legal);
1586     setOperationAction(ISD::FMUL,  MVT::f128, Legal);
1587     setOperationAction(ISD::FDIV,  MVT::f128, Legal);
1588     setOperationAction(ISD::FSQRT, MVT::f128, Legal);
1589     setOperationAction(ISD::FP_EXTEND, MVT::f128, Legal);
1590     setOperationAction(ISD::FP_ROUND,  MVT::f64, Legal);
1591     if (Subtarget->isV9()) {
1592       setOperationAction(ISD::FNEG, MVT::f128, Legal);
1593       setOperationAction(ISD::FABS, MVT::f128, Legal);
1594     } else {
1595       setOperationAction(ISD::FNEG, MVT::f128, Custom);
1596       setOperationAction(ISD::FABS, MVT::f128, Custom);
1597     }
1598
1599     if (!Subtarget->is64Bit()) {
1600       setLibcallName(RTLIB::FPTOSINT_F128_I64, "_Q_qtoll");
1601       setLibcallName(RTLIB::FPTOUINT_F128_I64, "_Q_qtoull");
1602       setLibcallName(RTLIB::SINTTOFP_I64_F128, "_Q_lltoq");
1603       setLibcallName(RTLIB::UINTTOFP_I64_F128, "_Q_ulltoq");
1604     }
1605
1606   } else {
1607     // Custom legalize f128 operations.
1608
1609     setOperationAction(ISD::FADD,  MVT::f128, Custom);
1610     setOperationAction(ISD::FSUB,  MVT::f128, Custom);
1611     setOperationAction(ISD::FMUL,  MVT::f128, Custom);
1612     setOperationAction(ISD::FDIV,  MVT::f128, Custom);
1613     setOperationAction(ISD::FSQRT, MVT::f128, Custom);
1614     setOperationAction(ISD::FNEG,  MVT::f128, Custom);
1615     setOperationAction(ISD::FABS,  MVT::f128, Custom);
1616
1617     setOperationAction(ISD::FP_EXTEND, MVT::f128, Custom);
1618     setOperationAction(ISD::FP_ROUND,  MVT::f64, Custom);
1619     setOperationAction(ISD::FP_ROUND,  MVT::f32, Custom);
1620
1621     // Setup Runtime library names.
1622     if (Subtarget->is64Bit()) {
1623       setLibcallName(RTLIB::ADD_F128,  "_Qp_add");
1624       setLibcallName(RTLIB::SUB_F128,  "_Qp_sub");
1625       setLibcallName(RTLIB::MUL_F128,  "_Qp_mul");
1626       setLibcallName(RTLIB::DIV_F128,  "_Qp_div");
1627       setLibcallName(RTLIB::SQRT_F128, "_Qp_sqrt");
1628       setLibcallName(RTLIB::FPTOSINT_F128_I32, "_Qp_qtoi");
1629       setLibcallName(RTLIB::FPTOUINT_F128_I32, "_Qp_qtoui");
1630       setLibcallName(RTLIB::SINTTOFP_I32_F128, "_Qp_itoq");
1631       setLibcallName(RTLIB::UINTTOFP_I32_F128, "_Qp_uitoq");
1632       setLibcallName(RTLIB::FPTOSINT_F128_I64, "_Qp_qtox");
1633       setLibcallName(RTLIB::FPTOUINT_F128_I64, "_Qp_qtoux");
1634       setLibcallName(RTLIB::SINTTOFP_I64_F128, "_Qp_xtoq");
1635       setLibcallName(RTLIB::UINTTOFP_I64_F128, "_Qp_uxtoq");
1636       setLibcallName(RTLIB::FPEXT_F32_F128, "_Qp_stoq");
1637       setLibcallName(RTLIB::FPEXT_F64_F128, "_Qp_dtoq");
1638       setLibcallName(RTLIB::FPROUND_F128_F32, "_Qp_qtos");
1639       setLibcallName(RTLIB::FPROUND_F128_F64, "_Qp_qtod");
1640     } else {
1641       setLibcallName(RTLIB::ADD_F128,  "_Q_add");
1642       setLibcallName(RTLIB::SUB_F128,  "_Q_sub");
1643       setLibcallName(RTLIB::MUL_F128,  "_Q_mul");
1644       setLibcallName(RTLIB::DIV_F128,  "_Q_div");
1645       setLibcallName(RTLIB::SQRT_F128, "_Q_sqrt");
1646       setLibcallName(RTLIB::FPTOSINT_F128_I32, "_Q_qtoi");
1647       setLibcallName(RTLIB::FPTOUINT_F128_I32, "_Q_qtou");
1648       setLibcallName(RTLIB::SINTTOFP_I32_F128, "_Q_itoq");
1649       setLibcallName(RTLIB::UINTTOFP_I32_F128, "_Q_utoq");
1650       setLibcallName(RTLIB::FPTOSINT_F128_I64, "_Q_qtoll");
1651       setLibcallName(RTLIB::FPTOUINT_F128_I64, "_Q_qtoull");
1652       setLibcallName(RTLIB::SINTTOFP_I64_F128, "_Q_lltoq");
1653       setLibcallName(RTLIB::UINTTOFP_I64_F128, "_Q_ulltoq");
1654       setLibcallName(RTLIB::FPEXT_F32_F128, "_Q_stoq");
1655       setLibcallName(RTLIB::FPEXT_F64_F128, "_Q_dtoq");
1656       setLibcallName(RTLIB::FPROUND_F128_F32, "_Q_qtos");
1657       setLibcallName(RTLIB::FPROUND_F128_F64, "_Q_qtod");
1658     }
1659   }
1660
1661   setMinFunctionAlignment(2);
1662
1663   computeRegisterProperties();
1664 }
1665
1666 const char *SparcTargetLowering::getTargetNodeName(unsigned Opcode) const {
1667   switch (Opcode) {
1668   default: return 0;
1669   case SPISD::CMPICC:     return "SPISD::CMPICC";
1670   case SPISD::CMPFCC:     return "SPISD::CMPFCC";
1671   case SPISD::BRICC:      return "SPISD::BRICC";
1672   case SPISD::BRXCC:      return "SPISD::BRXCC";
1673   case SPISD::BRFCC:      return "SPISD::BRFCC";
1674   case SPISD::SELECT_ICC: return "SPISD::SELECT_ICC";
1675   case SPISD::SELECT_XCC: return "SPISD::SELECT_XCC";
1676   case SPISD::SELECT_FCC: return "SPISD::SELECT_FCC";
1677   case SPISD::Hi:         return "SPISD::Hi";
1678   case SPISD::Lo:         return "SPISD::Lo";
1679   case SPISD::FTOI:       return "SPISD::FTOI";
1680   case SPISD::ITOF:       return "SPISD::ITOF";
1681   case SPISD::FTOX:       return "SPISD::FTOX";
1682   case SPISD::XTOF:       return "SPISD::XTOF";
1683   case SPISD::CALL:       return "SPISD::CALL";
1684   case SPISD::RET_FLAG:   return "SPISD::RET_FLAG";
1685   case SPISD::GLOBAL_BASE_REG: return "SPISD::GLOBAL_BASE_REG";
1686   case SPISD::FLUSHW:     return "SPISD::FLUSHW";
1687   case SPISD::TLS_ADD:    return "SPISD::TLS_ADD";
1688   case SPISD::TLS_LD:     return "SPISD::TLS_LD";
1689   case SPISD::TLS_CALL:   return "SPISD::TLS_CALL";
1690   }
1691 }
1692
1693 EVT SparcTargetLowering::getSetCCResultType(LLVMContext &, EVT VT) const {
1694   if (!VT.isVector())
1695     return MVT::i32;
1696   return VT.changeVectorElementTypeToInteger();
1697 }
1698
1699 /// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
1700 /// be zero. Op is expected to be a target specific node. Used by DAG
1701 /// combiner.
1702 void SparcTargetLowering::computeMaskedBitsForTargetNode
1703                                 (const SDValue Op,
1704                                  APInt &KnownZero,
1705                                  APInt &KnownOne,
1706                                  const SelectionDAG &DAG,
1707                                  unsigned Depth) const {
1708   APInt KnownZero2, KnownOne2;
1709   KnownZero = KnownOne = APInt(KnownZero.getBitWidth(), 0);
1710
1711   switch (Op.getOpcode()) {
1712   default: break;
1713   case SPISD::SELECT_ICC:
1714   case SPISD::SELECT_XCC:
1715   case SPISD::SELECT_FCC:
1716     DAG.ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1);
1717     DAG.ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1718     assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1719     assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1720
1721     // Only known if known in both the LHS and RHS.
1722     KnownOne &= KnownOne2;
1723     KnownZero &= KnownZero2;
1724     break;
1725   }
1726 }
1727
1728 // Look at LHS/RHS/CC and see if they are a lowered setcc instruction.  If so
1729 // set LHS/RHS and SPCC to the LHS/RHS of the setcc and SPCC to the condition.
1730 static void LookThroughSetCC(SDValue &LHS, SDValue &RHS,
1731                              ISD::CondCode CC, unsigned &SPCC) {
1732   if (isa<ConstantSDNode>(RHS) &&
1733       cast<ConstantSDNode>(RHS)->isNullValue() &&
1734       CC == ISD::SETNE &&
1735       (((LHS.getOpcode() == SPISD::SELECT_ICC ||
1736          LHS.getOpcode() == SPISD::SELECT_XCC) &&
1737         LHS.getOperand(3).getOpcode() == SPISD::CMPICC) ||
1738        (LHS.getOpcode() == SPISD::SELECT_FCC &&
1739         LHS.getOperand(3).getOpcode() == SPISD::CMPFCC)) &&
1740       isa<ConstantSDNode>(LHS.getOperand(0)) &&
1741       isa<ConstantSDNode>(LHS.getOperand(1)) &&
1742       cast<ConstantSDNode>(LHS.getOperand(0))->isOne() &&
1743       cast<ConstantSDNode>(LHS.getOperand(1))->isNullValue()) {
1744     SDValue CMPCC = LHS.getOperand(3);
1745     SPCC = cast<ConstantSDNode>(LHS.getOperand(2))->getZExtValue();
1746     LHS = CMPCC.getOperand(0);
1747     RHS = CMPCC.getOperand(1);
1748   }
1749 }
1750
1751 // Convert to a target node and set target flags.
1752 SDValue SparcTargetLowering::withTargetFlags(SDValue Op, unsigned TF,
1753                                              SelectionDAG &DAG) const {
1754   if (const GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op))
1755     return DAG.getTargetGlobalAddress(GA->getGlobal(),
1756                                       SDLoc(GA),
1757                                       GA->getValueType(0),
1758                                       GA->getOffset(), TF);
1759
1760   if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Op))
1761     return DAG.getTargetConstantPool(CP->getConstVal(),
1762                                      CP->getValueType(0),
1763                                      CP->getAlignment(),
1764                                      CP->getOffset(), TF);
1765
1766   if (const BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op))
1767     return DAG.getTargetBlockAddress(BA->getBlockAddress(),
1768                                      Op.getValueType(),
1769                                      0,
1770                                      TF);
1771
1772   if (const ExternalSymbolSDNode *ES = dyn_cast<ExternalSymbolSDNode>(Op))
1773     return DAG.getTargetExternalSymbol(ES->getSymbol(),
1774                                        ES->getValueType(0), TF);
1775
1776   llvm_unreachable("Unhandled address SDNode");
1777 }
1778
1779 // Split Op into high and low parts according to HiTF and LoTF.
1780 // Return an ADD node combining the parts.
1781 SDValue SparcTargetLowering::makeHiLoPair(SDValue Op,
1782                                           unsigned HiTF, unsigned LoTF,
1783                                           SelectionDAG &DAG) const {
1784   SDLoc DL(Op);
1785   EVT VT = Op.getValueType();
1786   SDValue Hi = DAG.getNode(SPISD::Hi, DL, VT, withTargetFlags(Op, HiTF, DAG));
1787   SDValue Lo = DAG.getNode(SPISD::Lo, DL, VT, withTargetFlags(Op, LoTF, DAG));
1788   return DAG.getNode(ISD::ADD, DL, VT, Hi, Lo);
1789 }
1790
1791 // Build SDNodes for producing an address from a GlobalAddress, ConstantPool,
1792 // or ExternalSymbol SDNode.
1793 SDValue SparcTargetLowering::makeAddress(SDValue Op, SelectionDAG &DAG) const {
1794   SDLoc DL(Op);
1795   EVT VT = getPointerTy();
1796
1797   // Handle PIC mode first.
1798   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
1799     // This is the pic32 code model, the GOT is known to be smaller than 4GB.
1800     SDValue HiLo = makeHiLoPair(Op, SPII::MO_HI, SPII::MO_LO, DAG);
1801     SDValue GlobalBase = DAG.getNode(SPISD::GLOBAL_BASE_REG, DL, VT);
1802     SDValue AbsAddr = DAG.getNode(ISD::ADD, DL, VT, GlobalBase, HiLo);
1803     // GLOBAL_BASE_REG codegen'ed with call. Inform MFI that this
1804     // function has calls.
1805     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
1806     MFI->setHasCalls(true);
1807     return DAG.getLoad(VT, DL, DAG.getEntryNode(), AbsAddr,
1808                        MachinePointerInfo::getGOT(), false, false, false, 0);
1809   }
1810
1811   // This is one of the absolute code models.
1812   switch(getTargetMachine().getCodeModel()) {
1813   default:
1814     llvm_unreachable("Unsupported absolute code model");
1815   case CodeModel::JITDefault:
1816   case CodeModel::Small:
1817     // abs32.
1818     return makeHiLoPair(Op, SPII::MO_HI, SPII::MO_LO, DAG);
1819   case CodeModel::Medium: {
1820     // abs44.
1821     SDValue H44 = makeHiLoPair(Op, SPII::MO_H44, SPII::MO_M44, DAG);
1822     H44 = DAG.getNode(ISD::SHL, DL, VT, H44, DAG.getConstant(12, MVT::i32));
1823     SDValue L44 = withTargetFlags(Op, SPII::MO_L44, DAG);
1824     L44 = DAG.getNode(SPISD::Lo, DL, VT, L44);
1825     return DAG.getNode(ISD::ADD, DL, VT, H44, L44);
1826   }
1827   case CodeModel::Large: {
1828     // abs64.
1829     SDValue Hi = makeHiLoPair(Op, SPII::MO_HH, SPII::MO_HM, DAG);
1830     Hi = DAG.getNode(ISD::SHL, DL, VT, Hi, DAG.getConstant(32, MVT::i32));
1831     SDValue Lo = makeHiLoPair(Op, SPII::MO_HI, SPII::MO_LO, DAG);
1832     return DAG.getNode(ISD::ADD, DL, VT, Hi, Lo);
1833   }
1834   }
1835 }
1836
1837 SDValue SparcTargetLowering::LowerGlobalAddress(SDValue Op,
1838                                                 SelectionDAG &DAG) const {
1839   return makeAddress(Op, DAG);
1840 }
1841
1842 SDValue SparcTargetLowering::LowerConstantPool(SDValue Op,
1843                                                SelectionDAG &DAG) const {
1844   return makeAddress(Op, DAG);
1845 }
1846
1847 SDValue SparcTargetLowering::LowerBlockAddress(SDValue Op,
1848                                                SelectionDAG &DAG) const {
1849   return makeAddress(Op, DAG);
1850 }
1851
1852 SDValue SparcTargetLowering::LowerGlobalTLSAddress(SDValue Op,
1853                                                    SelectionDAG &DAG) const {
1854
1855   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
1856   SDLoc DL(GA);
1857   const GlobalValue *GV = GA->getGlobal();
1858   EVT PtrVT = getPointerTy();
1859
1860   TLSModel::Model model = getTargetMachine().getTLSModel(GV);
1861
1862   if (model == TLSModel::GeneralDynamic || model == TLSModel::LocalDynamic) {
1863     unsigned HiTF = ((model == TLSModel::GeneralDynamic)? SPII::MO_TLS_GD_HI22
1864                      : SPII::MO_TLS_LDM_HI22);
1865     unsigned LoTF = ((model == TLSModel::GeneralDynamic)? SPII::MO_TLS_GD_LO10
1866                      : SPII::MO_TLS_LDM_LO10);
1867     unsigned addTF = ((model == TLSModel::GeneralDynamic)? SPII::MO_TLS_GD_ADD
1868                       : SPII::MO_TLS_LDM_ADD);
1869     unsigned callTF = ((model == TLSModel::GeneralDynamic)? SPII::MO_TLS_GD_CALL
1870                        : SPII::MO_TLS_LDM_CALL);
1871
1872     SDValue HiLo = makeHiLoPair(Op, HiTF, LoTF, DAG);
1873     SDValue Base = DAG.getNode(SPISD::GLOBAL_BASE_REG, DL, PtrVT);
1874     SDValue Argument = DAG.getNode(SPISD::TLS_ADD, DL, PtrVT, Base, HiLo,
1875                                withTargetFlags(Op, addTF, DAG));
1876
1877     SDValue Chain = DAG.getEntryNode();
1878     SDValue InFlag;
1879
1880     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(1, true), DL);
1881     Chain = DAG.getCopyToReg(Chain, DL, SP::O0, Argument, InFlag);
1882     InFlag = Chain.getValue(1);
1883     SDValue Callee = DAG.getTargetExternalSymbol("__tls_get_addr", PtrVT);
1884     SDValue Symbol = withTargetFlags(Op, callTF, DAG);
1885
1886     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
1887     SmallVector<SDValue, 4> Ops;
1888     Ops.push_back(Chain);
1889     Ops.push_back(Callee);
1890     Ops.push_back(Symbol);
1891     Ops.push_back(DAG.getRegister(SP::O0, PtrVT));
1892     const uint32_t *Mask = getTargetMachine()
1893       .getRegisterInfo()->getCallPreservedMask(CallingConv::C);
1894     assert(Mask && "Missing call preserved mask for calling convention");
1895     Ops.push_back(DAG.getRegisterMask(Mask));
1896     Ops.push_back(InFlag);
1897     Chain = DAG.getNode(SPISD::TLS_CALL, DL, NodeTys, &Ops[0], Ops.size());
1898     InFlag = Chain.getValue(1);
1899     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(1, true),
1900                                DAG.getIntPtrConstant(0, true), InFlag, DL);
1901     InFlag = Chain.getValue(1);
1902     SDValue Ret = DAG.getCopyFromReg(Chain, DL, SP::O0, PtrVT, InFlag);
1903
1904     if (model != TLSModel::LocalDynamic)
1905       return Ret;
1906
1907     SDValue Hi = DAG.getNode(SPISD::Hi, DL, PtrVT,
1908                              withTargetFlags(Op, SPII::MO_TLS_LDO_HIX22, DAG));
1909     SDValue Lo = DAG.getNode(SPISD::Lo, DL, PtrVT,
1910                              withTargetFlags(Op, SPII::MO_TLS_LDO_LOX10, DAG));
1911     HiLo =  DAG.getNode(ISD::XOR, DL, PtrVT, Hi, Lo);
1912     return DAG.getNode(SPISD::TLS_ADD, DL, PtrVT, Ret, HiLo,
1913                        withTargetFlags(Op, SPII::MO_TLS_LDO_ADD, DAG));
1914   }
1915
1916   if (model == TLSModel::InitialExec) {
1917     unsigned ldTF     = ((PtrVT == MVT::i64)? SPII::MO_TLS_IE_LDX
1918                          : SPII::MO_TLS_IE_LD);
1919
1920     SDValue Base = DAG.getNode(SPISD::GLOBAL_BASE_REG, DL, PtrVT);
1921
1922     // GLOBAL_BASE_REG codegen'ed with call. Inform MFI that this
1923     // function has calls.
1924     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
1925     MFI->setHasCalls(true);
1926
1927     SDValue TGA = makeHiLoPair(Op,
1928                                SPII::MO_TLS_IE_HI22, SPII::MO_TLS_IE_LO10, DAG);
1929     SDValue Ptr = DAG.getNode(ISD::ADD, DL, PtrVT, Base, TGA);
1930     SDValue Offset = DAG.getNode(SPISD::TLS_LD,
1931                                  DL, PtrVT, Ptr,
1932                                  withTargetFlags(Op, ldTF, DAG));
1933     return DAG.getNode(SPISD::TLS_ADD, DL, PtrVT,
1934                        DAG.getRegister(SP::G7, PtrVT), Offset,
1935                        withTargetFlags(Op, SPII::MO_TLS_IE_ADD, DAG));
1936   }
1937
1938   assert(model == TLSModel::LocalExec);
1939   SDValue Hi = DAG.getNode(SPISD::Hi, DL, PtrVT,
1940                            withTargetFlags(Op, SPII::MO_TLS_LE_HIX22, DAG));
1941   SDValue Lo = DAG.getNode(SPISD::Lo, DL, PtrVT,
1942                            withTargetFlags(Op, SPII::MO_TLS_LE_LOX10, DAG));
1943   SDValue Offset =  DAG.getNode(ISD::XOR, DL, PtrVT, Hi, Lo);
1944
1945   return DAG.getNode(ISD::ADD, DL, PtrVT,
1946                      DAG.getRegister(SP::G7, PtrVT), Offset);
1947 }
1948
1949 SDValue
1950 SparcTargetLowering::LowerF128_LibCallArg(SDValue Chain, ArgListTy &Args,
1951                                           SDValue Arg, SDLoc DL,
1952                                           SelectionDAG &DAG) const {
1953   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
1954   EVT ArgVT = Arg.getValueType();
1955   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
1956
1957   ArgListEntry Entry;
1958   Entry.Node = Arg;
1959   Entry.Ty   = ArgTy;
1960
1961   if (ArgTy->isFP128Ty()) {
1962     // Create a stack object and pass the pointer to the library function.
1963     int FI = MFI->CreateStackObject(16, 8, false);
1964     SDValue FIPtr = DAG.getFrameIndex(FI, getPointerTy());
1965     Chain = DAG.getStore(Chain,
1966                          DL,
1967                          Entry.Node,
1968                          FIPtr,
1969                          MachinePointerInfo(),
1970                          false,
1971                          false,
1972                          8);
1973
1974     Entry.Node = FIPtr;
1975     Entry.Ty   = PointerType::getUnqual(ArgTy);
1976   }
1977   Args.push_back(Entry);
1978   return Chain;
1979 }
1980
1981 SDValue
1982 SparcTargetLowering::LowerF128Op(SDValue Op, SelectionDAG &DAG,
1983                                  const char *LibFuncName,
1984                                  unsigned numArgs) const {
1985
1986   ArgListTy Args;
1987
1988   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
1989
1990   SDValue Callee = DAG.getExternalSymbol(LibFuncName, getPointerTy());
1991   Type *RetTy = Op.getValueType().getTypeForEVT(*DAG.getContext());
1992   Type *RetTyABI = RetTy;
1993   SDValue Chain = DAG.getEntryNode();
1994   SDValue RetPtr;
1995
1996   if (RetTy->isFP128Ty()) {
1997     // Create a Stack Object to receive the return value of type f128.
1998     ArgListEntry Entry;
1999     int RetFI = MFI->CreateStackObject(16, 8, false);
2000     RetPtr = DAG.getFrameIndex(RetFI, getPointerTy());
2001     Entry.Node = RetPtr;
2002     Entry.Ty   = PointerType::getUnqual(RetTy);
2003     if (!Subtarget->is64Bit())
2004       Entry.isSRet = true;
2005     Entry.isReturned = false;
2006     Args.push_back(Entry);
2007     RetTyABI = Type::getVoidTy(*DAG.getContext());
2008   }
2009
2010   assert(Op->getNumOperands() >= numArgs && "Not enough operands!");
2011   for (unsigned i = 0, e = numArgs; i != e; ++i) {
2012     Chain = LowerF128_LibCallArg(Chain, Args, Op.getOperand(i), SDLoc(Op), DAG);
2013   }
2014   TargetLowering::
2015     CallLoweringInfo CLI(Chain,
2016                          RetTyABI,
2017                          false, false, false, false,
2018                          0, CallingConv::C,
2019                          false, false, true,
2020                          Callee, Args, DAG, SDLoc(Op));
2021   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
2022
2023   // chain is in second result.
2024   if (RetTyABI == RetTy)
2025     return CallInfo.first;
2026
2027   assert (RetTy->isFP128Ty() && "Unexpected return type!");
2028
2029   Chain = CallInfo.second;
2030
2031   // Load RetPtr to get the return value.
2032   return DAG.getLoad(Op.getValueType(),
2033                      SDLoc(Op),
2034                      Chain,
2035                      RetPtr,
2036                      MachinePointerInfo(),
2037                      false, false, false, 8);
2038 }
2039
2040 SDValue
2041 SparcTargetLowering::LowerF128Compare(SDValue LHS, SDValue RHS,
2042                                       unsigned &SPCC,
2043                                       SDLoc DL,
2044                                       SelectionDAG &DAG) const {
2045
2046   const char *LibCall = 0;
2047   bool is64Bit = Subtarget->is64Bit();
2048   switch(SPCC) {
2049   default: llvm_unreachable("Unhandled conditional code!");
2050   case SPCC::FCC_E  : LibCall = is64Bit? "_Qp_feq" : "_Q_feq"; break;
2051   case SPCC::FCC_NE : LibCall = is64Bit? "_Qp_fne" : "_Q_fne"; break;
2052   case SPCC::FCC_L  : LibCall = is64Bit? "_Qp_flt" : "_Q_flt"; break;
2053   case SPCC::FCC_G  : LibCall = is64Bit? "_Qp_fgt" : "_Q_fgt"; break;
2054   case SPCC::FCC_LE : LibCall = is64Bit? "_Qp_fle" : "_Q_fle"; break;
2055   case SPCC::FCC_GE : LibCall = is64Bit? "_Qp_fge" : "_Q_fge"; break;
2056   case SPCC::FCC_UL :
2057   case SPCC::FCC_ULE:
2058   case SPCC::FCC_UG :
2059   case SPCC::FCC_UGE:
2060   case SPCC::FCC_U  :
2061   case SPCC::FCC_O  :
2062   case SPCC::FCC_LG :
2063   case SPCC::FCC_UE : LibCall = is64Bit? "_Qp_cmp" : "_Q_cmp"; break;
2064   }
2065
2066   SDValue Callee = DAG.getExternalSymbol(LibCall, getPointerTy());
2067   Type *RetTy = Type::getInt32Ty(*DAG.getContext());
2068   ArgListTy Args;
2069   SDValue Chain = DAG.getEntryNode();
2070   Chain = LowerF128_LibCallArg(Chain, Args, LHS, DL, DAG);
2071   Chain = LowerF128_LibCallArg(Chain, Args, RHS, DL, DAG);
2072
2073   TargetLowering::
2074     CallLoweringInfo CLI(Chain,
2075                          RetTy,
2076                          false, false, false, false,
2077                          0, CallingConv::C,
2078                          false, false, true,
2079                          Callee, Args, DAG, DL);
2080
2081   std::pair<SDValue, SDValue> CallInfo = LowerCallTo(CLI);
2082
2083   // result is in first, and chain is in second result.
2084   SDValue Result =  CallInfo.first;
2085
2086   switch(SPCC) {
2087   default: {
2088     SDValue RHS = DAG.getTargetConstant(0, Result.getValueType());
2089     SPCC = SPCC::ICC_NE;
2090     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2091   }
2092   case SPCC::FCC_UL : {
2093     SDValue Mask   = DAG.getTargetConstant(1, Result.getValueType());
2094     Result = DAG.getNode(ISD::AND, DL, Result.getValueType(), Result, Mask);
2095     SDValue RHS    = DAG.getTargetConstant(0, Result.getValueType());
2096     SPCC = SPCC::ICC_NE;
2097     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2098   }
2099   case SPCC::FCC_ULE: {
2100     SDValue RHS = DAG.getTargetConstant(2, Result.getValueType());
2101     SPCC = SPCC::ICC_NE;
2102     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2103   }
2104   case SPCC::FCC_UG :  {
2105     SDValue RHS = DAG.getTargetConstant(1, Result.getValueType());
2106     SPCC = SPCC::ICC_G;
2107     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2108   }
2109   case SPCC::FCC_UGE: {
2110     SDValue RHS = DAG.getTargetConstant(1, Result.getValueType());
2111     SPCC = SPCC::ICC_NE;
2112     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2113   }
2114
2115   case SPCC::FCC_U  :  {
2116     SDValue RHS = DAG.getTargetConstant(3, Result.getValueType());
2117     SPCC = SPCC::ICC_E;
2118     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2119   }
2120   case SPCC::FCC_O  :  {
2121     SDValue RHS = DAG.getTargetConstant(3, Result.getValueType());
2122     SPCC = SPCC::ICC_NE;
2123     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2124   }
2125   case SPCC::FCC_LG :  {
2126     SDValue Mask   = DAG.getTargetConstant(3, Result.getValueType());
2127     Result = DAG.getNode(ISD::AND, DL, Result.getValueType(), Result, Mask);
2128     SDValue RHS    = DAG.getTargetConstant(0, Result.getValueType());
2129     SPCC = SPCC::ICC_NE;
2130     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2131   }
2132   case SPCC::FCC_UE : {
2133     SDValue Mask   = DAG.getTargetConstant(3, Result.getValueType());
2134     Result = DAG.getNode(ISD::AND, DL, Result.getValueType(), Result, Mask);
2135     SDValue RHS    = DAG.getTargetConstant(0, Result.getValueType());
2136     SPCC = SPCC::ICC_E;
2137     return DAG.getNode(SPISD::CMPICC, DL, MVT::Glue, Result, RHS);
2138   }
2139   }
2140 }
2141
2142 static SDValue
2143 LowerF128_FPEXTEND(SDValue Op, SelectionDAG &DAG,
2144                    const SparcTargetLowering &TLI) {
2145
2146   if (Op.getOperand(0).getValueType() == MVT::f64)
2147     return TLI.LowerF128Op(Op, DAG,
2148                            TLI.getLibcallName(RTLIB::FPEXT_F64_F128), 1);
2149
2150   if (Op.getOperand(0).getValueType() == MVT::f32)
2151     return TLI.LowerF128Op(Op, DAG,
2152                            TLI.getLibcallName(RTLIB::FPEXT_F32_F128), 1);
2153
2154   llvm_unreachable("fpextend with non-float operand!");
2155   return SDValue(0, 0);
2156 }
2157
2158 static SDValue
2159 LowerF128_FPROUND(SDValue Op, SelectionDAG &DAG,
2160                   const SparcTargetLowering &TLI) {
2161   // FP_ROUND on f64 and f32 are legal.
2162   if (Op.getOperand(0).getValueType() != MVT::f128)
2163     return Op;
2164
2165   if (Op.getValueType() == MVT::f64)
2166     return TLI.LowerF128Op(Op, DAG,
2167                            TLI.getLibcallName(RTLIB::FPROUND_F128_F64), 1);
2168   if (Op.getValueType() == MVT::f32)
2169     return TLI.LowerF128Op(Op, DAG,
2170                            TLI.getLibcallName(RTLIB::FPROUND_F128_F32), 1);
2171
2172   llvm_unreachable("fpround to non-float!");
2173   return SDValue(0, 0);
2174 }
2175
2176 static SDValue LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG,
2177                                const SparcTargetLowering &TLI,
2178                                bool hasHardQuad) {
2179   SDLoc dl(Op);
2180   EVT VT = Op.getValueType();
2181   assert(VT == MVT::i32 || VT == MVT::i64);
2182
2183   // Expand f128 operations to fp128 abi calls.
2184   if (Op.getOperand(0).getValueType() == MVT::f128
2185       && (!hasHardQuad || !TLI.isTypeLegal(VT))) {
2186     const char *libName = TLI.getLibcallName(VT == MVT::i32
2187                                              ? RTLIB::FPTOSINT_F128_I32
2188                                              : RTLIB::FPTOSINT_F128_I64);
2189     return TLI.LowerF128Op(Op, DAG, libName, 1);
2190   }
2191
2192   // Expand if the resulting type is illegal.
2193   if (!TLI.isTypeLegal(VT))
2194     return SDValue(0, 0);
2195
2196   // Otherwise, Convert the fp value to integer in an FP register.
2197   if (VT == MVT::i32)
2198     Op = DAG.getNode(SPISD::FTOI, dl, MVT::f32, Op.getOperand(0));
2199   else
2200     Op = DAG.getNode(SPISD::FTOX, dl, MVT::f64, Op.getOperand(0));
2201
2202   return DAG.getNode(ISD::BITCAST, dl, VT, Op);
2203 }
2204
2205 static SDValue LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG,
2206                                const SparcTargetLowering &TLI,
2207                                bool hasHardQuad) {
2208   SDLoc dl(Op);
2209   EVT OpVT = Op.getOperand(0).getValueType();
2210   assert(OpVT == MVT::i32 || (OpVT == MVT::i64));
2211
2212   EVT floatVT = (OpVT == MVT::i32) ? MVT::f32 : MVT::f64;
2213
2214   // Expand f128 operations to fp128 ABI calls.
2215   if (Op.getValueType() == MVT::f128
2216       && (!hasHardQuad || !TLI.isTypeLegal(OpVT))) {
2217     const char *libName = TLI.getLibcallName(OpVT == MVT::i32
2218                                              ? RTLIB::SINTTOFP_I32_F128
2219                                              : RTLIB::SINTTOFP_I64_F128);
2220     return TLI.LowerF128Op(Op, DAG, libName, 1);
2221   }
2222
2223   // Expand if the operand type is illegal.
2224   if (!TLI.isTypeLegal(OpVT))
2225     return SDValue(0, 0);
2226
2227   // Otherwise, Convert the int value to FP in an FP register.
2228   SDValue Tmp = DAG.getNode(ISD::BITCAST, dl, floatVT, Op.getOperand(0));
2229   unsigned opcode = (OpVT == MVT::i32)? SPISD::ITOF : SPISD::XTOF;
2230   return DAG.getNode(opcode, dl, Op.getValueType(), Tmp);
2231 }
2232
2233 static SDValue LowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG,
2234                                const SparcTargetLowering &TLI,
2235                                bool hasHardQuad) {
2236   SDLoc dl(Op);
2237   EVT VT = Op.getValueType();
2238
2239   // Expand if it does not involve f128 or the target has support for
2240   // quad floating point instructions and the resulting type is legal.
2241   if (Op.getOperand(0).getValueType() != MVT::f128 ||
2242       (hasHardQuad && TLI.isTypeLegal(VT)))
2243     return SDValue(0, 0);
2244
2245   assert(VT == MVT::i32 || VT == MVT::i64);
2246
2247   return TLI.LowerF128Op(Op, DAG,
2248                          TLI.getLibcallName(VT == MVT::i32
2249                                             ? RTLIB::FPTOUINT_F128_I32
2250                                             : RTLIB::FPTOUINT_F128_I64),
2251                          1);
2252 }
2253
2254 static SDValue LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG,
2255                                const SparcTargetLowering &TLI,
2256                                bool hasHardQuad) {
2257   SDLoc dl(Op);
2258   EVT OpVT = Op.getOperand(0).getValueType();
2259   assert(OpVT == MVT::i32 || OpVT == MVT::i64);
2260
2261   // Expand if it does not involve f128 or the target has support for
2262   // quad floating point instructions and the operand type is legal.
2263   if (Op.getValueType() != MVT::f128 || (hasHardQuad && TLI.isTypeLegal(OpVT)))
2264     return SDValue(0, 0);
2265
2266   return TLI.LowerF128Op(Op, DAG,
2267                          TLI.getLibcallName(OpVT == MVT::i32
2268                                             ? RTLIB::UINTTOFP_I32_F128
2269                                             : RTLIB::UINTTOFP_I64_F128),
2270                          1);
2271 }
2272
2273 static SDValue LowerBR_CC(SDValue Op, SelectionDAG &DAG,
2274                           const SparcTargetLowering &TLI,
2275                           bool hasHardQuad) {
2276   SDValue Chain = Op.getOperand(0);
2277   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(1))->get();
2278   SDValue LHS = Op.getOperand(2);
2279   SDValue RHS = Op.getOperand(3);
2280   SDValue Dest = Op.getOperand(4);
2281   SDLoc dl(Op);
2282   unsigned Opc, SPCC = ~0U;
2283
2284   // If this is a br_cc of a "setcc", and if the setcc got lowered into
2285   // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
2286   LookThroughSetCC(LHS, RHS, CC, SPCC);
2287
2288   // Get the condition flag.
2289   SDValue CompareFlag;
2290   if (LHS.getValueType().isInteger()) {
2291     CompareFlag = DAG.getNode(SPISD::CMPICC, dl, MVT::Glue, LHS, RHS);
2292     if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
2293     // 32-bit compares use the icc flags, 64-bit uses the xcc flags.
2294     Opc = LHS.getValueType() == MVT::i32 ? SPISD::BRICC : SPISD::BRXCC;
2295   } else {
2296     if (!hasHardQuad && LHS.getValueType() == MVT::f128) {
2297       if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
2298       CompareFlag = TLI.LowerF128Compare(LHS, RHS, SPCC, dl, DAG);
2299       Opc = SPISD::BRICC;
2300     } else {
2301       CompareFlag = DAG.getNode(SPISD::CMPFCC, dl, MVT::Glue, LHS, RHS);
2302       if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
2303       Opc = SPISD::BRFCC;
2304     }
2305   }
2306   return DAG.getNode(Opc, dl, MVT::Other, Chain, Dest,
2307                      DAG.getConstant(SPCC, MVT::i32), CompareFlag);
2308 }
2309
2310 static SDValue LowerSELECT_CC(SDValue Op, SelectionDAG &DAG,
2311                               const SparcTargetLowering &TLI,
2312                               bool hasHardQuad) {
2313   SDValue LHS = Op.getOperand(0);
2314   SDValue RHS = Op.getOperand(1);
2315   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(4))->get();
2316   SDValue TrueVal = Op.getOperand(2);
2317   SDValue FalseVal = Op.getOperand(3);
2318   SDLoc dl(Op);
2319   unsigned Opc, SPCC = ~0U;
2320
2321   // If this is a select_cc of a "setcc", and if the setcc got lowered into
2322   // an CMP[IF]CC/SELECT_[IF]CC pair, find the original compared values.
2323   LookThroughSetCC(LHS, RHS, CC, SPCC);
2324
2325   SDValue CompareFlag;
2326   if (LHS.getValueType().isInteger()) {
2327     CompareFlag = DAG.getNode(SPISD::CMPICC, dl, MVT::Glue, LHS, RHS);
2328     Opc = LHS.getValueType() == MVT::i32 ?
2329           SPISD::SELECT_ICC : SPISD::SELECT_XCC;
2330     if (SPCC == ~0U) SPCC = IntCondCCodeToICC(CC);
2331   } else {
2332     if (!hasHardQuad && LHS.getValueType() == MVT::f128) {
2333       if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
2334       CompareFlag = TLI.LowerF128Compare(LHS, RHS, SPCC, dl, DAG);
2335       Opc = SPISD::SELECT_ICC;
2336     } else {
2337       CompareFlag = DAG.getNode(SPISD::CMPFCC, dl, MVT::Glue, LHS, RHS);
2338       Opc = SPISD::SELECT_FCC;
2339       if (SPCC == ~0U) SPCC = FPCondCCodeToFCC(CC);
2340     }
2341   }
2342   return DAG.getNode(Opc, dl, TrueVal.getValueType(), TrueVal, FalseVal,
2343                      DAG.getConstant(SPCC, MVT::i32), CompareFlag);
2344 }
2345
2346 static SDValue LowerVASTART(SDValue Op, SelectionDAG &DAG,
2347                             const SparcTargetLowering &TLI) {
2348   MachineFunction &MF = DAG.getMachineFunction();
2349   SparcMachineFunctionInfo *FuncInfo = MF.getInfo<SparcMachineFunctionInfo>();
2350
2351   // Need frame address to find the address of VarArgsFrameIndex.
2352   MF.getFrameInfo()->setFrameAddressIsTaken(true);
2353
2354   // vastart just stores the address of the VarArgsFrameIndex slot into the
2355   // memory location argument.
2356   SDLoc DL(Op);
2357   SDValue Offset =
2358     DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(),
2359                 DAG.getRegister(SP::I6, TLI.getPointerTy()),
2360                 DAG.getIntPtrConstant(FuncInfo->getVarArgsFrameOffset()));
2361   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
2362   return DAG.getStore(Op.getOperand(0), DL, Offset, Op.getOperand(1),
2363                       MachinePointerInfo(SV), false, false, 0);
2364 }
2365
2366 static SDValue LowerVAARG(SDValue Op, SelectionDAG &DAG) {
2367   SDNode *Node = Op.getNode();
2368   EVT VT = Node->getValueType(0);
2369   SDValue InChain = Node->getOperand(0);
2370   SDValue VAListPtr = Node->getOperand(1);
2371   EVT PtrVT = VAListPtr.getValueType();
2372   const Value *SV = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
2373   SDLoc DL(Node);
2374   SDValue VAList = DAG.getLoad(PtrVT, DL, InChain, VAListPtr,
2375                                MachinePointerInfo(SV), false, false, false, 0);
2376   // Increment the pointer, VAList, to the next vaarg.
2377   SDValue NextPtr = DAG.getNode(ISD::ADD, DL, PtrVT, VAList,
2378                                 DAG.getIntPtrConstant(VT.getSizeInBits()/8));
2379   // Store the incremented VAList to the legalized pointer.
2380   InChain = DAG.getStore(VAList.getValue(1), DL, NextPtr,
2381                          VAListPtr, MachinePointerInfo(SV), false, false, 0);
2382   // Load the actual argument out of the pointer VAList.
2383   // We can't count on greater alignment than the word size.
2384   return DAG.getLoad(VT, DL, InChain, VAList, MachinePointerInfo(),
2385                      false, false, false,
2386                      std::min(PtrVT.getSizeInBits(), VT.getSizeInBits())/8);
2387 }
2388
2389 static SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG,
2390                                        const SparcSubtarget *Subtarget) {
2391   SDValue Chain = Op.getOperand(0);  // Legalize the chain.
2392   SDValue Size  = Op.getOperand(1);  // Legalize the size.
2393   EVT VT = Size->getValueType(0);
2394   SDLoc dl(Op);
2395
2396   unsigned SPReg = SP::O6;
2397   SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
2398   SDValue NewSP = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
2399   Chain = DAG.getCopyToReg(SP.getValue(1), dl, SPReg, NewSP);    // Output chain
2400
2401   // The resultant pointer is actually 16 words from the bottom of the stack,
2402   // to provide a register spill area.
2403   unsigned regSpillArea = Subtarget->is64Bit() ? 128 : 96;
2404   regSpillArea += Subtarget->getStackPointerBias();
2405
2406   SDValue NewVal = DAG.getNode(ISD::ADD, dl, VT, NewSP,
2407                                DAG.getConstant(regSpillArea, VT));
2408   SDValue Ops[2] = { NewVal, Chain };
2409   return DAG.getMergeValues(Ops, 2, dl);
2410 }
2411
2412
2413 static SDValue getFLUSHW(SDValue Op, SelectionDAG &DAG) {
2414   SDLoc dl(Op);
2415   SDValue Chain = DAG.getNode(SPISD::FLUSHW,
2416                               dl, MVT::Other, DAG.getEntryNode());
2417   return Chain;
2418 }
2419
2420 static SDValue getFRAMEADDR(uint64_t depth, SDValue Op, SelectionDAG &DAG,
2421                             const SparcSubtarget *Subtarget) {
2422   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2423   MFI->setFrameAddressIsTaken(true);
2424
2425   EVT VT = Op.getValueType();
2426   SDLoc dl(Op);
2427   unsigned FrameReg = SP::I6;
2428   unsigned stackBias = Subtarget->getStackPointerBias();
2429
2430   SDValue FrameAddr;
2431
2432   if (depth == 0) {
2433     FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
2434     if (Subtarget->is64Bit())
2435       FrameAddr = DAG.getNode(ISD::ADD, dl, VT, FrameAddr,
2436                               DAG.getIntPtrConstant(stackBias));
2437     return FrameAddr;
2438   }
2439
2440   // flush first to make sure the windowed registers' values are in stack
2441   SDValue Chain = getFLUSHW(Op, DAG);
2442   FrameAddr = DAG.getCopyFromReg(Chain, dl, FrameReg, VT);
2443
2444   unsigned Offset = (Subtarget->is64Bit()) ? (stackBias + 112) : 56;
2445
2446   while (depth--) {
2447     SDValue Ptr = DAG.getNode(ISD::ADD, dl, VT, FrameAddr,
2448                               DAG.getIntPtrConstant(Offset));
2449     FrameAddr = DAG.getLoad(VT, dl, Chain, Ptr, MachinePointerInfo(),
2450                             false, false, false, 0);
2451   }
2452   if (Subtarget->is64Bit())
2453     FrameAddr = DAG.getNode(ISD::ADD, dl, VT, FrameAddr,
2454                             DAG.getIntPtrConstant(stackBias));
2455   return FrameAddr;
2456 }
2457
2458
2459 static SDValue LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG,
2460                               const SparcSubtarget *Subtarget) {
2461
2462   uint64_t depth = Op.getConstantOperandVal(0);
2463
2464   return getFRAMEADDR(depth, Op, DAG, Subtarget);
2465
2466 }
2467
2468 static SDValue LowerRETURNADDR(SDValue Op, SelectionDAG &DAG,
2469                                const SparcTargetLowering &TLI,
2470                                const SparcSubtarget *Subtarget) {
2471   MachineFunction &MF = DAG.getMachineFunction();
2472   MachineFrameInfo *MFI = MF.getFrameInfo();
2473   MFI->setReturnAddressIsTaken(true);
2474
2475   if (TLI.verifyReturnAddressArgumentIsConstant(Op, DAG))
2476     return SDValue();
2477
2478   EVT VT = Op.getValueType();
2479   SDLoc dl(Op);
2480   uint64_t depth = Op.getConstantOperandVal(0);
2481
2482   SDValue RetAddr;
2483   if (depth == 0) {
2484     unsigned RetReg = MF.addLiveIn(SP::I7,
2485                                    TLI.getRegClassFor(TLI.getPointerTy()));
2486     RetAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, RetReg, VT);
2487     return RetAddr;
2488   }
2489
2490   // Need frame address to find return address of the caller.
2491   SDValue FrameAddr = getFRAMEADDR(depth - 1, Op, DAG, Subtarget);
2492
2493   unsigned Offset = (Subtarget->is64Bit()) ? 120 : 60;
2494   SDValue Ptr = DAG.getNode(ISD::ADD,
2495                             dl, VT,
2496                             FrameAddr,
2497                             DAG.getIntPtrConstant(Offset));
2498   RetAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), Ptr,
2499                         MachinePointerInfo(), false, false, false, 0);
2500
2501   return RetAddr;
2502 }
2503
2504 static SDValue LowerF64Op(SDValue Op, SelectionDAG &DAG, unsigned opcode)
2505 {
2506   SDLoc dl(Op);
2507
2508   assert(Op.getValueType() == MVT::f64 && "LowerF64Op called on non-double!");
2509   assert(opcode == ISD::FNEG || opcode == ISD::FABS);
2510
2511   // Lower fneg/fabs on f64 to fneg/fabs on f32.
2512   // fneg f64 => fneg f32:sub_even, fmov f32:sub_odd.
2513   // fabs f64 => fabs f32:sub_even, fmov f32:sub_odd.
2514
2515   SDValue SrcReg64 = Op.getOperand(0);
2516   SDValue Hi32 = DAG.getTargetExtractSubreg(SP::sub_even, dl, MVT::f32,
2517                                             SrcReg64);
2518   SDValue Lo32 = DAG.getTargetExtractSubreg(SP::sub_odd, dl, MVT::f32,
2519                                             SrcReg64);
2520
2521   Hi32 = DAG.getNode(opcode, dl, MVT::f32, Hi32);
2522
2523   SDValue DstReg64 = SDValue(DAG.getMachineNode(TargetOpcode::IMPLICIT_DEF,
2524                                                 dl, MVT::f64), 0);
2525   DstReg64 = DAG.getTargetInsertSubreg(SP::sub_even, dl, MVT::f64,
2526                                        DstReg64, Hi32);
2527   DstReg64 = DAG.getTargetInsertSubreg(SP::sub_odd, dl, MVT::f64,
2528                                        DstReg64, Lo32);
2529   return DstReg64;
2530 }
2531
2532 // Lower a f128 load into two f64 loads.
2533 static SDValue LowerF128Load(SDValue Op, SelectionDAG &DAG)
2534 {
2535   SDLoc dl(Op);
2536   LoadSDNode *LdNode = dyn_cast<LoadSDNode>(Op.getNode());
2537   assert(LdNode && LdNode->getOffset().getOpcode() == ISD::UNDEF
2538          && "Unexpected node type");
2539
2540   unsigned alignment = LdNode->getAlignment();
2541   if (alignment > 8)
2542     alignment = 8;
2543
2544   SDValue Hi64 = DAG.getLoad(MVT::f64,
2545                              dl,
2546                              LdNode->getChain(),
2547                              LdNode->getBasePtr(),
2548                              LdNode->getPointerInfo(),
2549                              false, false, false, alignment);
2550   EVT addrVT = LdNode->getBasePtr().getValueType();
2551   SDValue LoPtr = DAG.getNode(ISD::ADD, dl, addrVT,
2552                               LdNode->getBasePtr(),
2553                               DAG.getConstant(8, addrVT));
2554   SDValue Lo64 = DAG.getLoad(MVT::f64,
2555                              dl,
2556                              LdNode->getChain(),
2557                              LoPtr,
2558                              LdNode->getPointerInfo(),
2559                              false, false, false, alignment);
2560
2561   SDValue SubRegEven = DAG.getTargetConstant(SP::sub_even64, MVT::i32);
2562   SDValue SubRegOdd  = DAG.getTargetConstant(SP::sub_odd64, MVT::i32);
2563
2564   SDNode *InFP128 = DAG.getMachineNode(TargetOpcode::IMPLICIT_DEF,
2565                                        dl, MVT::f128);
2566   InFP128 = DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, dl,
2567                                MVT::f128,
2568                                SDValue(InFP128, 0),
2569                                Hi64,
2570                                SubRegEven);
2571   InFP128 = DAG.getMachineNode(TargetOpcode::INSERT_SUBREG, dl,
2572                                MVT::f128,
2573                                SDValue(InFP128, 0),
2574                                Lo64,
2575                                SubRegOdd);
2576   SDValue OutChains[2] = { SDValue(Hi64.getNode(), 1),
2577                            SDValue(Lo64.getNode(), 1) };
2578   SDValue OutChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2579                                  &OutChains[0], 2);
2580   SDValue Ops[2] = {SDValue(InFP128,0), OutChain};
2581   return DAG.getMergeValues(Ops, 2, dl);
2582 }
2583
2584 // Lower a f128 store into two f64 stores.
2585 static SDValue LowerF128Store(SDValue Op, SelectionDAG &DAG) {
2586   SDLoc dl(Op);
2587   StoreSDNode *StNode = dyn_cast<StoreSDNode>(Op.getNode());
2588   assert(StNode && StNode->getOffset().getOpcode() == ISD::UNDEF
2589          && "Unexpected node type");
2590   SDValue SubRegEven = DAG.getTargetConstant(SP::sub_even64, MVT::i32);
2591   SDValue SubRegOdd  = DAG.getTargetConstant(SP::sub_odd64, MVT::i32);
2592
2593   SDNode *Hi64 = DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG,
2594                                     dl,
2595                                     MVT::f64,
2596                                     StNode->getValue(),
2597                                     SubRegEven);
2598   SDNode *Lo64 = DAG.getMachineNode(TargetOpcode::EXTRACT_SUBREG,
2599                                     dl,
2600                                     MVT::f64,
2601                                     StNode->getValue(),
2602                                     SubRegOdd);
2603
2604   unsigned alignment = StNode->getAlignment();
2605   if (alignment > 8)
2606     alignment = 8;
2607
2608   SDValue OutChains[2];
2609   OutChains[0] = DAG.getStore(StNode->getChain(),
2610                               dl,
2611                               SDValue(Hi64, 0),
2612                               StNode->getBasePtr(),
2613                               MachinePointerInfo(),
2614                               false, false, alignment);
2615   EVT addrVT = StNode->getBasePtr().getValueType();
2616   SDValue LoPtr = DAG.getNode(ISD::ADD, dl, addrVT,
2617                               StNode->getBasePtr(),
2618                               DAG.getConstant(8, addrVT));
2619   OutChains[1] = DAG.getStore(StNode->getChain(),
2620                              dl,
2621                              SDValue(Lo64, 0),
2622                              LoPtr,
2623                              MachinePointerInfo(),
2624                              false, false, alignment);
2625   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2626                      &OutChains[0], 2);
2627 }
2628
2629 static SDValue LowerFNEG(SDValue Op, SelectionDAG &DAG,
2630                          const SparcTargetLowering &TLI,
2631                          bool is64Bit) {
2632   if (Op.getValueType() == MVT::f64)
2633     return LowerF64Op(Op, DAG, ISD::FNEG);
2634   if (Op.getValueType() == MVT::f128)
2635     return TLI.LowerF128Op(Op, DAG, ((is64Bit) ? "_Qp_neg" : "_Q_neg"), 1);
2636   return Op;
2637 }
2638
2639 static SDValue LowerFABS(SDValue Op, SelectionDAG &DAG, bool isV9) {
2640   if (Op.getValueType() == MVT::f64)
2641     return LowerF64Op(Op, DAG, ISD::FABS);
2642   if (Op.getValueType() != MVT::f128)
2643     return Op;
2644
2645   // Lower fabs on f128 to fabs on f64
2646   // fabs f128 => fabs f64:sub_even64, fmov f64:sub_odd64
2647
2648   SDLoc dl(Op);
2649   SDValue SrcReg128 = Op.getOperand(0);
2650   SDValue Hi64 = DAG.getTargetExtractSubreg(SP::sub_even64, dl, MVT::f64,
2651                                             SrcReg128);
2652   SDValue Lo64 = DAG.getTargetExtractSubreg(SP::sub_odd64, dl, MVT::f64,
2653                                             SrcReg128);
2654   if (isV9)
2655     Hi64 = DAG.getNode(Op.getOpcode(), dl, MVT::f64, Hi64);
2656   else
2657     Hi64 = LowerF64Op(Hi64, DAG, ISD::FABS);
2658
2659   SDValue DstReg128 = SDValue(DAG.getMachineNode(TargetOpcode::IMPLICIT_DEF,
2660                                                  dl, MVT::f128), 0);
2661   DstReg128 = DAG.getTargetInsertSubreg(SP::sub_even64, dl, MVT::f128,
2662                                         DstReg128, Hi64);
2663   DstReg128 = DAG.getTargetInsertSubreg(SP::sub_odd64, dl, MVT::f128,
2664                                         DstReg128, Lo64);
2665   return DstReg128;
2666 }
2667
2668 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
2669
2670   if (Op.getValueType() != MVT::i64)
2671     return Op;
2672
2673   SDLoc dl(Op);
2674   SDValue Src1 = Op.getOperand(0);
2675   SDValue Src1Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Src1);
2676   SDValue Src1Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Src1,
2677                                DAG.getConstant(32, MVT::i64));
2678   Src1Hi = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Src1Hi);
2679
2680   SDValue Src2 = Op.getOperand(1);
2681   SDValue Src2Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Src2);
2682   SDValue Src2Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Src2,
2683                                DAG.getConstant(32, MVT::i64));
2684   Src2Hi = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Src2Hi);
2685
2686
2687   bool hasChain = false;
2688   unsigned hiOpc = Op.getOpcode();
2689   switch (Op.getOpcode()) {
2690   default: llvm_unreachable("Invalid opcode");
2691   case ISD::ADDC: hiOpc = ISD::ADDE; break;
2692   case ISD::ADDE: hasChain = true; break;
2693   case ISD::SUBC: hiOpc = ISD::SUBE; break;
2694   case ISD::SUBE: hasChain = true; break;
2695   }
2696   SDValue Lo;
2697   SDVTList VTs = DAG.getVTList(MVT::i32, MVT::Glue);
2698   if (hasChain) {
2699     Lo = DAG.getNode(Op.getOpcode(), dl, VTs, Src1Lo, Src2Lo,
2700                      Op.getOperand(2));
2701   } else {
2702     Lo = DAG.getNode(Op.getOpcode(), dl, VTs, Src1Lo, Src2Lo);
2703   }
2704   SDValue Hi = DAG.getNode(hiOpc, dl, VTs, Src1Hi, Src2Hi, Lo.getValue(1));
2705   SDValue Carry = Hi.getValue(1);
2706
2707   Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, Lo);
2708   Hi = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i64, Hi);
2709   Hi = DAG.getNode(ISD::SHL, dl, MVT::i64, Hi,
2710                    DAG.getConstant(32, MVT::i64));
2711
2712   SDValue Dst = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, Lo);
2713   SDValue Ops[2] = { Dst, Carry };
2714   return DAG.getMergeValues(Ops, 2, dl);
2715 }
2716
2717 // Custom lower UMULO/SMULO for SPARC. This code is similar to ExpandNode()
2718 // in LegalizeDAG.cpp except the order of arguments to the library function.
2719 static SDValue LowerUMULO_SMULO(SDValue Op, SelectionDAG &DAG,
2720                                 const SparcTargetLowering &TLI)
2721 {
2722   unsigned opcode = Op.getOpcode();
2723   assert((opcode == ISD::UMULO || opcode == ISD::SMULO) && "Invalid Opcode.");
2724
2725   bool isSigned = (opcode == ISD::SMULO);
2726   EVT VT = MVT::i64;
2727   EVT WideVT = MVT::i128;
2728   SDLoc dl(Op);
2729   SDValue LHS = Op.getOperand(0);
2730
2731   if (LHS.getValueType() != VT)
2732     return Op;
2733
2734   SDValue ShiftAmt = DAG.getConstant(63, VT);
2735
2736   SDValue RHS = Op.getOperand(1);
2737   SDValue HiLHS = DAG.getNode(ISD::SRA, dl, VT, LHS, ShiftAmt);
2738   SDValue HiRHS = DAG.getNode(ISD::SRA, dl, MVT::i64, RHS, ShiftAmt);
2739   SDValue Args[] = { HiLHS, LHS, HiRHS, RHS };
2740
2741   SDValue MulResult = TLI.makeLibCall(DAG,
2742                                       RTLIB::MUL_I128, WideVT,
2743                                       Args, 4, isSigned, dl).first;
2744   SDValue BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT,
2745                                    MulResult, DAG.getIntPtrConstant(0));
2746   SDValue TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT,
2747                                 MulResult, DAG.getIntPtrConstant(1));
2748   if (isSigned) {
2749     SDValue Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, ShiftAmt);
2750     TopHalf = DAG.getSetCC(dl, MVT::i32, TopHalf, Tmp1, ISD::SETNE);
2751   } else {
2752     TopHalf = DAG.getSetCC(dl, MVT::i32, TopHalf, DAG.getConstant(0, VT),
2753                            ISD::SETNE);
2754   }
2755   // MulResult is a node with an illegal type. Because such things are not
2756   // generally permitted during this phase of legalization, delete the
2757   // node. The above EXTRACT_ELEMENT nodes should have been folded.
2758   DAG.DeleteNode(MulResult.getNode());
2759
2760   SDValue Ops[2] = { BottomHalf, TopHalf } ;
2761   return DAG.getMergeValues(Ops, 2, dl);
2762 }
2763
2764 static SDValue LowerATOMIC_LOAD_STORE(SDValue Op, SelectionDAG &DAG) {
2765   // Monotonic load/stores are legal.
2766   if (cast<AtomicSDNode>(Op)->getOrdering() <= Monotonic)
2767     return Op;
2768
2769   // Otherwise, expand with a fence.
2770   return SDValue();
2771 }
2772
2773
2774 SDValue SparcTargetLowering::
2775 LowerOperation(SDValue Op, SelectionDAG &DAG) const {
2776
2777   bool hasHardQuad = Subtarget->hasHardQuad();
2778   bool is64Bit     = Subtarget->is64Bit();
2779   bool isV9        = Subtarget->isV9();
2780
2781   switch (Op.getOpcode()) {
2782   default: llvm_unreachable("Should not custom lower this!");
2783
2784   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG, *this,
2785                                                        Subtarget);
2786   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG,
2787                                                       Subtarget);
2788   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
2789   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
2790   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
2791   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
2792   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG, *this,
2793                                                        hasHardQuad);
2794   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG, *this,
2795                                                        hasHardQuad);
2796   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG, *this,
2797                                                        hasHardQuad);
2798   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG, *this,
2799                                                        hasHardQuad);
2800   case ISD::BR_CC:              return LowerBR_CC(Op, DAG, *this,
2801                                                   hasHardQuad);
2802   case ISD::SELECT_CC:          return LowerSELECT_CC(Op, DAG, *this,
2803                                                       hasHardQuad);
2804   case ISD::VASTART:            return LowerVASTART(Op, DAG, *this);
2805   case ISD::VAARG:              return LowerVAARG(Op, DAG);
2806   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG,
2807                                                                Subtarget);
2808
2809   case ISD::LOAD:               return LowerF128Load(Op, DAG);
2810   case ISD::STORE:              return LowerF128Store(Op, DAG);
2811   case ISD::FADD:               return LowerF128Op(Op, DAG,
2812                                        getLibcallName(RTLIB::ADD_F128), 2);
2813   case ISD::FSUB:               return LowerF128Op(Op, DAG,
2814                                        getLibcallName(RTLIB::SUB_F128), 2);
2815   case ISD::FMUL:               return LowerF128Op(Op, DAG,
2816                                        getLibcallName(RTLIB::MUL_F128), 2);
2817   case ISD::FDIV:               return LowerF128Op(Op, DAG,
2818                                        getLibcallName(RTLIB::DIV_F128), 2);
2819   case ISD::FSQRT:              return LowerF128Op(Op, DAG,
2820                                        getLibcallName(RTLIB::SQRT_F128),1);
2821   case ISD::FNEG:               return LowerFNEG(Op, DAG, *this, is64Bit);
2822   case ISD::FABS:               return LowerFABS(Op, DAG, isV9);
2823   case ISD::FP_EXTEND:          return LowerF128_FPEXTEND(Op, DAG, *this);
2824   case ISD::FP_ROUND:           return LowerF128_FPROUND(Op, DAG, *this);
2825   case ISD::ADDC:
2826   case ISD::ADDE:
2827   case ISD::SUBC:
2828   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
2829   case ISD::UMULO:
2830   case ISD::SMULO:              return LowerUMULO_SMULO(Op, DAG, *this);
2831   case ISD::ATOMIC_LOAD:
2832   case ISD::ATOMIC_STORE:       return LowerATOMIC_LOAD_STORE(Op, DAG);
2833   }
2834 }
2835
2836 MachineBasicBlock *
2837 SparcTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
2838                                                  MachineBasicBlock *BB) const {
2839   const TargetInstrInfo &TII = *getTargetMachine().getInstrInfo();
2840   unsigned BROpcode;
2841   unsigned CC;
2842   DebugLoc dl = MI->getDebugLoc();
2843   // Figure out the conditional branch opcode to use for this select_cc.
2844   switch (MI->getOpcode()) {
2845   default: llvm_unreachable("Unknown SELECT_CC!");
2846   case SP::SELECT_CC_Int_ICC:
2847   case SP::SELECT_CC_FP_ICC:
2848   case SP::SELECT_CC_DFP_ICC:
2849   case SP::SELECT_CC_QFP_ICC:
2850     BROpcode = SP::BCOND;
2851     break;
2852   case SP::SELECT_CC_Int_FCC:
2853   case SP::SELECT_CC_FP_FCC:
2854   case SP::SELECT_CC_DFP_FCC:
2855   case SP::SELECT_CC_QFP_FCC:
2856     BROpcode = SP::FBCOND;
2857     break;
2858   }
2859
2860   CC = (SPCC::CondCodes)MI->getOperand(3).getImm();
2861
2862   // To "insert" a SELECT_CC instruction, we actually have to insert the diamond
2863   // control-flow pattern.  The incoming instruction knows the destination vreg
2864   // to set, the condition code register to branch on, the true/false values to
2865   // select between, and a branch opcode to use.
2866   const BasicBlock *LLVM_BB = BB->getBasicBlock();
2867   MachineFunction::iterator It = BB;
2868   ++It;
2869
2870   //  thisMBB:
2871   //  ...
2872   //   TrueVal = ...
2873   //   [f]bCC copy1MBB
2874   //   fallthrough --> copy0MBB
2875   MachineBasicBlock *thisMBB = BB;
2876   MachineFunction *F = BB->getParent();
2877   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
2878   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
2879   F->insert(It, copy0MBB);
2880   F->insert(It, sinkMBB);
2881
2882   // Transfer the remainder of BB and its successor edges to sinkMBB.
2883   sinkMBB->splice(sinkMBB->begin(), BB,
2884                   llvm::next(MachineBasicBlock::iterator(MI)),
2885                   BB->end());
2886   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
2887
2888   // Add the true and fallthrough blocks as its successors.
2889   BB->addSuccessor(copy0MBB);
2890   BB->addSuccessor(sinkMBB);
2891
2892   BuildMI(BB, dl, TII.get(BROpcode)).addMBB(sinkMBB).addImm(CC);
2893
2894   //  copy0MBB:
2895   //   %FalseValue = ...
2896   //   # fallthrough to sinkMBB
2897   BB = copy0MBB;
2898
2899   // Update machine-CFG edges
2900   BB->addSuccessor(sinkMBB);
2901
2902   //  sinkMBB:
2903   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
2904   //  ...
2905   BB = sinkMBB;
2906   BuildMI(*BB, BB->begin(), dl, TII.get(SP::PHI), MI->getOperand(0).getReg())
2907     .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
2908     .addReg(MI->getOperand(1).getReg()).addMBB(thisMBB);
2909
2910   MI->eraseFromParent();   // The pseudo instruction is gone now.
2911   return BB;
2912 }
2913
2914 //===----------------------------------------------------------------------===//
2915 //                         Sparc Inline Assembly Support
2916 //===----------------------------------------------------------------------===//
2917
2918 /// getConstraintType - Given a constraint letter, return the type of
2919 /// constraint it is for this target.
2920 SparcTargetLowering::ConstraintType
2921 SparcTargetLowering::getConstraintType(const std::string &Constraint) const {
2922   if (Constraint.size() == 1) {
2923     switch (Constraint[0]) {
2924     default:  break;
2925     case 'r': return C_RegisterClass;
2926     case 'I': // SIMM13
2927       return C_Other;
2928     }
2929   }
2930
2931   return TargetLowering::getConstraintType(Constraint);
2932 }
2933
2934 TargetLowering::ConstraintWeight SparcTargetLowering::
2935 getSingleConstraintMatchWeight(AsmOperandInfo &info,
2936                                const char *constraint) const {
2937   ConstraintWeight weight = CW_Invalid;
2938   Value *CallOperandVal = info.CallOperandVal;
2939   // If we don't have a value, we can't do a match,
2940   // but allow it at the lowest weight.
2941   if (CallOperandVal == NULL)
2942     return CW_Default;
2943
2944   // Look at the constraint type.
2945   switch (*constraint) {
2946   default:
2947     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
2948     break;
2949   case 'I': // SIMM13
2950     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
2951       if (isInt<13>(C->getSExtValue()))
2952         weight = CW_Constant;
2953     }
2954     break;
2955   }
2956   return weight;
2957 }
2958
2959 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
2960 /// vector.  If it is invalid, don't add anything to Ops.
2961 void SparcTargetLowering::
2962 LowerAsmOperandForConstraint(SDValue Op,
2963                              std::string &Constraint,
2964                              std::vector<SDValue> &Ops,
2965                              SelectionDAG &DAG) const {
2966   SDValue Result(0, 0);
2967
2968   // Only support length 1 constraints for now.
2969   if (Constraint.length() > 1)
2970     return;
2971
2972   char ConstraintLetter = Constraint[0];
2973   switch (ConstraintLetter) {
2974   default: break;
2975   case 'I':
2976     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
2977       if (isInt<13>(C->getSExtValue())) {
2978         Result = DAG.getTargetConstant(C->getSExtValue(), Op.getValueType());
2979         break;
2980       }
2981       return;
2982     }
2983   }
2984
2985   if (Result.getNode()) {
2986     Ops.push_back(Result);
2987     return;
2988   }
2989   TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
2990 }
2991
2992 std::pair<unsigned, const TargetRegisterClass*>
2993 SparcTargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
2994                                                   MVT VT) const {
2995   if (Constraint.size() == 1) {
2996     switch (Constraint[0]) {
2997     case 'r':
2998       return std::make_pair(0U, &SP::IntRegsRegClass);
2999     }
3000   }
3001
3002   return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
3003 }
3004
3005 bool
3006 SparcTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
3007   // The Sparc target isn't yet aware of offsets.
3008   return false;
3009 }
3010
3011 void SparcTargetLowering::ReplaceNodeResults(SDNode *N,
3012                                              SmallVectorImpl<SDValue>& Results,
3013                                              SelectionDAG &DAG) const {
3014
3015   SDLoc dl(N);
3016
3017   RTLIB::Libcall libCall = RTLIB::UNKNOWN_LIBCALL;
3018
3019   switch (N->getOpcode()) {
3020   default:
3021     llvm_unreachable("Do not know how to custom type legalize this operation!");
3022
3023   case ISD::FP_TO_SINT:
3024   case ISD::FP_TO_UINT:
3025     // Custom lower only if it involves f128 or i64.
3026     if (N->getOperand(0).getValueType() != MVT::f128
3027         || N->getValueType(0) != MVT::i64)
3028       return;
3029     libCall = ((N->getOpcode() == ISD::FP_TO_SINT)
3030                ? RTLIB::FPTOSINT_F128_I64
3031                : RTLIB::FPTOUINT_F128_I64);
3032
3033     Results.push_back(LowerF128Op(SDValue(N, 0),
3034                                   DAG,
3035                                   getLibcallName(libCall),
3036                                   1));
3037     return;
3038
3039   case ISD::SINT_TO_FP:
3040   case ISD::UINT_TO_FP:
3041     // Custom lower only if it involves f128 or i64.
3042     if (N->getValueType(0) != MVT::f128
3043         || N->getOperand(0).getValueType() != MVT::i64)
3044       return;
3045
3046     libCall = ((N->getOpcode() == ISD::SINT_TO_FP)
3047                ? RTLIB::SINTTOFP_I64_F128
3048                : RTLIB::UINTTOFP_I64_F128);
3049
3050     Results.push_back(LowerF128Op(SDValue(N, 0),
3051                                   DAG,
3052                                   getLibcallName(libCall),
3053                                   1));
3054     return;
3055   }
3056 }