rename PushMatcherNode -> ScopeMatcherNode to more accurately
[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_Scope, OPC_Scope2,
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_Scope: {
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_Scope2: {
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       EVT ChildVT = N.getOperand(ChildNo).getValueType();
498       if (ChildVT != VT) {
499         // Handle the case when VT is iPTR.
500         if (VT != MVT::iPTR || ChildVT != TLI.getPointerTy())
501           break;
502       }
503       continue;
504     }
505     case OPC_CheckCondCode:
506       if (cast<CondCodeSDNode>(N)->get() !=
507           (ISD::CondCode)MatcherTable[MatcherIndex++]) break;
508       continue;
509     case OPC_CheckValueType: {
510       MVT::SimpleValueType VT =
511         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
512       if (cast<VTSDNode>(N)->getVT() != VT) {
513         // Handle the case when VT is iPTR.
514         if (VT != MVT::iPTR || cast<VTSDNode>(N)->getVT() != TLI.getPointerTy())
515           break;
516       }
517       continue;
518     }
519     case OPC_CheckInteger1:
520       if (CheckInteger(N, GetInt1(MatcherTable, MatcherIndex))) break;
521       continue;
522     case OPC_CheckInteger2:
523       if (CheckInteger(N, GetInt2(MatcherTable, MatcherIndex))) break;
524       continue;
525     case OPC_CheckInteger4:
526       if (CheckInteger(N, GetInt4(MatcherTable, MatcherIndex))) break;
527       continue;
528     case OPC_CheckInteger8:
529       if (CheckInteger(N, GetInt8(MatcherTable, MatcherIndex))) break;
530       continue;
531         
532     case OPC_CheckAndImm1:
533       if (CheckAndImmediate(N, GetInt1(MatcherTable, MatcherIndex))) break;
534       continue;
535     case OPC_CheckAndImm2:
536       if (CheckAndImmediate(N, GetInt2(MatcherTable, MatcherIndex))) break;
537       continue;
538     case OPC_CheckAndImm4:
539       if (CheckAndImmediate(N, GetInt4(MatcherTable, MatcherIndex))) break;
540       continue;
541     case OPC_CheckAndImm8:
542       if (CheckAndImmediate(N, GetInt8(MatcherTable, MatcherIndex))) break;
543       continue;
544
545     case OPC_CheckOrImm1:
546       if (CheckOrImmediate(N, GetInt1(MatcherTable, MatcherIndex))) break;
547       continue;
548     case OPC_CheckOrImm2:
549       if (CheckOrImmediate(N, GetInt2(MatcherTable, MatcherIndex))) break;
550       continue;
551     case OPC_CheckOrImm4:
552       if (CheckOrImmediate(N, GetInt4(MatcherTable, MatcherIndex))) break;
553       continue;
554     case OPC_CheckOrImm8:
555       if (CheckOrImmediate(N, GetInt8(MatcherTable, MatcherIndex))) break;
556       continue;
557         
558     case OPC_CheckFoldableChainNode: {
559       assert(NodeStack.size() != 1 && "No parent node");
560       // Verify that all intermediate nodes between the root and this one have
561       // a single use.
562       bool HasMultipleUses = false;
563       for (unsigned i = 1, e = NodeStack.size()-1; i != e; ++i)
564         if (!NodeStack[i].hasOneUse()) {
565           HasMultipleUses = true;
566           break;
567         }
568       if (HasMultipleUses) break;
569
570       // Check to see that the target thinks this is profitable to fold and that
571       // we can fold it without inducing cycles in the graph.
572       if (!IsProfitableToFold(N, NodeStack[NodeStack.size()-2].getNode(),
573                               NodeToMatch) ||
574           !IsLegalToFold(N, NodeStack[NodeStack.size()-2].getNode(),
575                          NodeToMatch))
576         break;
577       
578       continue;
579     }
580     case OPC_CheckChainCompatible: {
581       unsigned PrevNode = MatcherTable[MatcherIndex++];
582       assert(PrevNode < RecordedNodes.size() && "Invalid CheckChainCompatible");
583       SDValue PrevChainedNode = RecordedNodes[PrevNode];
584       SDValue ThisChainedNode = RecordedNodes.back();
585       
586       // We have two nodes with chains, verify that their input chains are good.
587       assert(PrevChainedNode.getOperand(0).getValueType() == MVT::Other &&
588              ThisChainedNode.getOperand(0).getValueType() == MVT::Other &&
589              "Invalid chained nodes");
590       
591       if (!IsChainCompatible(// Input chain of the previous node.
592                              PrevChainedNode.getOperand(0).getNode(),
593                              // Node with chain.
594                              ThisChainedNode.getNode()))
595         break;
596       continue;
597     }
598         
599     case OPC_EmitInteger1: {
600       MVT::SimpleValueType VT =
601         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
602       EmitInteger(GetInt1(MatcherTable, MatcherIndex), VT, RecordedNodes);
603       continue;
604     }
605     case OPC_EmitInteger2: {
606       MVT::SimpleValueType VT =
607         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
608       EmitInteger(GetInt2(MatcherTable, MatcherIndex), VT, RecordedNodes);
609       continue;
610     }
611     case OPC_EmitInteger4: {
612       MVT::SimpleValueType VT =
613         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
614       EmitInteger(GetInt4(MatcherTable, MatcherIndex), VT, RecordedNodes);
615       continue;
616     }
617     case OPC_EmitInteger8: {
618       MVT::SimpleValueType VT =
619        (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
620       EmitInteger(GetInt8(MatcherTable, MatcherIndex), VT, RecordedNodes);
621       continue;
622     }
623         
624     case OPC_EmitRegister: {
625       MVT::SimpleValueType VT =
626         (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
627       unsigned RegNo = MatcherTable[MatcherIndex++];
628       RecordedNodes.push_back(CurDAG->getRegister(RegNo, VT));
629       continue;
630     }
631         
632     case OPC_EmitConvertToTarget:  {
633       // Convert from IMM/FPIMM to target version.
634       unsigned RecNo = MatcherTable[MatcherIndex++];
635       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
636       SDValue Imm = RecordedNodes[RecNo];
637
638       if (Imm->getOpcode() == ISD::Constant) {
639         int64_t Val = cast<ConstantSDNode>(Imm)->getZExtValue();
640         Imm = CurDAG->getTargetConstant(Val, Imm.getValueType());
641       } else if (Imm->getOpcode() == ISD::ConstantFP) {
642         const ConstantFP *Val=cast<ConstantFPSDNode>(Imm)->getConstantFPValue();
643         Imm = CurDAG->getTargetConstantFP(*Val, Imm.getValueType());
644       }
645       
646       RecordedNodes.push_back(Imm);
647       continue;
648     }
649         
650     case OPC_EmitMergeInputChains: {
651       assert(InputChain.getNode() == 0 &&
652              "EmitMergeInputChains should be the first chain producing node");
653       // This node gets a list of nodes we matched in the input that have
654       // chains.  We want to token factor all of the input chains to these nodes
655       // together.  However, if any of the input chains is actually one of the
656       // nodes matched in this pattern, then we have an intra-match reference.
657       // Ignore these because the newly token factored chain should not refer to
658       // the old nodes.
659       unsigned NumChains = MatcherTable[MatcherIndex++];
660       assert(NumChains != 0 && "Can't TF zero chains");
661
662       assert(ChainNodesMatched.empty() &&
663              "Should only have one EmitMergeInputChains per match");
664
665       // Handle the first chain.
666       unsigned RecNo = MatcherTable[MatcherIndex++];
667       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
668       ChainNodesMatched.push_back(RecordedNodes[RecNo].getNode());
669       
670       // If the chained node is not the root, we can't fold it if it has
671       // multiple uses.
672       // FIXME: What if other value results of the node have uses not matched by
673       // this pattern?
674       if (ChainNodesMatched.back() != NodeToMatch &&
675           !RecordedNodes[RecNo].hasOneUse()) {
676         ChainNodesMatched.clear();
677         break;
678       }
679       
680       // The common case here is that we have exactly one chain, which is really
681       // cheap to handle, just do it.
682       if (NumChains == 1) {
683         InputChain = RecordedNodes[RecNo].getOperand(0);
684         assert(InputChain.getValueType() == MVT::Other && "Not a chain");
685         continue;
686       }
687       
688       // Read all of the chained nodes.
689       for (unsigned i = 1; i != NumChains; ++i) {
690         RecNo = MatcherTable[MatcherIndex++];
691         assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
692         ChainNodesMatched.push_back(RecordedNodes[RecNo].getNode());
693         
694         // FIXME: What if other value results of the node have uses not matched by
695         // this pattern?
696         if (ChainNodesMatched.back() != NodeToMatch &&
697             !RecordedNodes[RecNo].hasOneUse()) {
698           ChainNodesMatched.clear();
699           break;
700         }
701       }
702
703       // Walk all the chained nodes, adding the input chains if they are not in
704       // ChainedNodes (and this, not in the matched pattern).  This is an N^2
705       // algorithm, but # chains is usually 2 here, at most 3 for MSP430.
706       SmallVector<SDValue, 3> InputChains;
707       for (unsigned i = 0, e = ChainNodesMatched.size(); i != e; ++i) {
708         SDValue InChain = ChainNodesMatched[i]->getOperand(0);
709         assert(InChain.getValueType() == MVT::Other && "Not a chain");
710         bool Invalid = false;
711         for (unsigned j = 0; j != e; ++j)
712           Invalid |= ChainNodesMatched[j] == InChain.getNode();
713         if (!Invalid)
714           InputChains.push_back(InChain);
715       }
716
717       SDValue Res;
718       if (InputChains.size() == 1)
719         InputChain = InputChains[0];
720       else
721         InputChain = CurDAG->getNode(ISD::TokenFactor,
722                                      NodeToMatch->getDebugLoc(), MVT::Other,
723                                      &InputChains[0], InputChains.size());
724       continue;
725     }
726         
727     case OPC_EmitCopyToReg: {
728       unsigned RecNo = MatcherTable[MatcherIndex++];
729       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
730       unsigned DestPhysReg = MatcherTable[MatcherIndex++];
731       
732       if (InputChain.getNode() == 0)
733         InputChain = CurDAG->getEntryNode();
734       
735       InputChain = CurDAG->getCopyToReg(InputChain, NodeToMatch->getDebugLoc(),
736                                         DestPhysReg, RecordedNodes[RecNo],
737                                         InputFlag);
738       
739       InputFlag = InputChain.getValue(1);
740       continue;
741     }
742         
743     case OPC_EmitNodeXForm: {
744       unsigned XFormNo = MatcherTable[MatcherIndex++];
745       unsigned RecNo = MatcherTable[MatcherIndex++];
746       assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
747       RecordedNodes.push_back(RunSDNodeXForm(RecordedNodes[RecNo], XFormNo));
748       continue;
749     }
750         
751     case OPC_EmitNode: {
752       uint16_t TargetOpc = GetInt2(MatcherTable, MatcherIndex);
753       unsigned EmitNodeInfo = MatcherTable[MatcherIndex++];
754       // Get the result VT list.
755       unsigned NumVTs = MatcherTable[MatcherIndex++];
756       assert(NumVTs != 0 && "Invalid node result");
757       SmallVector<EVT, 4> VTs;
758       for (unsigned i = 0; i != NumVTs; ++i) {
759         MVT::SimpleValueType VT =
760           (MVT::SimpleValueType)MatcherTable[MatcherIndex++];
761         if (VT == MVT::iPTR) VT = TLI.getPointerTy().SimpleTy;
762         VTs.push_back(VT);
763       }
764       
765       // FIXME: Use faster version for the common 'one VT' case?
766       SDVTList VTList = CurDAG->getVTList(VTs.data(), VTs.size());
767
768       // Get the operand list.
769       unsigned NumOps = MatcherTable[MatcherIndex++];
770       SmallVector<SDValue, 8> Ops;
771       for (unsigned i = 0; i != NumOps; ++i) {
772         unsigned RecNo = MatcherTable[MatcherIndex++];
773         if (RecNo & 128)
774           RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex);
775         
776         assert(RecNo < RecordedNodes.size() && "Invalid EmitNode");
777         Ops.push_back(RecordedNodes[RecNo]);
778       }
779       
780       // If there are variadic operands to add, handle them now.
781       if (EmitNodeInfo & OPFL_VariadicInfo) {
782         // Determine the start index to copy from.
783         unsigned FirstOpToCopy = getNumFixedFromVariadicInfo(EmitNodeInfo);
784         FirstOpToCopy += (EmitNodeInfo & OPFL_Chain) ? 1 : 0;
785         assert(NodeToMatch->getNumOperands() >= FirstOpToCopy &&
786                "Invalid variadic node");
787         // Copy all of the variadic operands, not including a potential flag
788         // input.
789         for (unsigned i = FirstOpToCopy, e = NodeToMatch->getNumOperands();
790              i != e; ++i) {
791           SDValue V = NodeToMatch->getOperand(i);
792           if (V.getValueType() == MVT::Flag) break;
793           Ops.push_back(V);
794         }
795       }
796       
797       // If this has chain/flag inputs, add them.
798       if (EmitNodeInfo & OPFL_Chain)
799         Ops.push_back(InputChain);
800       if ((EmitNodeInfo & OPFL_Flag) && InputFlag.getNode() != 0)
801         Ops.push_back(InputFlag);
802       
803       // Create the node.
804       MachineSDNode *Res = CurDAG->getMachineNode(TargetOpc,
805                                                   NodeToMatch->getDebugLoc(),
806                                                   VTList,
807                                                   Ops.data(), Ops.size());
808       // Add all the non-flag/non-chain results to the RecordedNodes list.
809       for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
810         if (VTs[i] == MVT::Other || VTs[i] == MVT::Flag) break;
811         RecordedNodes.push_back(SDValue(Res, i));
812       }
813       
814       // If the node had chain/flag results, update our notion of the current
815       // chain and flag.
816       if (VTs.back() == MVT::Flag) {
817         InputFlag = SDValue(Res, VTs.size()-1);
818         if (EmitNodeInfo & OPFL_Chain)
819           InputChain = SDValue(Res, VTs.size()-2);
820       } else if (EmitNodeInfo & OPFL_Chain)
821         InputChain = SDValue(Res, VTs.size()-1);
822
823       // If the OPFL_MemRefs flag is set on this node, slap all of the
824       // accumulated memrefs onto it.
825       //
826       // FIXME: This is vastly incorrect for patterns with multiple outputs
827       // instructions that access memory and for ComplexPatterns that match
828       // loads.
829       if (EmitNodeInfo & OPFL_MemRefs) {
830         MachineSDNode::mmo_iterator MemRefs =
831           MF->allocateMemRefsArray(MatchedMemRefs.size());
832         std::copy(MatchedMemRefs.begin(), MatchedMemRefs.end(), MemRefs);
833         Res->setMemRefs(MemRefs, MemRefs + MatchedMemRefs.size());
834       }
835       
836       DEBUG(errs() << "  Created node: "; Res->dump(CurDAG); errs() << "\n");
837       continue;
838     }
839         
840     case OPC_MarkFlagResults: {
841       unsigned NumNodes = MatcherTable[MatcherIndex++];
842       
843       // Read and remember all the flag-result nodes.
844       for (unsigned i = 0; i != NumNodes; ++i) {
845         unsigned RecNo = MatcherTable[MatcherIndex++];
846         if (RecNo & 128)
847           RecNo = GetVBR(RecNo, MatcherTable, MatcherIndex);
848
849         assert(RecNo < RecordedNodes.size() && "Invalid CheckSame");
850         FlagResultNodesMatched.push_back(RecordedNodes[RecNo].getNode());
851       }
852       continue;
853     }
854       
855     case OPC_CompleteMatch: {
856       // The match has been completed, and any new nodes (if any) have been
857       // created.  Patch up references to the matched dag to use the newly
858       // created nodes.
859       unsigned NumResults = MatcherTable[MatcherIndex++];
860
861       for (unsigned i = 0; i != NumResults; ++i) {
862         unsigned ResSlot = MatcherTable[MatcherIndex++];
863         if (ResSlot & 128)
864           ResSlot = GetVBR(ResSlot, MatcherTable, MatcherIndex);
865         
866         assert(ResSlot < RecordedNodes.size() && "Invalid CheckSame");
867         SDValue Res = RecordedNodes[ResSlot];
868         
869         // FIXME2: Eliminate this horrible hack by fixing the 'Gen' program
870         // after (parallel) on input patterns are removed.  This would also
871         // allow us to stop encoding #results in OPC_CompleteMatch's table
872         // entry.
873         if (NodeToMatch->getNumValues() <= i ||
874             NodeToMatch->getValueType(i) == MVT::Other ||
875             NodeToMatch->getValueType(i) == MVT::Flag)
876           break;
877         assert((NodeToMatch->getValueType(i) == Res.getValueType() ||
878                 NodeToMatch->getValueType(i) == MVT::iPTR ||
879                 Res.getValueType() == MVT::iPTR ||
880                 NodeToMatch->getValueType(i).getSizeInBits() ==
881                     Res.getValueType().getSizeInBits()) &&
882                "invalid replacement");
883         ReplaceUses(SDValue(NodeToMatch, i), Res);
884       }
885       
886       // Now that all the normal results are replaced, we replace the chain and
887       // flag results if present.
888       if (!ChainNodesMatched.empty()) {
889         assert(InputChain.getNode() != 0 &&
890                "Matched input chains but didn't produce a chain");
891         // Loop over all of the nodes we matched that produced a chain result.
892         // Replace all the chain results with the final chain we ended up with.
893         for (unsigned i = 0, e = ChainNodesMatched.size(); i != e; ++i) {
894           SDNode *ChainNode = ChainNodesMatched[i];
895           SDValue ChainVal = SDValue(ChainNode, ChainNode->getNumValues()-1);
896           if (ChainVal.getValueType() == MVT::Flag)
897             ChainVal = ChainVal.getValue(ChainVal->getNumValues()-2);
898           assert(ChainVal.getValueType() == MVT::Other && "Not a chain?");
899           ReplaceUses(ChainVal, InputChain);
900         }
901       }
902
903       // If the result produces a flag, update any flag results in the matched
904       // pattern with the flag result.
905       if (InputFlag.getNode() != 0) {
906         // Handle the root node:
907         if (NodeToMatch->getValueType(NodeToMatch->getNumValues()-1) ==
908               MVT::Flag)
909           ReplaceUses(SDValue(NodeToMatch, NodeToMatch->getNumValues()-1),
910                       InputFlag);
911         
912         // Handle any interior nodes explicitly marked.
913         for (unsigned i = 0, e = FlagResultNodesMatched.size(); i != e; ++i) {
914           SDNode *FRN = FlagResultNodesMatched[i];
915           assert(FRN->getValueType(FRN->getNumValues()-1) == MVT::Flag &&
916                  "Doesn't have a flag result");
917           ReplaceUses(SDValue(FRN, FRN->getNumValues()-1), InputFlag);
918         }
919       }
920       
921       assert(NodeToMatch->use_empty() &&
922              "Didn't replace all uses of the node?");
923       
924       DEBUG(errs() << "ISEL: Match complete!\n");
925       
926       // FIXME: We just return here, which interacts correctly with SelectRoot
927       // above.  We should fix this to not return an SDNode* anymore.
928       return 0;
929     }
930     }
931     
932     // If the code reached this point, then the match failed pop out to the next
933     // match scope.
934     if (MatchScopes.empty()) {
935       CannotYetSelect(NodeToMatch);
936       return 0;
937     }
938     
939     const MatchScope &LastScope = MatchScopes.back();
940     RecordedNodes.resize(LastScope.NumRecordedNodes);
941     NodeStack.resize(LastScope.NodeStackSize);
942     N = NodeStack.back();
943
944     DEBUG(errs() << "  Match failed at index " << MatcherIndex
945                  << " continuing at " << LastScope.FailIndex << "\n");
946     
947     if (LastScope.NumMatchedMemRefs != MatchedMemRefs.size())
948       MatchedMemRefs.resize(LastScope.NumMatchedMemRefs);
949     MatcherIndex = LastScope.FailIndex;
950     
951     InputChain = LastScope.InputChain;
952     InputFlag = LastScope.InputFlag;
953     if (!LastScope.HasChainNodesMatched)
954       ChainNodesMatched.clear();
955     if (!LastScope.HasFlagResultNodesMatched)
956       FlagResultNodesMatched.clear();
957
958     MatchScopes.pop_back();
959   }
960 }
961     
962
963 #endif /* LLVM_CODEGEN_DAGISEL_HEADER_H */