Don't emit "32" for unordered comparison
[oota-llvm.git] / lib / Target / PowerPC / PPCISelDAGToDAG.cpp
1 //===-- PPCISelDAGToDAG.cpp - PPC --pattern matching inst selector --------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Chris Lattner and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines a pattern matching instruction selector for PowerPC,
11 // converting from a legalized dag to a PPC dag.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "PPC.h"
16 #include "PPCTargetMachine.h"
17 #include "PPCISelLowering.h"
18 #include "llvm/CodeGen/MachineInstrBuilder.h"
19 #include "llvm/CodeGen/MachineFunction.h"
20 #include "llvm/CodeGen/SSARegMap.h"
21 #include "llvm/CodeGen/SelectionDAG.h"
22 #include "llvm/CodeGen/SelectionDAGISel.h"
23 #include "llvm/Target/TargetOptions.h"
24 #include "llvm/ADT/Statistic.h"
25 #include "llvm/Constants.h"
26 #include "llvm/GlobalValue.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/MathExtras.h"
29 using namespace llvm;
30
31 namespace {
32   Statistic<> FusedFP ("ppc-codegen", "Number of fused fp operations");
33   Statistic<> FrameOff("ppc-codegen", "Number of frame idx offsets collapsed");
34     
35   //===--------------------------------------------------------------------===//
36   /// PPCDAGToDAGISel - PPC specific code to select PPC machine
37   /// instructions for SelectionDAG operations.
38   ///
39   class PPCDAGToDAGISel : public SelectionDAGISel {
40     PPCTargetLowering PPCLowering;
41     unsigned GlobalBaseReg;
42   public:
43     PPCDAGToDAGISel(TargetMachine &TM)
44       : SelectionDAGISel(PPCLowering), PPCLowering(TM) {}
45     
46     virtual bool runOnFunction(Function &Fn) {
47       // Make sure we re-emit a set of the global base reg if necessary
48       GlobalBaseReg = 0;
49       return SelectionDAGISel::runOnFunction(Fn);
50     }
51    
52     /// getI32Imm - Return a target constant with the specified value, of type
53     /// i32.
54     inline SDOperand getI32Imm(unsigned Imm) {
55       return CurDAG->getTargetConstant(Imm, MVT::i32);
56     }
57
58     /// getGlobalBaseReg - insert code into the entry mbb to materialize the PIC
59     /// base register.  Return the virtual register that holds this value.
60     SDOperand getGlobalBaseReg();
61     
62     // Select - Convert the specified operand from a target-independent to a
63     // target-specific node if it hasn't already been changed.
64     SDOperand Select(SDOperand Op);
65     
66     SDNode *SelectBitfieldInsert(SDNode *N);
67
68     /// SelectCC - Select a comparison of the specified values with the
69     /// specified condition code, returning the CR# of the expression.
70     SDOperand SelectCC(SDOperand LHS, SDOperand RHS, ISD::CondCode CC);
71
72     /// SelectAddr - Given the specified address, return the two operands for a
73     /// load/store instruction, and return true if it should be an indexed [r+r]
74     /// operation.
75     bool SelectAddr(SDOperand Addr, SDOperand &Op1, SDOperand &Op2);
76
77     SDOperand BuildSDIVSequence(SDNode *N);
78     SDOperand BuildUDIVSequence(SDNode *N);
79     
80     /// InstructionSelectBasicBlock - This callback is invoked by
81     /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
82     virtual void InstructionSelectBasicBlock(SelectionDAG &DAG);
83     
84     virtual const char *getPassName() const {
85       return "PowerPC DAG->DAG Pattern Instruction Selection";
86     } 
87
88 // Include the pieces autogenerated from the target description.
89 #include "PPCGenDAGISel.inc"
90     
91 private:
92     SDOperand SelectDYNAMIC_STACKALLOC(SDOperand Op);
93     SDOperand SelectADD_PARTS(SDOperand Op);
94     SDOperand SelectSUB_PARTS(SDOperand Op);
95     SDOperand SelectSETCC(SDOperand Op);
96     SDOperand SelectCALL(SDOperand Op);
97   };
98 }
99
100 /// InstructionSelectBasicBlock - This callback is invoked by
101 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
102 void PPCDAGToDAGISel::InstructionSelectBasicBlock(SelectionDAG &DAG) {
103   DEBUG(BB->dump());
104   
105   // The selection process is inherently a bottom-up recursive process (users
106   // select their uses before themselves).  Given infinite stack space, we
107   // could just start selecting on the root and traverse the whole graph.  In
108   // practice however, this causes us to run out of stack space on large basic
109   // blocks.  To avoid this problem, select the entry node, then all its uses,
110   // iteratively instead of recursively.
111   std::vector<SDOperand> Worklist;
112   Worklist.push_back(DAG.getEntryNode());
113   
114   // Note that we can do this in the PPC target (scanning forward across token
115   // chain edges) because no nodes ever get folded across these edges.  On a
116   // target like X86 which supports load/modify/store operations, this would
117   // have to be more careful.
118   while (!Worklist.empty()) {
119     SDOperand Node = Worklist.back();
120     Worklist.pop_back();
121     
122     // Chose from the least deep of the top two nodes.
123     if (!Worklist.empty() &&
124         Worklist.back().Val->getNodeDepth() < Node.Val->getNodeDepth())
125       std::swap(Worklist.back(), Node);
126     
127     if ((Node.Val->getOpcode() >= ISD::BUILTIN_OP_END &&
128          Node.Val->getOpcode() < PPCISD::FIRST_NUMBER) ||
129         CodeGenMap.count(Node)) continue;
130     
131     for (SDNode::use_iterator UI = Node.Val->use_begin(),
132          E = Node.Val->use_end(); UI != E; ++UI) {
133       // Scan the values.  If this use has a value that is a token chain, add it
134       // to the worklist.
135       SDNode *User = *UI;
136       for (unsigned i = 0, e = User->getNumValues(); i != e; ++i)
137         if (User->getValueType(i) == MVT::Other) {
138           Worklist.push_back(SDOperand(User, i));
139           break; 
140         }
141     }
142
143     // Finally, legalize this node.
144     Select(Node);
145   }
146     
147   // Select target instructions for the DAG.
148   DAG.setRoot(Select(DAG.getRoot()));
149   CodeGenMap.clear();
150   DAG.RemoveDeadNodes();
151   
152   // Emit machine code to BB. 
153   ScheduleAndEmitDAG(DAG);
154 }
155
156 /// getGlobalBaseReg - Output the instructions required to put the
157 /// base address to use for accessing globals into a register.
158 ///
159 SDOperand PPCDAGToDAGISel::getGlobalBaseReg() {
160   if (!GlobalBaseReg) {
161     // Insert the set of GlobalBaseReg into the first MBB of the function
162     MachineBasicBlock &FirstMBB = BB->getParent()->front();
163     MachineBasicBlock::iterator MBBI = FirstMBB.begin();
164     SSARegMap *RegMap = BB->getParent()->getSSARegMap();
165     // FIXME: when we get to LP64, we will need to create the appropriate
166     // type of register here.
167     GlobalBaseReg = RegMap->createVirtualRegister(PPC::GPRCRegisterClass);
168     BuildMI(FirstMBB, MBBI, PPC::MovePCtoLR, 0, PPC::LR);
169     BuildMI(FirstMBB, MBBI, PPC::MFLR, 1, GlobalBaseReg);
170   }
171   return CurDAG->getRegister(GlobalBaseReg, MVT::i32);
172 }
173
174
175 // isIntImmediate - This method tests to see if a constant operand.
176 // If so Imm will receive the 32 bit value.
177 static bool isIntImmediate(SDNode *N, unsigned& Imm) {
178   if (N->getOpcode() == ISD::Constant) {
179     Imm = cast<ConstantSDNode>(N)->getValue();
180     return true;
181   }
182   return false;
183 }
184
185 // isOprShiftImm - Returns true if the specified operand is a shift opcode with
186 // a immediate shift count less than 32.
187 static bool isOprShiftImm(SDNode *N, unsigned& Opc, unsigned& SH) {
188   Opc = N->getOpcode();
189   return (Opc == ISD::SHL || Opc == ISD::SRL || Opc == ISD::SRA) &&
190     isIntImmediate(N->getOperand(1).Val, SH) && SH < 32;
191 }
192
193 // isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s with
194 // any number of 0s on either side.  The 1s are allowed to wrap from LSB to
195 // MSB, so 0x000FFF0, 0x0000FFFF, and 0xFF0000FF are all runs.  0x0F0F0000 is
196 // not, since all 1s are not contiguous.
197 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
198   if (isShiftedMask_32(Val)) {
199     // look for the first non-zero bit
200     MB = CountLeadingZeros_32(Val);
201     // look for the first zero bit after the run of ones
202     ME = CountLeadingZeros_32((Val - 1) ^ Val);
203     return true;
204   } else {
205     Val = ~Val; // invert mask
206     if (isShiftedMask_32(Val)) {
207       // effectively look for the first zero bit
208       ME = CountLeadingZeros_32(Val) - 1;
209       // effectively look for the first one bit after the run of zeros
210       MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
211       return true;
212     }
213   }
214   // no run present
215   return false;
216 }
217
218 // isRotateAndMask - Returns true if Mask and Shift can be folded into a rotate
219 // and mask opcode and mask operation.
220 static bool isRotateAndMask(SDNode *N, unsigned Mask, bool IsShiftMask,
221                             unsigned &SH, unsigned &MB, unsigned &ME) {
222   // Don't even go down this path for i64, since different logic will be
223   // necessary for rldicl/rldicr/rldimi.
224   if (N->getValueType(0) != MVT::i32)
225     return false;
226
227   unsigned Shift  = 32;
228   unsigned Indeterminant = ~0;  // bit mask marking indeterminant results
229   unsigned Opcode = N->getOpcode();
230   if (N->getNumOperands() != 2 ||
231       !isIntImmediate(N->getOperand(1).Val, Shift) || (Shift > 31))
232     return false;
233   
234   if (Opcode == ISD::SHL) {
235     // apply shift left to mask if it comes first
236     if (IsShiftMask) Mask = Mask << Shift;
237     // determine which bits are made indeterminant by shift
238     Indeterminant = ~(0xFFFFFFFFu << Shift);
239   } else if (Opcode == ISD::SRL) { 
240     // apply shift right to mask if it comes first
241     if (IsShiftMask) Mask = Mask >> Shift;
242     // determine which bits are made indeterminant by shift
243     Indeterminant = ~(0xFFFFFFFFu >> Shift);
244     // adjust for the left rotate
245     Shift = 32 - Shift;
246   } else {
247     return false;
248   }
249   
250   // if the mask doesn't intersect any Indeterminant bits
251   if (Mask && !(Mask & Indeterminant)) {
252     SH = Shift;
253     // make sure the mask is still a mask (wrap arounds may not be)
254     return isRunOfOnes(Mask, MB, ME);
255   }
256   return false;
257 }
258
259 // isOpcWithIntImmediate - This method tests to see if the node is a specific
260 // opcode and that it has a immediate integer right operand.
261 // If so Imm will receive the 32 bit value.
262 static bool isOpcWithIntImmediate(SDNode *N, unsigned Opc, unsigned& Imm) {
263   return N->getOpcode() == Opc && isIntImmediate(N->getOperand(1).Val, Imm);
264 }
265
266 // isOprNot - Returns true if the specified operand is an xor with immediate -1.
267 static bool isOprNot(SDNode *N) {
268   unsigned Imm;
269   return isOpcWithIntImmediate(N, ISD::XOR, Imm) && (signed)Imm == -1;
270 }
271
272 // Immediate constant composers.
273 // Lo16 - grabs the lo 16 bits from a 32 bit constant.
274 // Hi16 - grabs the hi 16 bits from a 32 bit constant.
275 // HA16 - computes the hi bits required if the lo bits are add/subtracted in
276 // arithmethically.
277 static unsigned Lo16(unsigned x)  { return x & 0x0000FFFF; }
278 static unsigned Hi16(unsigned x)  { return Lo16(x >> 16); }
279 static unsigned HA16(unsigned x)  { return Hi16((signed)x - (signed short)x); }
280
281 // isIntImmediate - This method tests to see if a constant operand.
282 // If so Imm will receive the 32 bit value.
283 static bool isIntImmediate(SDOperand N, unsigned& Imm) {
284   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
285     Imm = (unsigned)CN->getSignExtended();
286     return true;
287   }
288   return false;
289 }
290
291 /// SelectBitfieldInsert - turn an or of two masked values into
292 /// the rotate left word immediate then mask insert (rlwimi) instruction.
293 /// Returns true on success, false if the caller still needs to select OR.
294 ///
295 /// Patterns matched:
296 /// 1. or shl, and   5. or and, and
297 /// 2. or and, shl   6. or shl, shr
298 /// 3. or shr, and   7. or shr, shl
299 /// 4. or and, shr
300 SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
301   bool IsRotate = false;
302   unsigned TgtMask = 0xFFFFFFFF, InsMask = 0xFFFFFFFF, SH = 0;
303   unsigned Value;
304   
305   SDOperand Op0 = N->getOperand(0);
306   SDOperand Op1 = N->getOperand(1);
307   
308   unsigned Op0Opc = Op0.getOpcode();
309   unsigned Op1Opc = Op1.getOpcode();
310   
311   // Verify that we have the correct opcodes
312   if (ISD::SHL != Op0Opc && ISD::SRL != Op0Opc && ISD::AND != Op0Opc)
313     return false;
314   if (ISD::SHL != Op1Opc && ISD::SRL != Op1Opc && ISD::AND != Op1Opc)
315     return false;
316   
317   // Generate Mask value for Target
318   if (isIntImmediate(Op0.getOperand(1), Value)) {
319     switch(Op0Opc) {
320     case ISD::SHL: TgtMask <<= Value; break;
321     case ISD::SRL: TgtMask >>= Value; break;
322     case ISD::AND: TgtMask &= Value; break;
323     }
324   } else {
325     return 0;
326   }
327   
328   // Generate Mask value for Insert
329   if (!isIntImmediate(Op1.getOperand(1), Value))
330     return 0;
331   
332   switch(Op1Opc) {
333   case ISD::SHL:
334     SH = Value;
335     InsMask <<= SH;
336     if (Op0Opc == ISD::SRL) IsRotate = true;
337     break;
338   case ISD::SRL:
339     SH = Value;
340     InsMask >>= SH;
341     SH = 32-SH;
342     if (Op0Opc == ISD::SHL) IsRotate = true;
343     break;
344   case ISD::AND:
345     InsMask &= Value;
346     break;
347   }
348   
349   // If both of the inputs are ANDs and one of them has a logical shift by
350   // constant as its input, make that AND the inserted value so that we can
351   // combine the shift into the rotate part of the rlwimi instruction
352   bool IsAndWithShiftOp = false;
353   if (Op0Opc == ISD::AND && Op1Opc == ISD::AND) {
354     if (Op1.getOperand(0).getOpcode() == ISD::SHL ||
355         Op1.getOperand(0).getOpcode() == ISD::SRL) {
356       if (isIntImmediate(Op1.getOperand(0).getOperand(1), Value)) {
357         SH = Op1.getOperand(0).getOpcode() == ISD::SHL ? Value : 32 - Value;
358         IsAndWithShiftOp = true;
359       }
360     } else if (Op0.getOperand(0).getOpcode() == ISD::SHL ||
361                Op0.getOperand(0).getOpcode() == ISD::SRL) {
362       if (isIntImmediate(Op0.getOperand(0).getOperand(1), Value)) {
363         std::swap(Op0, Op1);
364         std::swap(TgtMask, InsMask);
365         SH = Op1.getOperand(0).getOpcode() == ISD::SHL ? Value : 32 - Value;
366         IsAndWithShiftOp = true;
367       }
368     }
369   }
370   
371   // Verify that the Target mask and Insert mask together form a full word mask
372   // and that the Insert mask is a run of set bits (which implies both are runs
373   // of set bits).  Given that, Select the arguments and generate the rlwimi
374   // instruction.
375   unsigned MB, ME;
376   if (((TgtMask & InsMask) == 0) && isRunOfOnes(InsMask, MB, ME)) {
377     bool fullMask = (TgtMask ^ InsMask) == 0xFFFFFFFF;
378     bool Op0IsAND = Op0Opc == ISD::AND;
379     // Check for rotlwi / rotrwi here, a special case of bitfield insert
380     // where both bitfield halves are sourced from the same value.
381     if (IsRotate && fullMask &&
382         N->getOperand(0).getOperand(0) == N->getOperand(1).getOperand(0)) {
383       Op0 = CurDAG->getTargetNode(PPC::RLWINM, MVT::i32,
384                                   Select(N->getOperand(0).getOperand(0)),
385                                   getI32Imm(SH), getI32Imm(0), getI32Imm(31));
386       return Op0.Val;
387     }
388     SDOperand Tmp1 = (Op0IsAND && fullMask) ? Select(Op0.getOperand(0))
389                                             : Select(Op0);
390     SDOperand Tmp2 = IsAndWithShiftOp ? Select(Op1.getOperand(0).getOperand(0)) 
391                                       : Select(Op1.getOperand(0));
392     Op0 = CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Tmp1, Tmp2,
393                                 getI32Imm(SH), getI32Imm(MB), getI32Imm(ME));
394     return Op0.Val;
395   }
396   return 0;
397 }
398
399 /// SelectAddr - Given the specified address, return the two operands for a
400 /// load/store instruction, and return true if it should be an indexed [r+r]
401 /// operation.
402 bool PPCDAGToDAGISel::SelectAddr(SDOperand Addr, SDOperand &Op1, 
403                                  SDOperand &Op2) {
404   unsigned imm = 0;
405   if (Addr.getOpcode() == ISD::ADD) {
406     if (isIntImmediate(Addr.getOperand(1), imm) && isInt16(imm)) {
407       Op1 = getI32Imm(Lo16(imm));
408       if (FrameIndexSDNode *FI =
409             dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) {
410         ++FrameOff;
411         Op2 = CurDAG->getTargetFrameIndex(FI->getIndex(), MVT::i32);
412       } else {
413         Op2 = Select(Addr.getOperand(0));
414       }
415       return false;
416     } else {
417       Op1 = Select(Addr.getOperand(0));
418       Op2 = Select(Addr.getOperand(1));
419       return true;   // [r+r]
420     }
421   }
422
423   // Now check if we're dealing with a global, and whether or not we should emit
424   // an optimized load or store for statics.
425   if (GlobalAddressSDNode *GN = dyn_cast<GlobalAddressSDNode>(Addr)) {
426     GlobalValue *GV = GN->getGlobal();
427     if (!GV->hasWeakLinkage() && !GV->isExternal()) {
428       Op1 = CurDAG->getTargetGlobalAddress(GV, MVT::i32);
429       if (PICEnabled)
430         Op2 = CurDAG->getTargetNode(PPC::ADDIS, MVT::i32, getGlobalBaseReg(),
431                                     Op1);
432       else
433         Op2 = CurDAG->getTargetNode(PPC::LIS, MVT::i32, Op1);
434       return false;
435     }
436   } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Addr)) {
437     Op1 = getI32Imm(0);
438     Op2 = CurDAG->getTargetFrameIndex(FI->getIndex(), MVT::i32);
439     return false;
440   } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(Addr)) {
441     Op1 = Addr;
442     if (PICEnabled)
443       Op2 = CurDAG->getTargetNode(PPC::ADDIS, MVT::i32, getGlobalBaseReg(),Op1);
444     else
445       Op2 = CurDAG->getTargetNode(PPC::LIS, MVT::i32, Op1);
446     return false;
447   }
448   Op1 = getI32Imm(0);
449   Op2 = Select(Addr);
450   return false;
451 }
452
453 /// SelectCC - Select a comparison of the specified values with the specified
454 /// condition code, returning the CR# of the expression.
455 SDOperand PPCDAGToDAGISel::SelectCC(SDOperand LHS, SDOperand RHS,
456                                     ISD::CondCode CC) {
457   // Always select the LHS.
458   LHS = Select(LHS);
459
460   // Use U to determine whether the SETCC immediate range is signed or not.
461   if (MVT::isInteger(LHS.getValueType())) {
462     bool U = ISD::isUnsignedIntSetCC(CC);
463     unsigned Imm;
464     if (isIntImmediate(RHS, Imm) && 
465         ((U && isUInt16(Imm)) || (!U && isInt16(Imm))))
466       return CurDAG->getTargetNode(U ? PPC::CMPLWI : PPC::CMPWI, MVT::i32,
467                                    LHS, getI32Imm(Lo16(Imm)));
468     return CurDAG->getTargetNode(U ? PPC::CMPLW : PPC::CMPW, MVT::i32,
469                                  LHS, Select(RHS));
470   } else if (LHS.getValueType() == MVT::f32) {
471     return CurDAG->getTargetNode(PPC::FCMPUS, MVT::i32, LHS, Select(RHS));
472   } else {
473     return CurDAG->getTargetNode(PPC::FCMPUD, MVT::i32, LHS, Select(RHS));
474   }
475 }
476
477 /// getBCCForSetCC - Returns the PowerPC condition branch mnemonic corresponding
478 /// to Condition.
479 static unsigned getBCCForSetCC(ISD::CondCode CC) {
480   switch (CC) {
481   default: assert(0 && "Unknown condition!"); abort();
482   case ISD::SETOEQ:    // FIXME: This is incorrect see PR642.
483   case ISD::SETEQ:  return PPC::BEQ;
484   case ISD::SETONE:    // FIXME: This is incorrect see PR642.
485   case ISD::SETNE:  return PPC::BNE;
486   case ISD::SETOLT:    // FIXME: This is incorrect see PR642.
487   case ISD::SETULT:
488   case ISD::SETLT:  return PPC::BLT;
489   case ISD::SETOLE:    // FIXME: This is incorrect see PR642.
490   case ISD::SETULE:
491   case ISD::SETLE:  return PPC::BLE;
492   case ISD::SETOGT:    // FIXME: This is incorrect see PR642.
493   case ISD::SETUGT:
494   case ISD::SETGT:  return PPC::BGT;
495   case ISD::SETOGE:    // FIXME: This is incorrect see PR642.
496   case ISD::SETUGE:
497   case ISD::SETGE:  return PPC::BGE;
498     
499   case ISD::SETO:   return PPC::BUN;
500   case ISD::SETUO:  return PPC::BNU;
501   }
502   return 0;
503 }
504
505 /// getCRIdxForSetCC - Return the index of the condition register field
506 /// associated with the SetCC condition, and whether or not the field is
507 /// treated as inverted.  That is, lt = 0; ge = 0 inverted.
508 static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool& Inv) {
509   switch (CC) {
510   default: assert(0 && "Unknown condition!"); abort();
511   case ISD::SETOLT:  // FIXME: This is incorrect see PR642.
512   case ISD::SETULT:
513   case ISD::SETLT:  Inv = false;  return 0;
514   case ISD::SETOGE:  // FIXME: This is incorrect see PR642.
515   case ISD::SETUGE:
516   case ISD::SETGE:  Inv = true;   return 0;
517   case ISD::SETOGT:  // FIXME: This is incorrect see PR642.
518   case ISD::SETUGT:
519   case ISD::SETGT:  Inv = false;  return 1;
520   case ISD::SETOLE:  // FIXME: This is incorrect see PR642.
521   case ISD::SETULE:
522   case ISD::SETLE:  Inv = true;   return 1;
523   case ISD::SETOEQ:  // FIXME: This is incorrect see PR642.
524   case ISD::SETEQ:  Inv = false;  return 2;
525   case ISD::SETONE:  // FIXME: This is incorrect see PR642.
526   case ISD::SETNE:  Inv = true;   return 2;
527   case ISD::SETO:   Inv = true;   return 3;
528   case ISD::SETUO:  Inv = false;  return 3;
529   }
530   return 0;
531 }
532
533 SDOperand PPCDAGToDAGISel::SelectDYNAMIC_STACKALLOC(SDOperand Op) {
534   SDNode *N = Op.Val;
535
536   // FIXME: We are currently ignoring the requested alignment for handling
537   // greater than the stack alignment.  This will need to be revisited at some
538   // point.  Align = N.getOperand(2);
539   if (!isa<ConstantSDNode>(N->getOperand(2)) ||
540       cast<ConstantSDNode>(N->getOperand(2))->getValue() != 0) {
541     std::cerr << "Cannot allocate stack object with greater alignment than"
542     << " the stack alignment yet!";
543     abort();
544   }
545   SDOperand Chain = Select(N->getOperand(0));
546   SDOperand Amt   = Select(N->getOperand(1));
547   
548   SDOperand R1Reg = CurDAG->getRegister(PPC::R1, MVT::i32);
549   
550   SDOperand R1Val = CurDAG->getCopyFromReg(Chain, PPC::R1, MVT::i32);
551   Chain = R1Val.getValue(1);
552   
553   // Subtract the amount (guaranteed to be a multiple of the stack alignment)
554   // from the stack pointer, giving us the result pointer.
555   SDOperand Result = CurDAG->getTargetNode(PPC::SUBF, MVT::i32, Amt, R1Val);
556   
557   // Copy this result back into R1.
558   Chain = CurDAG->getNode(ISD::CopyToReg, MVT::Other, Chain, R1Reg, Result);
559   
560   // Copy this result back out of R1 to make sure we're not using the stack
561   // space without decrementing the stack pointer.
562   Result = CurDAG->getCopyFromReg(Chain, PPC::R1, MVT::i32);
563   
564   // Finally, replace the DYNAMIC_STACKALLOC with the copyfromreg.
565   CodeGenMap[Op.getValue(0)] = Result;
566   CodeGenMap[Op.getValue(1)] = Result.getValue(1);
567   return SDOperand(Result.Val, Op.ResNo);
568 }
569
570 SDOperand PPCDAGToDAGISel::SelectADD_PARTS(SDOperand Op) {
571   SDNode *N = Op.Val;
572   SDOperand LHSL = Select(N->getOperand(0));
573   SDOperand LHSH = Select(N->getOperand(1));
574   
575   unsigned Imm;
576   bool ME = false, ZE = false;
577   if (isIntImmediate(N->getOperand(3), Imm)) {
578     ME = (signed)Imm == -1;
579     ZE = Imm == 0;
580   }
581   
582   std::vector<SDOperand> Result;
583   SDOperand CarryFromLo;
584   if (isIntImmediate(N->getOperand(2), Imm) &&
585       ((signed)Imm >= -32768 || (signed)Imm < 32768)) {
586     // Codegen the low 32 bits of the add.  Interestingly, there is no
587     // shifted form of add immediate carrying.
588     CarryFromLo = CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
589                                         LHSL, getI32Imm(Imm));
590   } else {
591     CarryFromLo = CurDAG->getTargetNode(PPC::ADDC, MVT::i32, MVT::Flag,
592                                         LHSL, Select(N->getOperand(2)));
593   }
594   CarryFromLo = CarryFromLo.getValue(1);
595   
596   // Codegen the high 32 bits, adding zero, minus one, or the full value
597   // along with the carry flag produced by addc/addic.
598   SDOperand ResultHi;
599   if (ZE)
600     ResultHi = CurDAG->getTargetNode(PPC::ADDZE, MVT::i32, LHSH, CarryFromLo);
601   else if (ME)
602     ResultHi = CurDAG->getTargetNode(PPC::ADDME, MVT::i32, LHSH, CarryFromLo);
603   else
604     ResultHi = CurDAG->getTargetNode(PPC::ADDE, MVT::i32, LHSH,
605                                      Select(N->getOperand(3)), CarryFromLo);
606   Result.push_back(CarryFromLo.getValue(0));
607   Result.push_back(ResultHi);
608   
609   CodeGenMap[Op.getValue(0)] = Result[0];
610   CodeGenMap[Op.getValue(1)] = Result[1];
611   return Result[Op.ResNo];
612 }
613 SDOperand PPCDAGToDAGISel::SelectSUB_PARTS(SDOperand Op) {
614   SDNode *N = Op.Val;
615   SDOperand LHSL = Select(N->getOperand(0));
616   SDOperand LHSH = Select(N->getOperand(1));
617   SDOperand RHSL = Select(N->getOperand(2));
618   SDOperand RHSH = Select(N->getOperand(3));
619   
620   std::vector<SDOperand> Result;
621   Result.push_back(CurDAG->getTargetNode(PPC::SUBFC, MVT::i32, MVT::Flag,
622                                          RHSL, LHSL));
623   Result.push_back(CurDAG->getTargetNode(PPC::SUBFE, MVT::i32, RHSH, LHSH,
624                                          Result[0].getValue(1)));
625   CodeGenMap[Op.getValue(0)] = Result[0];
626   CodeGenMap[Op.getValue(1)] = Result[1];
627   return Result[Op.ResNo];
628 }
629
630 SDOperand PPCDAGToDAGISel::SelectSETCC(SDOperand Op) {
631   SDNode *N = Op.Val;
632   unsigned Imm;
633   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
634   if (isIntImmediate(N->getOperand(1), Imm)) {
635     // We can codegen setcc op, imm very efficiently compared to a brcond.
636     // Check for those cases here.
637     // setcc op, 0
638     if (Imm == 0) {
639       SDOperand Op = Select(N->getOperand(0));
640       switch (CC) {
641       default: break;
642       case ISD::SETEQ:
643         Op = CurDAG->getTargetNode(PPC::CNTLZW, MVT::i32, Op);
644         CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Op, getI32Imm(27),
645                              getI32Imm(5), getI32Imm(31));
646         return SDOperand(N, 0);
647       case ISD::SETNE: {
648         SDOperand AD = CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
649                                              Op, getI32Imm(~0U));
650         CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op, AD.getValue(1));
651         return SDOperand(N, 0);
652       }
653       case ISD::SETLT:
654         CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Op, getI32Imm(1),
655                              getI32Imm(31), getI32Imm(31));
656         return SDOperand(N, 0);
657       case ISD::SETGT: {
658         SDOperand T = CurDAG->getTargetNode(PPC::NEG, MVT::i32, Op);
659         T = CurDAG->getTargetNode(PPC::ANDC, MVT::i32, T, Op);;
660         CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, T, getI32Imm(1),
661                              getI32Imm(31), getI32Imm(31));
662         return SDOperand(N, 0);
663       }
664       }
665     } else if (Imm == ~0U) {        // setcc op, -1
666       SDOperand Op = Select(N->getOperand(0));
667       switch (CC) {
668       default: break;
669       case ISD::SETEQ:
670         Op = CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
671                                    Op, getI32Imm(1));
672         CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32, 
673                              CurDAG->getTargetNode(PPC::LI, MVT::i32,
674                                                    getI32Imm(0)),
675                              Op.getValue(1));
676         return SDOperand(N, 0);
677       case ISD::SETNE: {
678         Op = CurDAG->getTargetNode(PPC::NOR, MVT::i32, Op, Op);
679         SDOperand AD = CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
680                                              Op, getI32Imm(~0U));
681         CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, AD, Op, AD.getValue(1));
682         return SDOperand(N, 0);
683       }
684       case ISD::SETLT: {
685         SDOperand AD = CurDAG->getTargetNode(PPC::ADDI, MVT::i32, Op,
686                                              getI32Imm(1));
687         SDOperand AN = CurDAG->getTargetNode(PPC::AND, MVT::i32, AD, Op);
688         CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, AN, getI32Imm(1),
689                              getI32Imm(31), getI32Imm(31));
690         return SDOperand(N, 0);
691       }
692       case ISD::SETGT:
693         Op = CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, Op, getI32Imm(1),
694                                    getI32Imm(31), getI32Imm(31));
695         CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Op, getI32Imm(1));
696         return SDOperand(N, 0);
697       }
698     }
699   }
700   
701   bool Inv;
702   unsigned Idx = getCRIdxForSetCC(CC, Inv);
703   SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
704   SDOperand IntCR;
705   
706   // Force the ccreg into CR7.
707   SDOperand CR7Reg = CurDAG->getRegister(PPC::CR7, MVT::i32);
708   
709   std::vector<MVT::ValueType> VTs;
710   VTs.push_back(MVT::Other);
711   VTs.push_back(MVT::Flag);    // NONSTANDARD CopyToReg node: defines a flag
712   std::vector<SDOperand> Ops;
713   Ops.push_back(CurDAG->getEntryNode());
714   Ops.push_back(CR7Reg);
715   Ops.push_back(CCReg);
716   CCReg = CurDAG->getNode(ISD::CopyToReg, VTs, Ops).getValue(1);
717   
718   if (TLI.getTargetMachine().getSubtarget<PPCSubtarget>().isGigaProcessor())
719     IntCR = CurDAG->getTargetNode(PPC::MFOCRF, MVT::i32, CR7Reg, CCReg);
720   else
721     IntCR = CurDAG->getTargetNode(PPC::MFCR, MVT::i32, CCReg);
722   
723   if (!Inv) {
724     CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, IntCR,
725                          getI32Imm((32-(3-Idx)) & 31),
726                                    getI32Imm(31), getI32Imm(31));
727   } else {
728     SDOperand Tmp =
729     CurDAG->getTargetNode(PPC::RLWINM, MVT::i32, IntCR,
730                           getI32Imm((32-(3-Idx)) & 31),
731                           getI32Imm(31),getI32Imm(31));
732     CurDAG->SelectNodeTo(N, PPC::XORI, MVT::i32, Tmp, getI32Imm(1));
733   }
734   
735   return SDOperand(N, 0);
736 }
737
738 SDOperand PPCDAGToDAGISel::SelectCALL(SDOperand Op) {
739   SDNode *N = Op.Val;
740   SDOperand Chain = Select(N->getOperand(0));
741   
742   unsigned CallOpcode;
743   std::vector<SDOperand> CallOperands;
744   
745   if (GlobalAddressSDNode *GASD =
746       dyn_cast<GlobalAddressSDNode>(N->getOperand(1))) {
747     CallOpcode = PPC::CALLpcrel;
748     CallOperands.push_back(CurDAG->getTargetGlobalAddress(GASD->getGlobal(),
749                                                           MVT::i32));
750   } else if (ExternalSymbolSDNode *ESSDN =
751              dyn_cast<ExternalSymbolSDNode>(N->getOperand(1))) {
752     CallOpcode = PPC::CALLpcrel;
753     CallOperands.push_back(N->getOperand(1));
754   } else {
755     // Copy the callee address into the CTR register.
756     SDOperand Callee = Select(N->getOperand(1));
757     Chain = CurDAG->getTargetNode(PPC::MTCTR, MVT::Other, Callee, Chain);
758     
759     // Copy the callee address into R12 on darwin.
760     SDOperand R12 = CurDAG->getRegister(PPC::R12, MVT::i32);
761     Chain = CurDAG->getNode(ISD::CopyToReg, MVT::Other, Chain, R12, Callee);
762     
763     CallOperands.push_back(getI32Imm(20));  // Information to encode indcall
764     CallOperands.push_back(getI32Imm(0));   // Information to encode indcall
765     CallOperands.push_back(R12);
766     CallOpcode = PPC::CALLindirect;
767   }
768   
769   unsigned GPR_idx = 0, FPR_idx = 0;
770   static const unsigned GPR[] = {
771     PPC::R3, PPC::R4, PPC::R5, PPC::R6,
772     PPC::R7, PPC::R8, PPC::R9, PPC::R10,
773   };
774   static const unsigned FPR[] = {
775     PPC::F1, PPC::F2, PPC::F3, PPC::F4, PPC::F5, PPC::F6, PPC::F7,
776     PPC::F8, PPC::F9, PPC::F10, PPC::F11, PPC::F12, PPC::F13
777   };
778   
779   SDOperand InFlag;  // Null incoming flag value.
780   
781   for (unsigned i = 2, e = N->getNumOperands(); i != e; ++i) {
782     unsigned DestReg = 0;
783     MVT::ValueType RegTy = N->getOperand(i).getValueType();
784     if (RegTy == MVT::i32) {
785       assert(GPR_idx < 8 && "Too many int args");
786       DestReg = GPR[GPR_idx++];
787     } else {
788       assert(MVT::isFloatingPoint(N->getOperand(i).getValueType()) &&
789              "Unpromoted integer arg?");
790       assert(FPR_idx < 13 && "Too many fp args");
791       DestReg = FPR[FPR_idx++];
792     }
793     
794     if (N->getOperand(i).getOpcode() != ISD::UNDEF) {
795       SDOperand Val = Select(N->getOperand(i));
796       Chain = CurDAG->getCopyToReg(Chain, DestReg, Val, InFlag);
797       InFlag = Chain.getValue(1);
798       CallOperands.push_back(CurDAG->getRegister(DestReg, RegTy));
799     }
800   }
801   
802   // Finally, once everything is in registers to pass to the call, emit the
803   // call itself.
804   if (InFlag.Val)
805     CallOperands.push_back(InFlag);   // Strong dep on register copies.
806   else
807     CallOperands.push_back(Chain);    // Weak dep on whatever occurs before
808   Chain = CurDAG->getTargetNode(CallOpcode, MVT::Other, MVT::Flag,
809                                 CallOperands);
810   
811   std::vector<SDOperand> CallResults;
812   
813   // If the call has results, copy the values out of the ret val registers.
814   switch (N->getValueType(0)) {
815     default: assert(0 && "Unexpected ret value!");
816     case MVT::Other: break;
817     case MVT::i32:
818       if (N->getValueType(1) == MVT::i32) {
819         Chain = CurDAG->getCopyFromReg(Chain, PPC::R4, MVT::i32, 
820                                        Chain.getValue(1)).getValue(1);
821         CallResults.push_back(Chain.getValue(0));
822         Chain = CurDAG->getCopyFromReg(Chain, PPC::R3, MVT::i32,
823                                        Chain.getValue(2)).getValue(1);
824         CallResults.push_back(Chain.getValue(0));
825       } else {
826         Chain = CurDAG->getCopyFromReg(Chain, PPC::R3, MVT::i32,
827                                        Chain.getValue(1)).getValue(1);
828         CallResults.push_back(Chain.getValue(0));
829       }
830       break;
831     case MVT::f32:
832     case MVT::f64:
833       Chain = CurDAG->getCopyFromReg(Chain, PPC::F1, N->getValueType(0),
834                                      Chain.getValue(1)).getValue(1);
835       CallResults.push_back(Chain.getValue(0));
836       break;
837   }
838   
839   CallResults.push_back(Chain);
840   for (unsigned i = 0, e = CallResults.size(); i != e; ++i)
841     CodeGenMap[Op.getValue(i)] = CallResults[i];
842   return CallResults[Op.ResNo];
843 }
844
845 // Select - Convert the specified operand from a target-independent to a
846 // target-specific node if it hasn't already been changed.
847 SDOperand PPCDAGToDAGISel::Select(SDOperand Op) {
848   SDNode *N = Op.Val;
849   if (N->getOpcode() >= ISD::BUILTIN_OP_END &&
850       N->getOpcode() < PPCISD::FIRST_NUMBER)
851     return Op;   // Already selected.
852
853   // If this has already been converted, use it.
854   std::map<SDOperand, SDOperand>::iterator CGMI = CodeGenMap.find(Op);
855   if (CGMI != CodeGenMap.end()) return CGMI->second;
856   
857   switch (N->getOpcode()) {
858   default: break;
859   case ISD::DYNAMIC_STACKALLOC: return SelectDYNAMIC_STACKALLOC(Op);
860   case ISD::ADD_PARTS:          return SelectADD_PARTS(Op);
861   case ISD::SUB_PARTS:          return SelectSUB_PARTS(Op);
862   case ISD::SETCC:              return SelectSETCC(Op);
863   case ISD::CALL:               return SelectCALL(Op);
864   case ISD::TAILCALL:           return SelectCALL(Op);
865
866   case ISD::FrameIndex: {
867     int FI = cast<FrameIndexSDNode>(N)->getIndex();
868     if (N->hasOneUse()) {
869       CurDAG->SelectNodeTo(N, PPC::ADDI, MVT::i32,
870                            CurDAG->getTargetFrameIndex(FI, MVT::i32),
871                            getI32Imm(0));
872       return SDOperand(N, 0);
873     }
874     return CurDAG->getTargetNode(PPC::ADDI, MVT::i32,
875                                  CurDAG->getTargetFrameIndex(FI, MVT::i32),
876                                  getI32Imm(0));
877   }
878   case ISD::ConstantPool: {
879     Constant *C = cast<ConstantPoolSDNode>(N)->get();
880     SDOperand Tmp, CPI = CurDAG->getTargetConstantPool(C, MVT::i32);
881     if (PICEnabled)
882       Tmp = CurDAG->getTargetNode(PPC::ADDIS, MVT::i32, getGlobalBaseReg(),CPI);
883     else
884       Tmp = CurDAG->getTargetNode(PPC::LIS, MVT::i32, CPI);
885     if (N->hasOneUse()) {
886       CurDAG->SelectNodeTo(N, PPC::LA, MVT::i32, Tmp, CPI);
887       return SDOperand(N, 0);
888     }
889     return CurDAG->getTargetNode(PPC::LA, MVT::i32, Tmp, CPI);
890   }
891   case ISD::GlobalAddress: {
892     GlobalValue *GV = cast<GlobalAddressSDNode>(N)->getGlobal();
893     SDOperand Tmp;
894     SDOperand GA = CurDAG->getTargetGlobalAddress(GV, MVT::i32);
895     if (PICEnabled)
896       Tmp = CurDAG->getTargetNode(PPC::ADDIS, MVT::i32, getGlobalBaseReg(), GA);
897     else
898       Tmp = CurDAG->getTargetNode(PPC::LIS, MVT::i32, GA);
899
900     if (GV->hasWeakLinkage() || GV->isExternal())
901       return CurDAG->getTargetNode(PPC::LWZ, MVT::i32, GA, Tmp);
902     else
903       return CurDAG->getTargetNode(PPC::LA, MVT::i32, Tmp, GA);
904   }
905   case ISD::FADD: {
906     MVT::ValueType Ty = N->getValueType(0);
907     if (!NoExcessFPPrecision) {  // Match FMA ops
908       if (N->getOperand(0).getOpcode() == ISD::FMUL &&
909           N->getOperand(0).Val->hasOneUse()) {
910         ++FusedFP; // Statistic
911         CurDAG->SelectNodeTo(N, Ty == MVT::f64 ? PPC::FMADD : PPC::FMADDS, Ty,
912                              Select(N->getOperand(0).getOperand(0)),
913                              Select(N->getOperand(0).getOperand(1)),
914                              Select(N->getOperand(1)));
915         return SDOperand(N, 0);
916       } else if (N->getOperand(1).getOpcode() == ISD::FMUL &&
917                  N->getOperand(1).hasOneUse()) {
918         ++FusedFP; // Statistic
919         CurDAG->SelectNodeTo(N, Ty == MVT::f64 ? PPC::FMADD : PPC::FMADDS, Ty,
920                              Select(N->getOperand(1).getOperand(0)),
921                              Select(N->getOperand(1).getOperand(1)),
922                              Select(N->getOperand(0)));
923         return SDOperand(N, 0);
924       }
925     }
926     
927     CurDAG->SelectNodeTo(N, Ty == MVT::f64 ? PPC::FADD : PPC::FADDS, Ty,
928                          Select(N->getOperand(0)), Select(N->getOperand(1)));
929     return SDOperand(N, 0);
930   }
931   case ISD::FSUB: {
932     MVT::ValueType Ty = N->getValueType(0);
933     
934     if (!NoExcessFPPrecision) {  // Match FMA ops
935       if (N->getOperand(0).getOpcode() == ISD::FMUL &&
936           N->getOperand(0).Val->hasOneUse()) {
937         ++FusedFP; // Statistic
938         CurDAG->SelectNodeTo(N, Ty == MVT::f64 ? PPC::FMSUB : PPC::FMSUBS, Ty,
939                              Select(N->getOperand(0).getOperand(0)),
940                              Select(N->getOperand(0).getOperand(1)),
941                              Select(N->getOperand(1)));
942         return SDOperand(N, 0);
943       } else if (N->getOperand(1).getOpcode() == ISD::FMUL &&
944                  N->getOperand(1).Val->hasOneUse()) {
945         ++FusedFP; // Statistic
946         CurDAG->SelectNodeTo(N, Ty == MVT::f64 ? PPC::FNMSUB : PPC::FNMSUBS, Ty,
947                              Select(N->getOperand(1).getOperand(0)),
948                              Select(N->getOperand(1).getOperand(1)),
949                              Select(N->getOperand(0)));
950         return SDOperand(N, 0);
951       }
952     }
953     CurDAG->SelectNodeTo(N, Ty == MVT::f64 ? PPC::FSUB : PPC::FSUBS, Ty,
954                          Select(N->getOperand(0)),
955                          Select(N->getOperand(1)));
956     return SDOperand(N, 0);
957   }
958   case ISD::SDIV: {
959     // FIXME: since this depends on the setting of the carry flag from the srawi
960     //        we should really be making notes about that for the scheduler.
961     // FIXME: It sure would be nice if we could cheaply recognize the 
962     //        srl/add/sra pattern the dag combiner will generate for this as
963     //        sra/addze rather than having to handle sdiv ourselves.  oh well.
964     unsigned Imm;
965     if (isIntImmediate(N->getOperand(1), Imm)) {
966       if ((signed)Imm > 0 && isPowerOf2_32(Imm)) {
967         SDOperand Op =
968           CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
969                                 Select(N->getOperand(0)),
970                                 getI32Imm(Log2_32(Imm)));
971         CurDAG->SelectNodeTo(N, PPC::ADDZE, MVT::i32, 
972                              Op.getValue(0), Op.getValue(1));
973         return SDOperand(N, 0);
974       } else if ((signed)Imm < 0 && isPowerOf2_32(-Imm)) {
975         SDOperand Op =
976           CurDAG->getTargetNode(PPC::SRAWI, MVT::i32, MVT::Flag,
977                                 Select(N->getOperand(0)),
978                                 getI32Imm(Log2_32(-Imm)));
979         SDOperand PT =
980           CurDAG->getTargetNode(PPC::ADDZE, MVT::i32, Op.getValue(0),
981                                 Op.getValue(1));
982         CurDAG->SelectNodeTo(N, PPC::NEG, MVT::i32, PT);
983         return SDOperand(N, 0);
984       }
985     }
986     
987     // Other cases are autogenerated.
988     break;
989   }
990   case ISD::AND: {
991     unsigned Imm;
992     // If this is an and of a value rotated between 0 and 31 bits and then and'd
993     // with a mask, emit rlwinm
994     if (isIntImmediate(N->getOperand(1), Imm) && (isShiftedMask_32(Imm) ||
995                                                   isShiftedMask_32(~Imm))) {
996       SDOperand Val;
997       unsigned SH, MB, ME;
998       if (isRotateAndMask(N->getOperand(0).Val, Imm, false, SH, MB, ME)) {
999         Val = Select(N->getOperand(0).getOperand(0));
1000       } else if (Imm == 0) {
1001         // AND X, 0 -> 0, not "rlwinm 32".
1002         return Select(N->getOperand(1));
1003       } else {        
1004         Val = Select(N->getOperand(0));
1005         isRunOfOnes(Imm, MB, ME);
1006         SH = 0;
1007       }
1008       CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Val, getI32Imm(SH),
1009                            getI32Imm(MB), getI32Imm(ME));
1010       return SDOperand(N, 0);
1011     }
1012     
1013     // Other cases are autogenerated.
1014     break;
1015   }
1016   case ISD::OR:
1017     if (SDNode *I = SelectBitfieldInsert(N))
1018       return CodeGenMap[Op] = SDOperand(I, 0);
1019       
1020     // Other cases are autogenerated.
1021     break;
1022   case ISD::SHL: {
1023     unsigned Imm, SH, MB, ME;
1024     if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
1025         isRotateAndMask(N, Imm, true, SH, MB, ME)) {
1026       CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, 
1027                            Select(N->getOperand(0).getOperand(0)),
1028                            getI32Imm(SH), getI32Imm(MB), getI32Imm(ME));
1029       return SDOperand(N, 0);
1030     }
1031     
1032     // Other cases are autogenerated.
1033     break;
1034   }
1035   case ISD::SRL: {
1036     unsigned Imm, SH, MB, ME;
1037     if (isOpcWithIntImmediate(N->getOperand(0).Val, ISD::AND, Imm) &&
1038         isRotateAndMask(N, Imm, true, SH, MB, ME)) { 
1039       CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, 
1040                            Select(N->getOperand(0).getOperand(0)),
1041                            getI32Imm(SH & 0x1F), getI32Imm(MB), getI32Imm(ME));
1042       return SDOperand(N, 0);
1043     }
1044     
1045     // Other cases are autogenerated.
1046     break;
1047   }
1048   case ISD::FNEG: {
1049     SDOperand Val = Select(N->getOperand(0));
1050     MVT::ValueType Ty = N->getValueType(0);
1051     if (N->getOperand(0).Val->hasOneUse()) {
1052       unsigned Opc;
1053       switch (Val.isTargetOpcode() ? Val.getTargetOpcode() : 0) {
1054       default:          Opc = 0;            break;
1055       case PPC::FABSS:  Opc = PPC::FNABSS;  break;
1056       case PPC::FABSD:  Opc = PPC::FNABSD;  break;
1057       case PPC::FMADD:  Opc = PPC::FNMADD;  break;
1058       case PPC::FMADDS: Opc = PPC::FNMADDS; break;
1059       case PPC::FMSUB:  Opc = PPC::FNMSUB;  break;
1060       case PPC::FMSUBS: Opc = PPC::FNMSUBS; break;
1061       }
1062       // If we inverted the opcode, then emit the new instruction with the
1063       // inverted opcode and the original instruction's operands.  Otherwise, 
1064       // fall through and generate a fneg instruction.
1065       if (Opc) {
1066         if (Opc == PPC::FNABSS || Opc == PPC::FNABSD)
1067           CurDAG->SelectNodeTo(N, Opc, Ty, Val.getOperand(0));
1068         else
1069           CurDAG->SelectNodeTo(N, Opc, Ty, Val.getOperand(0),
1070                                Val.getOperand(1), Val.getOperand(2));
1071         return SDOperand(N, 0);
1072       }
1073     }
1074     if (Ty == MVT::f32)
1075       CurDAG->SelectNodeTo(N, PPC::FNEGS, MVT::f32, Val);
1076     else
1077       CurDAG->SelectNodeTo(N, PPC::FNEGD, MVT::f64, Val);
1078     return SDOperand(N, 0);
1079   }
1080   case ISD::LOAD:
1081   case ISD::EXTLOAD:
1082   case ISD::ZEXTLOAD:
1083   case ISD::SEXTLOAD: {
1084     SDOperand Op1, Op2;
1085     bool isIdx = SelectAddr(N->getOperand(1), Op1, Op2);
1086
1087     MVT::ValueType TypeBeingLoaded = (N->getOpcode() == ISD::LOAD) ?
1088       N->getValueType(0) : cast<VTSDNode>(N->getOperand(3))->getVT();
1089     unsigned Opc;
1090     switch (TypeBeingLoaded) {
1091     default: N->dump(); assert(0 && "Cannot load this type!");
1092     case MVT::i1:
1093     case MVT::i8:  Opc = isIdx ? PPC::LBZX : PPC::LBZ; break;
1094     case MVT::i16:
1095       if (N->getOpcode() == ISD::SEXTLOAD) { // SEXT load?
1096         Opc = isIdx ? PPC::LHAX : PPC::LHA;
1097       } else {
1098         Opc = isIdx ? PPC::LHZX : PPC::LHZ;
1099       }
1100       break;
1101     case MVT::i32: Opc = isIdx ? PPC::LWZX : PPC::LWZ; break;
1102     case MVT::f32: Opc = isIdx ? PPC::LFSX : PPC::LFS; break;
1103     case MVT::f64: Opc = isIdx ? PPC::LFDX : PPC::LFD; break;
1104     }
1105
1106     // If this is an f32 -> f64 load, emit the f32 load, then use an 'extending
1107     // copy'.
1108     if (TypeBeingLoaded != MVT::f32 || N->getOpcode() == ISD::LOAD) {
1109         CurDAG->SelectNodeTo(N, Opc, N->getValueType(0), MVT::Other,
1110                              Op1, Op2, Select(N->getOperand(0)));
1111       return SDOperand(N, Op.ResNo);
1112     } else {
1113       std::vector<SDOperand> Ops;
1114       Ops.push_back(Op1);
1115       Ops.push_back(Op2);
1116       Ops.push_back(Select(N->getOperand(0)));
1117       SDOperand Res = CurDAG->getTargetNode(Opc, MVT::f32, MVT::Other, Ops);
1118       SDOperand Ext = CurDAG->getTargetNode(PPC::FMRSD, MVT::f64, Res);
1119       CodeGenMap[Op.getValue(0)] = Ext;
1120       CodeGenMap[Op.getValue(1)] = Res.getValue(1);
1121       if (Op.ResNo)
1122         return Res.getValue(1);
1123       else
1124         return Ext;
1125     }
1126   }
1127   case ISD::TRUNCSTORE:
1128   case ISD::STORE: {
1129     SDOperand AddrOp1, AddrOp2;
1130     bool isIdx = SelectAddr(N->getOperand(2), AddrOp1, AddrOp2);
1131
1132     unsigned Opc;
1133     if (N->getOpcode() == ISD::STORE) {
1134       switch (N->getOperand(1).getValueType()) {
1135       default: assert(0 && "unknown Type in store");
1136       case MVT::i32: Opc = isIdx ? PPC::STWX  : PPC::STW; break;
1137       case MVT::f64: Opc = isIdx ? PPC::STFDX : PPC::STFD; break;
1138       case MVT::f32: Opc = isIdx ? PPC::STFSX : PPC::STFS; break;
1139       }
1140     } else { //ISD::TRUNCSTORE
1141       switch(cast<VTSDNode>(N->getOperand(4))->getVT()) {
1142       default: assert(0 && "unknown Type in store");
1143       case MVT::i8:  Opc = isIdx ? PPC::STBX : PPC::STB; break;
1144       case MVT::i16: Opc = isIdx ? PPC::STHX : PPC::STH; break;
1145       }
1146     }
1147     
1148     CurDAG->SelectNodeTo(N, Opc, MVT::Other, Select(N->getOperand(1)),
1149                          AddrOp1, AddrOp2, Select(N->getOperand(0)));
1150     return SDOperand(N, 0);
1151   }
1152     
1153   case ISD::SELECT_CC: {
1154     ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(4))->get();
1155     
1156     // handle the setcc cases here.  select_cc lhs, 0, 1, 0, cc
1157     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N->getOperand(1)))
1158       if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N->getOperand(2)))
1159         if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N->getOperand(3)))
1160           if (N1C->isNullValue() && N3C->isNullValue() &&
1161               N2C->getValue() == 1ULL && CC == ISD::SETNE) {
1162             SDOperand LHS = Select(N->getOperand(0));
1163             SDOperand Tmp =
1164               CurDAG->getTargetNode(PPC::ADDIC, MVT::i32, MVT::Flag,
1165                                     LHS, getI32Imm(~0U));
1166             CurDAG->SelectNodeTo(N, PPC::SUBFE, MVT::i32, Tmp, LHS,
1167                                  Tmp.getValue(1));
1168             return SDOperand(N, 0);
1169           }
1170
1171     SDOperand CCReg = SelectCC(N->getOperand(0), N->getOperand(1), CC);
1172     unsigned BROpc = getBCCForSetCC(CC);
1173
1174     bool isFP = MVT::isFloatingPoint(N->getValueType(0));
1175     unsigned SelectCCOp;
1176     if (MVT::isInteger(N->getValueType(0)))
1177       SelectCCOp = PPC::SELECT_CC_Int;
1178     else if (N->getValueType(0) == MVT::f32)
1179       SelectCCOp = PPC::SELECT_CC_F4;
1180     else
1181       SelectCCOp = PPC::SELECT_CC_F8;
1182     CurDAG->SelectNodeTo(N, SelectCCOp, N->getValueType(0), CCReg,
1183                          Select(N->getOperand(2)), Select(N->getOperand(3)),
1184                          getI32Imm(BROpc));
1185     return SDOperand(N, 0);
1186   }
1187     
1188   case ISD::CALLSEQ_START:
1189   case ISD::CALLSEQ_END: {
1190     unsigned Amt = cast<ConstantSDNode>(N->getOperand(1))->getValue();
1191     unsigned Opc = N->getOpcode() == ISD::CALLSEQ_START ?
1192                        PPC::ADJCALLSTACKDOWN : PPC::ADJCALLSTACKUP;
1193     CurDAG->SelectNodeTo(N, Opc, MVT::Other,
1194                          getI32Imm(Amt), Select(N->getOperand(0)));
1195     return SDOperand(N, 0);
1196   }
1197   case ISD::RET: {
1198     SDOperand Chain = Select(N->getOperand(0));     // Token chain.
1199
1200     if (N->getNumOperands() == 2) {
1201       SDOperand Val = Select(N->getOperand(1));
1202       if (N->getOperand(1).getValueType() == MVT::i32) {
1203         Chain = CurDAG->getCopyToReg(Chain, PPC::R3, Val);
1204       } else {
1205         assert(MVT::isFloatingPoint(N->getOperand(1).getValueType()));
1206         Chain = CurDAG->getCopyToReg(Chain, PPC::F1, Val);
1207       }
1208     } else if (N->getNumOperands() > 1) {
1209       assert(N->getOperand(1).getValueType() == MVT::i32 &&
1210              N->getOperand(2).getValueType() == MVT::i32 &&
1211              N->getNumOperands() == 3 && "Unknown two-register ret value!");
1212       Chain = CurDAG->getCopyToReg(Chain, PPC::R4, Select(N->getOperand(1)));
1213       Chain = CurDAG->getCopyToReg(Chain, PPC::R3, Select(N->getOperand(2)));
1214     }
1215
1216     // Finally, select this to a blr (return) instruction.
1217     CurDAG->SelectNodeTo(N, PPC::BLR, MVT::Other, Chain);
1218     return SDOperand(N, 0);
1219   }
1220   case ISD::BR:
1221     CurDAG->SelectNodeTo(N, PPC::B, MVT::Other, N->getOperand(1),
1222                          Select(N->getOperand(0)));
1223     return SDOperand(N, 0);
1224   case ISD::BR_CC:
1225   case ISD::BRTWOWAY_CC: {
1226     SDOperand Chain = Select(N->getOperand(0));
1227     MachineBasicBlock *Dest =
1228       cast<BasicBlockSDNode>(N->getOperand(4))->getBasicBlock();
1229     ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(1))->get();
1230     SDOperand CondCode = SelectCC(N->getOperand(2), N->getOperand(3), CC);
1231
1232     // If this is a two way branch, then grab the fallthrough basic block
1233     // argument and build a PowerPC branch pseudo-op, suitable for long branch
1234     // conversion if necessary by the branch selection pass.  Otherwise, emit a
1235     // standard conditional branch.
1236     if (N->getOpcode() == ISD::BRTWOWAY_CC) {
1237       SDOperand CondTrueBlock = N->getOperand(4);
1238       SDOperand CondFalseBlock = N->getOperand(5);
1239       
1240       // If the false case is the current basic block, then this is a self loop.
1241       // We do not want to emit "Loop: ... brcond Out; br Loop", as it adds an
1242       // extra dispatch group to the loop.  Instead, invert the condition and
1243       // emit "Loop: ... br!cond Loop; br Out
1244       if (cast<BasicBlockSDNode>(CondFalseBlock)->getBasicBlock() == BB) {
1245         std::swap(CondTrueBlock, CondFalseBlock);
1246         CC = getSetCCInverse(CC,
1247                              MVT::isInteger(N->getOperand(2).getValueType()));
1248       }
1249       
1250       unsigned Opc = getBCCForSetCC(CC);
1251       SDOperand CB = CurDAG->getTargetNode(PPC::COND_BRANCH, MVT::Other,
1252                                            CondCode, getI32Imm(Opc),
1253                                            CondTrueBlock, CondFalseBlock,
1254                                            Chain);
1255       CurDAG->SelectNodeTo(N, PPC::B, MVT::Other, CondFalseBlock, CB);
1256     } else {
1257       // Iterate to the next basic block
1258       ilist<MachineBasicBlock>::iterator It = BB;
1259       ++It;
1260
1261       // If the fallthrough path is off the end of the function, which would be
1262       // undefined behavior, set it to be the same as the current block because
1263       // we have nothing better to set it to, and leaving it alone will cause
1264       // the PowerPC Branch Selection pass to crash.
1265       if (It == BB->getParent()->end()) It = Dest;
1266       CurDAG->SelectNodeTo(N, PPC::COND_BRANCH, MVT::Other, CondCode,
1267                            getI32Imm(getBCCForSetCC(CC)), N->getOperand(4),
1268                            CurDAG->getBasicBlock(It), Chain);
1269     }
1270     return SDOperand(N, 0);
1271   }
1272   }
1273   
1274   return SelectCode(Op);
1275 }
1276
1277
1278 /// createPPCISelDag - This pass converts a legalized DAG into a 
1279 /// PowerPC-specific DAG, ready for instruction scheduling.
1280 ///
1281 FunctionPass *llvm::createPPCISelDag(TargetMachine &TM) {
1282   return new PPCDAGToDAGISel(TM);
1283 }
1284