contract movechild+checktype into a new checkchild node, shrinking the
[oota-llvm.git] / include / llvm / CodeGen / DAGISelHeader.h
1 //==-llvm/CodeGen/DAGISelHeader.h - Common DAG ISel definitions  -*- C++ -*-==//
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 provides definitions of the common, target-independent methods and 
11 // data, which is used by SelectionDAG-based instruction selectors.
12 //
13 // *** NOTE: This file is #included into the middle of the target
14 // instruction selector class.  These functions are really methods.
15 // This is a little awkward, but it allows this code to be shared
16 // by all the targets while still being able to call into
17 // target-specific code without using a virtual function call.
18 //
19 //===----------------------------------------------------------------------===//
20
21 #ifndef LLVM_CODEGEN_DAGISEL_HEADER_H
22 #define LLVM_CODEGEN_DAGISEL_HEADER_H
23
24 /// ISelPosition - Node iterator marking the current position of
25 /// instruction selection as it procedes through the topologically-sorted
26 /// node list.
27 SelectionDAG::allnodes_iterator ISelPosition;
28
29 /// ChainNotReachable - Returns true if Chain does not reach Op.
30 static bool ChainNotReachable(SDNode *Chain, SDNode *Op) {
31   if (Chain->getOpcode() == ISD::EntryToken)
32     return true;
33   if (Chain->getOpcode() == ISD::TokenFactor)
34     return false;
35   if (Chain->getNumOperands() > 0) {
36     SDValue C0 = Chain->getOperand(0);
37     if (C0.getValueType() == MVT::Other)
38       return C0.getNode() != Op && ChainNotReachable(C0.getNode(), Op);
39   }
40   return true;
41 }
42
43 /// IsChainCompatible - Returns true if Chain is Op or Chain does not reach Op.
44 /// This is used to ensure that there are no nodes trapped between Chain, which
45 /// is the first chain node discovered in a pattern and Op, a later node, that
46 /// will not be selected into the pattern.
47 static bool IsChainCompatible(SDNode *Chain, SDNode *Op) {
48   return Chain == Op || ChainNotReachable(Chain, Op);
49 }
50
51
52 /// ISelUpdater - helper class to handle updates of the 
53 /// instruciton selection graph.
54 class VISIBILITY_HIDDEN ISelUpdater : public SelectionDAG::DAGUpdateListener {
55   SelectionDAG::allnodes_iterator &ISelPosition;
56 public:
57   explicit ISelUpdater(SelectionDAG::allnodes_iterator &isp)
58     : ISelPosition(isp) {}
59   
60   /// NodeDeleted - Handle nodes deleted from the graph. If the
61   /// node being deleted is the current ISelPosition node, update
62   /// ISelPosition.
63   ///
64   virtual void NodeDeleted(SDNode *N, SDNode *E) {
65     if (ISelPosition == SelectionDAG::allnodes_iterator(N))
66       ++ISelPosition;
67   }
68
69   /// NodeUpdated - Ignore updates for now.
70   virtual void NodeUpdated(SDNode *N) {}
71 };
72
73 /// ReplaceUses - replace all uses of the old node F with the use
74 /// of the new node T.
75 DISABLE_INLINE void ReplaceUses(SDValue F, SDValue T) {
76   ISelUpdater ISU(ISelPosition);
77   CurDAG->ReplaceAllUsesOfValueWith(F, T, &ISU);
78 }
79
80 /// ReplaceUses - replace all uses of the old nodes F with the use
81 /// of the new nodes T.
82 DISABLE_INLINE void ReplaceUses(const SDValue *F, const SDValue *T,
83                                 unsigned Num) {
84   ISelUpdater ISU(ISelPosition);
85   CurDAG->ReplaceAllUsesOfValuesWith(F, T, Num, &ISU);
86 }
87
88 /// ReplaceUses - replace all uses of the old node F with the use
89 /// of the new node T.
90 DISABLE_INLINE void ReplaceUses(SDNode *F, SDNode *T) {
91   ISelUpdater ISU(ISelPosition);
92   CurDAG->ReplaceAllUsesWith(F, T, &ISU);
93 }
94
95 /// SelectRoot - Top level entry to DAG instruction selector.
96 /// Selects instructions starting at the root of the current DAG.
97 void SelectRoot(SelectionDAG &DAG) {
98   SelectRootInit();
99
100   // Create a dummy node (which is not added to allnodes), that adds
101   // a reference to the root node, preventing it from being deleted,
102   // and tracking any changes of the root.
103   HandleSDNode Dummy(CurDAG->getRoot());
104   ISelPosition = SelectionDAG::allnodes_iterator(CurDAG->getRoot().getNode());
105   ++ISelPosition;
106
107   // The AllNodes list is now topological-sorted. Visit the
108   // nodes by starting at the end of the list (the root of the
109   // graph) and preceding back toward the beginning (the entry
110   // node).
111   while (ISelPosition != CurDAG->allnodes_begin()) {
112     SDNode *Node = --ISelPosition;
113     // Skip dead nodes. DAGCombiner is expected to eliminate all dead nodes,
114     // but there are currently some corner cases that it misses. Also, this
115     // makes it theoretically possible to disable the DAGCombiner.
116     if (Node->use_empty())
117       continue;
118
119     SDNode *ResNode = Select(Node);
120     // If node should not be replaced, continue with the next one.
121     if (ResNode == Node)
122       continue;
123     // Replace node.
124     if (ResNode)
125       ReplaceUses(Node, ResNode);
126
127     // If after the replacement this node is not used any more,
128     // remove this dead node.
129     if (Node->use_empty()) { // Don't delete EntryToken, etc.
130       ISelUpdater ISU(ISelPosition);
131       CurDAG->RemoveDeadNode(Node, &ISU);
132     }
133   }
134
135   CurDAG->setRoot(Dummy.getValue());
136 }
137
138
139 /// CheckInteger - Return true if the specified node is not a ConstantSDNode or
140 /// if it doesn't have the specified value.
141 static bool CheckInteger(SDValue V, int64_t Val) {
142   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
143   return C == 0 || C->getSExtValue() != Val;
144 }
145
146 /// CheckAndImmediate - Check to see if the specified node is an and with an
147 /// immediate returning true on failure.
148 ///
149 /// FIXME: Inline this gunk into CheckAndMask.
150 bool CheckAndImmediate(SDValue V, int64_t Val) {
151   if (V->getOpcode() == ISD::AND)
152     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(V->getOperand(1)))
153       if (CheckAndMask(V.getOperand(0), C, Val))
154         return false;
155   return true;
156 }
157
158 /// CheckOrImmediate - Check to see if the specified node is an or with an
159 /// immediate returning true on failure.
160 ///
161 /// FIXME: Inline this gunk into CheckOrMask.
162 bool CheckOrImmediate(SDValue V, int64_t Val) {
163   if (V->getOpcode() == ISD::OR)
164     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(V->getOperand(1)))
165       if (CheckOrMask(V.getOperand(0), C, Val))
166         return false;
167   return true;
168 }
169
170 void EmitInteger(int64_t Val, MVT::SimpleValueType VT,
171                  SmallVectorImpl<SDValue> &RecordedNodes) {
172   RecordedNodes.push_back(CurDAG->getTargetConstant(Val, VT));
173 }
174
175 // These functions are marked always inline so that Idx doesn't get pinned to
176 // the stack.
177 ALWAYS_INLINE static int8_t
178 GetInt1(const unsigned char *MatcherTable, unsigned &Idx) {
179   return MatcherTable[Idx++];
180 }
181
182 ALWAYS_INLINE static int16_t
183 GetInt2(const unsigned char *MatcherTable, unsigned &Idx) {
184   int16_t Val = (uint8_t)GetInt1(MatcherTable, Idx);
185   Val |= int16_t(GetInt1(MatcherTable, Idx)) << 8;
186   return Val;
187 }
188
189 ALWAYS_INLINE static int32_t
190 GetInt4(const unsigned char *MatcherTable, unsigned &Idx) {
191   int32_t Val = (uint16_t)GetInt2(MatcherTable, Idx);
192   Val |= int32_t(GetInt2(MatcherTable, Idx)) << 16;
193   return Val;
194 }
195
196 ALWAYS_INLINE static int64_t
197 GetInt8(const unsigned char *MatcherTable, unsigned &Idx) {
198   int64_t Val = (uint32_t)GetInt4(MatcherTable, Idx);
199   Val |= int64_t(GetInt4(MatcherTable, Idx)) << 32;
200   return Val;
201 }
202
203 /// GetVBR - decode a vbr encoding whose top bit is set.
204 ALWAYS_INLINE static unsigned
205 GetVBR(unsigned Val, const unsigned char *MatcherTable, unsigned &Idx) {
206   assert(Val >= 128 && "Not a VBR");
207   Val &= 127;  // Remove first vbr bit.
208   
209   unsigned Shift = 7;
210   unsigned NextBits;
211   do {
212     NextBits = GetInt1(MatcherTable, Idx);
213     Val |= (NextBits&127) << Shift;
214     Shift += 7;
215   } while (NextBits & 128);
216   
217   return Val;
218 }
219
220
221 enum BuiltinOpcodes {
222   OPC_Push, OPC_Push2,
223   OPC_RecordNode,
224   OPC_RecordChild0, OPC_RecordChild1, OPC_RecordChild2, OPC_RecordChild3, 
225   OPC_RecordChild4, OPC_RecordChild5, OPC_RecordChild6, OPC_RecordChild7,
226   OPC_RecordMemRef,
227   OPC_CaptureFlagInput,
228   OPC_MoveChild,
229   OPC_MoveParent,
230   OPC_CheckSame,
231   OPC_CheckPatternPredicate,
232   OPC_CheckPredicate,
233   OPC_CheckOpcode,
234   OPC_CheckMultiOpcode,
235   OPC_CheckType,
236   OPC_CheckChild0Type, OPC_CheckChild1Type, OPC_CheckChild2Type,
237   OPC_CheckChild3Type, OPC_CheckChild4Type, OPC_CheckChild5Type,
238   OPC_CheckChild6Type, OPC_CheckChild7Type,
239   OPC_CheckInteger1, OPC_CheckInteger2, OPC_CheckInteger4, OPC_CheckInteger8,
240   OPC_CheckCondCode,
241   OPC_CheckValueType,
242   OPC_CheckComplexPat,
243   OPC_CheckAndImm1, OPC_CheckAndImm2, OPC_CheckAndImm4, OPC_CheckAndImm8,
244   OPC_CheckOrImm1, OPC_CheckOrImm2, OPC_CheckOrImm4, OPC_CheckOrImm8,
245   OPC_CheckFoldableChainNode,
246   OPC_CheckChainCompatible,
247   
248   OPC_EmitInteger1, OPC_EmitInteger2, OPC_EmitInteger4, OPC_EmitInteger8,
249   OPC_EmitRegister,
250   OPC_EmitConvertToTarget,
251   OPC_EmitMergeInputChains,
252   OPC_EmitCopyToReg,
253   OPC_EmitNodeXForm,
254   OPC_EmitNode,
255   OPC_MarkFlagResults,
256   OPC_CompleteMatch
257 };
258
259 enum {
260   OPFL_None      = 0,     // Node has no chain or flag input and isn't variadic.
261   OPFL_Chain     = 1,     // Node has a chain input.
262   OPFL_Flag      = 2,     // Node has a flag input.
263   OPFL_MemRefs   = 4,     // Node gets accumulated MemRefs.
264   OPFL_Variadic0 = 1<<3,  // Node is variadic, root has 0 fixed inputs.
265   OPFL_Variadic1 = 2<<3,  // Node is variadic, root has 1 fixed inputs.
266   OPFL_Variadic2 = 3<<3,  // Node is variadic, root has 2 fixed inputs.
267   OPFL_Variadic3 = 4<<3,  // Node is variadic, root has 3 fixed inputs.
268   OPFL_Variadic4 = 5<<3,  // Node is variadic, root has 4 fixed inputs.
269   OPFL_Variadic5 = 6<<3,  // Node is variadic, root has 5 fixed inputs.
270   OPFL_Variadic6 = 7<<3,  // Node is variadic, root has 6 fixed inputs.
271   
272   OPFL_VariadicInfo = OPFL_Variadic6
273 };
274
275 /// getNumFixedFromVariadicInfo - Transform an EmitNode flags word into the
276 /// number of fixed arity values that should be skipped when copying from the
277 /// root.
278 static inline int getNumFixedFromVariadicInfo(unsigned Flags) {
279   return ((Flags&OPFL_VariadicInfo) >> 3)-1;
280 }
281
282 struct MatchScope {
283   /// FailIndex - If this match fails, this is the index to continue with.
284   unsigned FailIndex;
285   
286   /// NodeStackSize - The size of the node stack when the scope was formed.
287   unsigned NodeStackSize;
288   
289   /// NumRecordedNodes - The number of recorded nodes when the scope was formed.
290   unsigned NumRecordedNodes;
291   
292   /// NumMatchedMemRefs - The number of matched memref entries.
293   unsigned NumMatchedMemRefs;
294   
295   /// InputChain/InputFlag - The current chain/flag 
296   SDValue InputChain, InputFlag;
297
298   /// HasChainNodesMatched - True if the ChainNodesMatched list is non-empty.
299   bool HasChainNodesMatched, HasFlagResultNodesMatched;
300 };
301
302 SDNode *SelectCodeCommon(SDNode *NodeToMatch, const unsigned char *MatcherTable,
303                          unsigned TableSize) {
304   // FIXME: Should these even be selected?  Handle these cases in the caller?
305   switch (NodeToMatch->getOpcode()) {
306   default:
307     break;
308   case ISD::EntryToken:       // These nodes remain the same.
309   case ISD::BasicBlock:
310   case ISD::Register:
311   case ISD::HANDLENODE:
312   case ISD::TargetConstant:
313   case ISD::TargetConstantFP:
314   case ISD::TargetConstantPool:
315   case ISD::TargetFrameIndex:
316   case ISD::TargetExternalSymbol:
317   case ISD::TargetBlockAddress:
318   case ISD::TargetJumpTable:
319   case ISD::TargetGlobalTLSAddress:
320   case ISD::TargetGlobalAddress:
321   case ISD::TokenFactor:
322   case ISD::CopyFromReg:
323   case ISD::CopyToReg:
324     return 0;
325   case ISD::AssertSext:
326   case ISD::AssertZext:
327     ReplaceUses(SDValue(NodeToMatch, 0), NodeToMatch->getOperand(0));
328     return 0;
329   case ISD::INLINEASM: return Select_INLINEASM(NodeToMatch);
330   case ISD::EH_LABEL:  return Select_EH_LABEL(NodeToMatch);
331   case ISD::UNDEF:     return Select_UNDEF(NodeToMatch);
332   }
333   
334   assert(!NodeToMatch->isMachineOpcode() && "Node already selected!");
335
336   // Set up the node stack with NodeToMatch as the only node on the stack.
337   SmallVector<SDValue, 8> NodeStack;
338   SDValue N = SDValue(NodeToMatch, 0);
339   NodeStack.push_back(N);
340
341   // MatchScopes - Scopes used when matching, if a match failure happens, this
342   // indicates where to continue checking.
343   SmallVector<MatchScope, 8> MatchScopes;
344   
345   // RecordedNodes - This is the set of nodes that have been recorded by the
346   // state machine.
347   SmallVector<SDValue, 8> RecordedNodes;
348   
349   // MatchedMemRefs - This is the set of MemRef's we've seen in the input
350   // pattern.
351   SmallVector<MachineMemOperand*, 2> MatchedMemRefs;
352   
353   // These are the current input chain and flag for use when generating nodes.
354   // Various Emit operations change these.  For example, emitting a copytoreg
355   // uses and updates these.
356   SDValue InputChain, InputFlag;
357   
358   // ChainNodesMatched - If a pattern matches nodes that have input/output
359   // chains, the OPC_EmitMergeInputChains operation is emitted which indicates
360   // which ones they are.  The result is captured into this list so that we can
361   // update the chain results when the pattern is complete.
362   SmallVector<SDNode*, 3> ChainNodesMatched;
363   SmallVector<SDNode*, 3> FlagResultNodesMatched;
364   
365   DEBUG(errs() << "ISEL: Starting pattern match on root node: ";
366         NodeToMatch->dump(CurDAG);
367         errs() << '\n');
368   
369   // Interpreter starts at opcode #0.
370   unsigned MatcherIndex = 0;
371   while (1) {
372     assert(MatcherIndex < TableSize && "Invalid index");
373     BuiltinOpcodes Opcode = (BuiltinOpcodes)MatcherTable[MatcherIndex++];
374     switch (Opcode) {
375     case OPC_Push: {
376       unsigned NumToSkip = MatcherTable[MatcherIndex++];
377       MatchScope NewEntry;
378       NewEntry.FailIndex = MatcherIndex+NumToSkip;
379       NewEntry.NodeStackSize = NodeStack.size();
380       NewEntry.NumRecordedNodes = RecordedNodes.size();
381       NewEntry.NumMatchedMemRefs = MatchedMemRefs.size();
382       NewEntry.InputChain = InputChain;
383       NewEntry.InputFlag = InputFlag;
384       NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty();
385       NewEntry.HasFlagResultNodesMatched = !FlagResultNodesMatched.empty();
386       MatchScopes.push_back(NewEntry);
387       continue;
388     }
389     case OPC_Push2: {
390       unsigned NumToSkip = GetInt2(MatcherTable, MatcherIndex);
391       MatchScope NewEntry;
392       NewEntry.FailIndex = MatcherIndex+NumToSkip;
393       NewEntry.NodeStackSize = NodeStack.size();
394       NewEntry.NumRecordedNodes = RecordedNodes.size();
395       NewEntry.NumMatchedMemRefs = MatchedMemRefs.size();
396       NewEntry.InputChain = InputChain;
397       NewEntry.InputFlag = InputFlag;
398       NewEntry.HasChainNodesMatched = !ChainNodesMatched.empty();
399       NewEntry.HasFlagResultNodesMatched = !FlagResultNodesMatched.empty();
400       MatchScopes.push_back(NewEntry);
401       continue;
402     }
403     case OPC_RecordNode:
404       // Remember this node, it may end up being an operand in the pattern.
405       RecordedNodes.push_back(N);
406       continue;
407         
408     case OPC_RecordChild0: case OPC_RecordChild1:
409     case OPC_RecordChild2: case OPC_RecordChild3:
410     case OPC_RecordChild4: case OPC_RecordChild5:
411     case OPC_RecordChild6: case OPC_RecordChild7: {
412       unsigned ChildNo = Opcode-OPC_RecordChild0;
413       if (ChildNo >= N.getNumOperands())
414         break;  // Match fails if out of range child #.
415
416       RecordedNodes.push_back(N->getOperand(ChildNo));
417       continue;
418     }
419     case OPC_RecordMemRef:
420       MatchedMemRefs.push_back(cast<MemSDNode>(N)->getMemOperand());
421       continue;
422         
423     case OPC_CaptureFlagInput:
424       // If the current node has an input flag, capture it in InputFlag.
425       if (N->getNumOperands() != 0 &&
426           N->getOperand(N->getNumOperands()-1).getValueType() == MVT::Flag)
427         InputFlag = N->getOperand(N->getNumOperands()-1);
428       continue;
429         
430     case OPC_MoveChild: {
431       unsigned ChildNo = MatcherTable[MatcherIndex++];
432       if (ChildNo >= N.getNumOperands())
433         break;  // Match fails if out of range child #.
434       N = N.getOperand(ChildNo);
435       NodeStack.push_back(N);
436       continue;
437     }
438         
439     case OPC_MoveParent:
440       // Pop the current node off the NodeStack.
441       NodeStack.pop_back();
442       assert(!NodeStack.empty() && "Node stack imbalance!");
443       N = NodeStack.back();  
444       continue;
445      
446     case OPC_CheckSame: {
447       // Accept if it is exactly the same as a previously recorded node.
448       unsigned RecNo = MatcherTable[MatcherIndex++];
449       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
450       if (N != RecordedNodes[RecNo]) break;
451       continue;
452     }
453     case OPC_CheckPatternPredicate:
454       if (!CheckPatternPredicate(MatcherTable[MatcherIndex++])) break;
455       continue;
456     case OPC_CheckPredicate:
457       if (!CheckNodePredicate(N.getNode(), MatcherTable[MatcherIndex++])) break;
458       continue;
459     case OPC_CheckComplexPat:
460       if (!CheckComplexPattern(NodeToMatch, N, 
461                                MatcherTable[MatcherIndex++], RecordedNodes))
462         break;
463       continue;
464     case OPC_CheckOpcode:
465       if (N->getOpcode() != MatcherTable[MatcherIndex++]) break;
466       continue;
467         
468     case OPC_CheckMultiOpcode: {
469       unsigned NumOps = MatcherTable[MatcherIndex++];
470       bool OpcodeEquals = false;
471       for (unsigned i = 0; i != NumOps; ++i)
472         OpcodeEquals |= N->getOpcode() == MatcherTable[MatcherIndex++];
473       if (!OpcodeEquals) break;
474       continue;
475     }
476         
477     case OPC_CheckType: {
478       MVT::SimpleValueType VT =
479         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
480       if (N.getValueType() != VT) {
481         // Handle the case when VT is iPTR.
482         if (VT != MVT::iPTR || N.getValueType() != TLI.getPointerTy())
483           break;
484       }
485       continue;
486     }
487     case OPC_CheckChild0Type: case OPC_CheckChild1Type:
488     case OPC_CheckChild2Type: case OPC_CheckChild3Type:
489     case OPC_CheckChild4Type: case OPC_CheckChild5Type:
490     case OPC_CheckChild6Type: case OPC_CheckChild7Type: {
491       unsigned ChildNo = Opcode-OPC_CheckChild0Type;
492       if (ChildNo >= N.getNumOperands())
493         break;  // Match fails if out of range child #.
494       
495       MVT::SimpleValueType VT =
496         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
497       if (N.getOperand(ChildNo).getValueType() != VT) {
498         // Handle the case when VT is iPTR.
499         if (VT != MVT::iPTR || N.getValueType() != TLI.getPointerTy())
500           break;
501       }
502       continue;
503     }
504     case OPC_CheckCondCode:
505       if (cast<CondCodeSDNode>(N)->get() !=
506           (ISD::CondCode)MatcherTable[MatcherIndex++]) break;
507       continue;
508     case OPC_CheckValueType: {
509       MVT::SimpleValueType VT =
510         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
511       if (cast<VTSDNode>(N)->getVT() != VT) {
512         // Handle the case when VT is iPTR.
513         if (VT != MVT::iPTR || cast<VTSDNode>(N)->getVT() != TLI.getPointerTy())
514           break;
515       }
516       continue;
517     }
518     case OPC_CheckInteger1:
519       if (CheckInteger(N, GetInt1(MatcherTable, MatcherIndex))) break;
520       continue;
521     case OPC_CheckInteger2:
522       if (CheckInteger(N, GetInt2(MatcherTable, MatcherIndex))) break;
523       continue;
524     case OPC_CheckInteger4:
525       if (CheckInteger(N, GetInt4(MatcherTable, MatcherIndex))) break;
526       continue;
527     case OPC_CheckInteger8:
528       if (CheckInteger(N, GetInt8(MatcherTable, MatcherIndex))) break;
529       continue;
530         
531     case OPC_CheckAndImm1:
532       if (CheckAndImmediate(N, GetInt1(MatcherTable, MatcherIndex))) break;
533       continue;
534     case OPC_CheckAndImm2:
535       if (CheckAndImmediate(N, GetInt2(MatcherTable, MatcherIndex))) break;
536       continue;
537     case OPC_CheckAndImm4:
538       if (CheckAndImmediate(N, GetInt4(MatcherTable, MatcherIndex))) break;
539       continue;
540     case OPC_CheckAndImm8:
541       if (CheckAndImmediate(N, GetInt8(MatcherTable, MatcherIndex))) break;
542       continue;
543
544     case OPC_CheckOrImm1:
545       if (CheckOrImmediate(N, GetInt1(MatcherTable, MatcherIndex))) break;
546       continue;
547     case OPC_CheckOrImm2:
548       if (CheckOrImmediate(N, GetInt2(MatcherTable, MatcherIndex))) break;
549       continue;
550     case OPC_CheckOrImm4:
551       if (CheckOrImmediate(N, GetInt4(MatcherTable, MatcherIndex))) break;
552       continue;
553     case OPC_CheckOrImm8:
554       if (CheckOrImmediate(N, GetInt8(MatcherTable, MatcherIndex))) break;
555       continue;
556         
557     case OPC_CheckFoldableChainNode: {
558       assert(NodeStack.size() != 1 && "No parent node");
559       // Verify that all intermediate nodes between the root and this one have
560       // a single use.
561       bool HasMultipleUses = false;
562       for (unsigned i = 1, e = NodeStack.size()-1; i != e; ++i)
563         if (!NodeStack[i].hasOneUse()) {
564           HasMultipleUses = true;
565           break;
566         }
567       if (HasMultipleUses) break;
568
569       // Check to see that the target thinks this is profitable to fold and that
570       // we can fold it without inducing cycles in the graph.
571       if (!IsProfitableToFold(N, NodeStack[NodeStack.size()-2].getNode(),
572                               NodeToMatch) ||
573           !IsLegalToFold(N, NodeStack[NodeStack.size()-2].getNode(),
574                          NodeToMatch))
575         break;
576       
577       continue;
578     }
579     case OPC_CheckChainCompatible: {
580       unsigned PrevNode = MatcherTable[MatcherIndex++];
581       assert(PrevNode < RecordedNodes.size() && "Invalid CheckChainCompatible");
582       SDValue PrevChainedNode = RecordedNodes[PrevNode];
583       SDValue ThisChainedNode = RecordedNodes.back();
584       
585       // We have two nodes with chains, verify that their input chains are good.
586       assert(PrevChainedNode.getOperand(0).getValueType() == MVT::Other &&
587              ThisChainedNode.getOperand(0).getValueType() == MVT::Other &&
588              "Invalid chained nodes");
589       
590       if (!IsChainCompatible(// Input chain of the previous node.
591                              PrevChainedNode.getOperand(0).getNode(),
592                              // Node with chain.
593                              ThisChainedNode.getNode()))
594         break;
595       continue;
596     }
597         
598     case OPC_EmitInteger1: {
599       MVT::SimpleValueType VT =
600         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
601       EmitInteger(GetInt1(MatcherTable, MatcherIndex), VT, RecordedNodes);
602       continue;
603     }
604     case OPC_EmitInteger2: {
605       MVT::SimpleValueType VT =
606         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
607       EmitInteger(GetInt2(MatcherTable, MatcherIndex), VT, RecordedNodes);
608       continue;
609     }
610     case OPC_EmitInteger4: {
611       MVT::SimpleValueType VT =
612         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
613       EmitInteger(GetInt4(MatcherTable, MatcherIndex), VT, RecordedNodes);
614       continue;
615     }
616     case OPC_EmitInteger8: {
617       MVT::SimpleValueType VT =
618        (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
619       EmitInteger(GetInt8(MatcherTable, MatcherIndex), VT, RecordedNodes);
620       continue;
621     }
622         
623     case OPC_EmitRegister: {
624       MVT::SimpleValueType VT =
625         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
626       unsigned RegNo = MatcherTable[MatcherIndex++];
627       RecordedNodes.push_back(CurDAG->getRegister(RegNo, VT));
628       continue;
629     }
630         
631     case OPC_EmitConvertToTarget:  {
632       // Convert from IMM/FPIMM to target version.
633       unsigned RecNo = MatcherTable[MatcherIndex++];
634       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
635       SDValue Imm = RecordedNodes[RecNo];
636
637       if (Imm->getOpcode() == ISD::Constant) {
638         int64_t Val = cast<ConstantSDNode>(Imm)->getZExtValue();
639         Imm = CurDAG->getTargetConstant(Val, Imm.getValueType());
640       } else if (Imm->getOpcode() == ISD::ConstantFP) {
641         const ConstantFP *Val=cast<ConstantFPSDNode>(Imm)->getConstantFPValue();
642         Imm = CurDAG->getTargetConstantFP(*Val, Imm.getValueType());
643       }
644       
645       RecordedNodes.push_back(Imm);
646       continue;
647     }
648         
649     case OPC_EmitMergeInputChains: {
650       assert(InputChain.getNode() == 0 &&
651              "EmitMergeInputChains should be the first chain producing node");
652       // This node gets a list of nodes we matched in the input that have
653       // chains.  We want to token factor all of the input chains to these nodes
654       // together.  However, if any of the input chains is actually one of the
655       // nodes matched in this pattern, then we have an intra-match reference.
656       // Ignore these because the newly token factored chain should not refer to
657       // the old nodes.
658       unsigned NumChains = MatcherTable[MatcherIndex++];
659       assert(NumChains != 0 && "Can't TF zero chains");
660
661       assert(ChainNodesMatched.empty() &&
662              "Should only have one EmitMergeInputChains per match");
663
664       // Handle the first chain.
665       unsigned RecNo = MatcherTable[MatcherIndex++];
666       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
667       ChainNodesMatched.push_back(RecordedNodes[RecNo].getNode());
668       
669       // If the chained node is not the root, we can't fold it if it has
670       // multiple uses.
671       // FIXME: What if other value results of the node have uses not matched by
672       // this pattern?
673       if (ChainNodesMatched.back() != NodeToMatch &&
674           !RecordedNodes[RecNo].hasOneUse()) {
675         ChainNodesMatched.clear();
676         break;
677       }
678       
679       // The common case here is that we have exactly one chain, which is really
680       // cheap to handle, just do it.
681       if (NumChains == 1) {
682         InputChain = RecordedNodes[RecNo].getOperand(0);
683         assert(InputChain.getValueType() == MVT::Other && "Not a chain");
684         continue;
685       }
686       
687       // Read all of the chained nodes.
688       for (unsigned i = 1; i != NumChains; ++i) {
689         RecNo = MatcherTable[MatcherIndex++];
690         assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
691         ChainNodesMatched.push_back(RecordedNodes[RecNo].getNode());
692         
693         // FIXME: What if other value results of the node have uses not matched by
694         // this pattern?
695         if (ChainNodesMatched.back() != NodeToMatch &&
696             !RecordedNodes[RecNo].hasOneUse()) {
697           ChainNodesMatched.clear();
698           break;
699         }
700       }
701
702       // Walk all the chained nodes, adding the input chains if they are not in
703       // ChainedNodes (and this, not in the matched pattern).  This is an N^2
704       // algorithm, but # chains is usually 2 here, at most 3 for MSP430.
705       SmallVector<SDValue, 3> InputChains;
706       for (unsigned i = 0, e = ChainNodesMatched.size(); i != e; ++i) {
707         SDValue InChain = ChainNodesMatched[i]->getOperand(0);
708         assert(InChain.getValueType() == MVT::Other && "Not a chain");
709         bool Invalid = false;
710         for (unsigned j = 0; j != e; ++j)
711           Invalid |= ChainNodesMatched[j] == InChain.getNode();
712         if (!Invalid)
713           InputChains.push_back(InChain);
714       }
715
716       SDValue Res;
717       if (InputChains.size() == 1)
718         InputChain = InputChains[0];
719       else
720         InputChain = CurDAG->getNode(ISD::TokenFactor,
721                                      NodeToMatch->getDebugLoc(), MVT::Other,
722                                      &InputChains[0], InputChains.size());
723       continue;
724     }
725         
726     case OPC_EmitCopyToReg: {
727       unsigned RecNo = MatcherTable[MatcherIndex++];
728       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
729       unsigned DestPhysReg = MatcherTable[MatcherIndex++];
730       
731       if (InputChain.getNode() == 0)
732         InputChain = CurDAG->getEntryNode();
733       
734       InputChain = CurDAG->getCopyToReg(InputChain, NodeToMatch->getDebugLoc(),
735                                         DestPhysReg, RecordedNodes[RecNo],
736                                         InputFlag);
737       
738       InputFlag = InputChain.getValue(1);
739       continue;
740     }
741         
742     case OPC_EmitNodeXForm: {
743       unsigned XFormNo = MatcherTable[MatcherIndex++];
744       unsigned RecNo = MatcherTable[MatcherIndex++];
745       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
746       RecordedNodes.push_back(RunSDNodeXForm(RecordedNodes[RecNo], XFormNo));
747       continue;
748     }
749         
750     case OPC_EmitNode: {
751       uint16_t TargetOpc = GetInt2(MatcherTable, MatcherIndex);
752       unsigned EmitNodeInfo = MatcherTable[MatcherIndex++];
753       // Get the result VT list.
754       unsigned NumVTs = MatcherTable[MatcherIndex++];
755       assert(NumVTs != 0 && "Invalid node result");
756       SmallVector<EVT, 4> VTs;
757       for (unsigned i = 0; i != NumVTs; ++i) {
758         MVT::SimpleValueType VT =
759           (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
760         if (VT == MVT::iPTR) VT = TLI.getPointerTy().SimpleTy;
761         VTs.push_back(VT);
762       }
763       
764       // FIXME: Use faster version for the common 'one VT' case?
765       SDVTList VTList = CurDAG->getVTList(VTs.data(), VTs.size());
766
767       // Get the operand list.
768       unsigned NumOps = MatcherTable[MatcherIndex++];
769       SmallVector<SDValue, 8> Ops;
770       for (unsigned i = 0; i != NumOps; ++i) {
771         unsigned RecNo = MatcherTable[MatcherIndex++];
772         if (RecNo & 128)
773           RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex);
774         
775         assert(RecNo < RecordedNodes.size() && "Invalid EmitNode");
776         Ops.push_back(RecordedNodes[RecNo]);
777       }
778       
779       // If there are variadic operands to add, handle them now.
780       if (EmitNodeInfo & OPFL_VariadicInfo) {
781         // Determine the start index to copy from.
782         unsigned FirstOpToCopy = getNumFixedFromVariadicInfo(EmitNodeInfo);
783         FirstOpToCopy += (EmitNodeInfo & OPFL_Chain) ? 1 : 0;
784         assert(NodeToMatch->getNumOperands() >= FirstOpToCopy &&
785                "Invalid variadic node");
786         // Copy all of the variadic operands, not including a potential flag
787         // input.
788         for (unsigned i = FirstOpToCopy, e = NodeToMatch->getNumOperands();
789              i != e; ++i) {
790           SDValue V = NodeToMatch->getOperand(i);
791           if (V.getValueType() == MVT::Flag) break;
792           Ops.push_back(V);
793         }
794       }
795       
796       // If this has chain/flag inputs, add them.
797       if (EmitNodeInfo & OPFL_Chain)
798         Ops.push_back(InputChain);
799       if ((EmitNodeInfo & OPFL_Flag) && InputFlag.getNode() != 0)
800         Ops.push_back(InputFlag);
801       
802       // Create the node.
803       MachineSDNode *Res = CurDAG->getMachineNode(TargetOpc,
804                                                   NodeToMatch->getDebugLoc(),
805                                                   VTList,
806                                                   Ops.data(), Ops.size());
807       // Add all the non-flag/non-chain results to the RecordedNodes list.
808       for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
809         if (VTs[i] == MVT::Other || VTs[i] == MVT::Flag) break;
810         RecordedNodes.push_back(SDValue(Res, i));
811       }
812       
813       // If the node had chain/flag results, update our notion of the current
814       // chain and flag.
815       if (VTs.back() == MVT::Flag) {
816         InputFlag = SDValue(Res, VTs.size()-1);
817         if (EmitNodeInfo & OPFL_Chain)
818           InputChain = SDValue(Res, VTs.size()-2);
819       } else if (EmitNodeInfo & OPFL_Chain)
820         InputChain = SDValue(Res, VTs.size()-1);
821
822       // If the OPFL_MemRefs flag is set on this node, slap all of the
823       // accumulated memrefs onto it.
824       //
825       // FIXME: This is vastly incorrect for patterns with multiple outputs
826       // instructions that access memory and for ComplexPatterns that match
827       // loads.
828       if (EmitNodeInfo & OPFL_MemRefs) {
829         MachineSDNode::mmo_iterator MemRefs =
830           MF->allocateMemRefsArray(MatchedMemRefs.size());
831         std::copy(MatchedMemRefs.begin(), MatchedMemRefs.end(), MemRefs);
832         Res->setMemRefs(MemRefs, MemRefs + MatchedMemRefs.size());
833       }
834       
835       DEBUG(errs() << "  Created node: "; Res->dump(CurDAG); errs() << "\n");
836       continue;
837     }
838         
839     case OPC_MarkFlagResults: {
840       unsigned NumNodes = MatcherTable[MatcherIndex++];
841       
842       // Read and remember all the flag-result nodes.
843       for (unsigned i = 0; i != NumNodes; ++i) {
844         unsigned RecNo = MatcherTable[MatcherIndex++];
845         if (RecNo & 128)
846           RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex);
847
848         assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
849         FlagResultNodesMatched.push_back(RecordedNodes[RecNo].getNode());
850       }
851       continue;
852     }
853       
854     case OPC_CompleteMatch: {
855       // The match has been completed, and any new nodes (if any) have been
856       // created.  Patch up references to the matched dag to use the newly
857       // created nodes.
858       unsigned NumResults = MatcherTable[MatcherIndex++];
859
860       for (unsigned i = 0; i != NumResults; ++i) {
861         unsigned ResSlot = MatcherTable[MatcherIndex++];
862         if (ResSlot & 128)
863           ResSlot = GetVBR(ResSlot, MatcherTable, MatcherIndex);
864         
865         assert(ResSlot < RecordedNodes.size() && "Invalid CheckSame");
866         SDValue Res = RecordedNodes[ResSlot];
867         
868         // FIXME2: Eliminate this horrible hack by fixing the 'Gen' program
869         // after (parallel) on input patterns are removed.  This would also
870         // allow us to stop encoding #results in OPC_CompleteMatch's table
871         // entry.
872         if (NodeToMatch->getNumValues() <= i ||
873             NodeToMatch->getValueType(i) == MVT::Other ||
874             NodeToMatch->getValueType(i) == MVT::Flag)
875           break;
876         assert((NodeToMatch->getValueType(i) == Res.getValueType() ||
877                 NodeToMatch->getValueType(i) == MVT::iPTR ||
878                 Res.getValueType() == MVT::iPTR ||
879                 NodeToMatch->getValueType(i).getSizeInBits() ==
880                     Res.getValueType().getSizeInBits()) &&
881                "invalid replacement");
882         ReplaceUses(SDValue(NodeToMatch, i), Res);
883       }
884       
885       // Now that all the normal results are replaced, we replace the chain and
886       // flag results if present.
887       if (!ChainNodesMatched.empty()) {
888         assert(InputChain.getNode() != 0 &&
889                "Matched input chains but didn't produce a chain");
890         // Loop over all of the nodes we matched that produced a chain result.
891         // Replace all the chain results with the final chain we ended up with.
892         for (unsigned i = 0, e = ChainNodesMatched.size(); i != e; ++i) {
893           SDNode *ChainNode = ChainNodesMatched[i];
894           SDValue ChainVal = SDValue(ChainNode, ChainNode->getNumValues()-1);
895           if (ChainVal.getValueType() == MVT::Flag)
896             ChainVal = ChainVal.getValue(ChainVal->getNumValues()-2);
897           assert(ChainVal.getValueType() == MVT::Other && "Not a chain?");
898           ReplaceUses(ChainVal, InputChain);
899         }
900       }
901
902       // If the result produces a flag, update any flag results in the matched
903       // pattern with the flag result.
904       if (InputFlag.getNode() != 0) {
905         // Handle the root node:
906         if (NodeToMatch->getValueType(NodeToMatch->getNumValues()-1) ==
907               MVT::Flag)
908           ReplaceUses(SDValue(NodeToMatch, NodeToMatch->getNumValues()-1),
909                       InputFlag);
910         
911         // Handle any interior nodes explicitly marked.
912         for (unsigned i = 0, e = FlagResultNodesMatched.size(); i != e; ++i) {
913           SDNode *FRN = FlagResultNodesMatched[i];
914           assert(FRN->getValueType(FRN->getNumValues()-1) == MVT::Flag &&
915                  "Doesn't have a flag result");
916           ReplaceUses(SDValue(FRN, FRN->getNumValues()-1), InputFlag);
917         }
918       }
919       
920       assert(NodeToMatch->use_empty() &&
921              "Didn't replace all uses of the node?");
922       
923       DEBUG(errs() << "ISEL: Match complete!\n");
924       
925       // FIXME: We just return here, which interacts correctly with SelectRoot
926       // above.  We should fix this to not return an SDNode* anymore.
927       return 0;
928     }
929     }
930     
931     // If the code reached this point, then the match failed pop out to the next
932     // match scope.
933     if (MatchScopes.empty()) {
934       CannotYetSelect(NodeToMatch);
935       return 0;
936     }
937     
938     const MatchScope &LastScope = MatchScopes.back();
939     RecordedNodes.resize(LastScope.NumRecordedNodes);
940     NodeStack.resize(LastScope.NodeStackSize);
941     N = NodeStack.back();
942
943     DEBUG(errs() << "  Match failed at index " << MatcherIndex
944                  << " continuing at " << LastScope.FailIndex << "\n");
945     
946     if (LastScope.NumMatchedMemRefs != MatchedMemRefs.size())
947       MatchedMemRefs.resize(LastScope.NumMatchedMemRefs);
948     MatcherIndex = LastScope.FailIndex;
949     
950     InputChain = LastScope.InputChain;
951     InputFlag = LastScope.InputFlag;
952     if (!LastScope.HasChainNodesMatched)
953       ChainNodesMatched.clear();
954     if (!LastScope.HasFlagResultNodesMatched)
955       FlagResultNodesMatched.clear();
956
957     MatchScopes.pop_back();
958   }
959 }
960     
961
962 #endif /* LLVM_CODEGEN_DAGISEL_HEADER_H */