blob: 22f6c7c0741bea4da53edc49f01fb6e6e0381a50 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000017#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000018#include "llvm/Target/TargetData.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000019#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000020#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000021#include "llvm/Constants.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000022#include "llvm/Support/MathExtras.h"
23#include "llvm/Support/CommandLine.h"
Chris Lattner360e8202006-06-28 21:58:30 +000024#include "llvm/Support/Visibility.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000025#include "llvm/ADT/SmallVector.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000026#include <iostream>
Evan Cheng033e6812006-03-24 01:17:21 +000027#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000028using namespace llvm;
29
Chris Lattner5e46a192006-04-02 03:07:27 +000030#ifndef NDEBUG
31static cl::opt<bool>
32ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
33 cl::desc("Pop up a window to show dags before legalize"));
34#else
35static const bool ViewLegalizeDAGs = 0;
36#endif
37
Chris Lattner3e928bb2005-01-07 07:47:09 +000038//===----------------------------------------------------------------------===//
39/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
40/// hacks on it until the target machine can handle it. This involves
41/// eliminating value sizes the machine cannot handle (promoting small sizes to
42/// large sizes or splitting up large values into small values) as well as
43/// eliminating operations the machine cannot handle.
44///
45/// This code also does a small amount of optimization and recognition of idioms
46/// as part of its processing. For example, if a target does not support a
47/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
48/// will attempt merge setcc and brc instructions into brcc's.
49///
50namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000051class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000052 TargetLowering &TLI;
53 SelectionDAG &DAG;
54
Chris Lattner6831a812006-02-13 09:18:02 +000055 // Libcall insertion helpers.
56
57 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
58 /// legalized. We use this to ensure that calls are properly serialized
59 /// against each other, including inserted libcalls.
60 SDOperand LastCALLSEQ_END;
61
62 /// IsLegalizingCall - This member is used *only* for purposes of providing
63 /// helpful assertions that a libcall isn't created while another call is
64 /// being legalized (which could lead to non-serialized call sequences).
65 bool IsLegalizingCall;
66
Chris Lattner3e928bb2005-01-07 07:47:09 +000067 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000068 Legal, // The target natively supports this operation.
69 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000070 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000071 };
Chris Lattner6831a812006-02-13 09:18:02 +000072
Chris Lattner3e928bb2005-01-07 07:47:09 +000073 /// ValueTypeActions - This is a bitvector that contains two bits for each
74 /// value type, where the two bits correspond to the LegalizeAction enum.
75 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000076 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000077
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 /// LegalizedNodes - For nodes that are of legal width, and that have more
79 /// than one use, this map indicates what regularized operand to use. This
80 /// allows us to avoid legalizing the same thing more than once.
81 std::map<SDOperand, SDOperand> LegalizedNodes;
82
Chris Lattner03c85462005-01-15 05:21:40 +000083 /// PromotedNodes - For nodes that are below legal width, and that have more
84 /// than one use, this map indicates what promoted value to use. This allows
85 /// us to avoid promoting the same thing more than once.
86 std::map<SDOperand, SDOperand> PromotedNodes;
87
Chris Lattnerc7029802006-03-18 01:44:44 +000088 /// ExpandedNodes - For nodes that need to be expanded this map indicates
89 /// which which operands are the expanded version of the input. This allows
90 /// us to avoid expanding the same node more than once.
Chris Lattner3e928bb2005-01-07 07:47:09 +000091 std::map<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
92
Chris Lattnerc7029802006-03-18 01:44:44 +000093 /// SplitNodes - For vector nodes that need to be split, this map indicates
94 /// which which operands are the split version of the input. This allows us
95 /// to avoid splitting the same node more than once.
96 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
97
98 /// PackedNodes - For nodes that need to be packed from MVT::Vector types to
99 /// concrete packed types, this contains the mapping of ones we have already
100 /// processed to the result.
101 std::map<SDOperand, SDOperand> PackedNodes;
102
Chris Lattner8afc48e2005-01-07 22:28:47 +0000103 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000104 LegalizedNodes.insert(std::make_pair(From, To));
105 // If someone requests legalization of the new node, return itself.
106 if (From != To)
107 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000108 }
Chris Lattner03c85462005-01-15 05:21:40 +0000109 void AddPromotedOperand(SDOperand From, SDOperand To) {
110 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
111 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000112 // If someone requests legalization of the new node, return itself.
113 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000114 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000115
Chris Lattner3e928bb2005-01-07 07:47:09 +0000116public:
117
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000118 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000119
Chris Lattner3e928bb2005-01-07 07:47:09 +0000120 /// getTypeAction - Return how we should legalize values of this type, either
121 /// it is already legal or we need to expand it into multiple registers of
122 /// smaller integer type, or we need to promote it to a larger type.
123 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000124 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000125 }
126
127 /// isTypeLegal - Return true if this type is legal on this target.
128 ///
129 bool isTypeLegal(MVT::ValueType VT) const {
130 return getTypeAction(VT) == Legal;
131 }
132
Chris Lattner3e928bb2005-01-07 07:47:09 +0000133 void LegalizeDAG();
134
Chris Lattner456a93a2006-01-28 07:39:30 +0000135private:
Chris Lattnerc7029802006-03-18 01:44:44 +0000136 /// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
137 /// appropriate for its type.
138 void HandleOp(SDOperand Op);
139
140 /// LegalizeOp - We know that the specified value has a legal type.
141 /// Recursively ensure that the operands have legal types, then return the
142 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000143 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000144
145 /// PromoteOp - Given an operation that produces a value in an invalid type,
146 /// promote it to compute the value into a larger type. The produced value
147 /// will have the correct bits for the low portion of the register, but no
148 /// guarantee is made about the top bits: it may be zero, sign-extended, or
149 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000150 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000151
Chris Lattnerc7029802006-03-18 01:44:44 +0000152 /// ExpandOp - Expand the specified SDOperand into its two component pieces
153 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
154 /// the LegalizeNodes map is filled in for any results that are not expanded,
155 /// the ExpandedNodes map is filled in for any results that are expanded, and
156 /// the Lo/Hi values are returned. This applies to integer types and Vector
157 /// types.
158 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
159
160 /// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
161 /// two smaller values of MVT::Vector type.
162 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
163
164 /// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
165 /// equivalent operation that returns a packed value (e.g. MVT::V4F32). When
166 /// this is called, we know that PackedVT is the right type for the result and
167 /// we know that this type is legal for the target.
168 SDOperand PackVectorOp(SDOperand O, MVT::ValueType PackedVT);
169
Chris Lattner4352cc92006-04-04 17:23:26 +0000170 /// isShuffleLegal - Return true if a vector shuffle is legal with the
171 /// specified mask and type. Targets can specify exactly which masks they
172 /// support and the code generator is tasked with not creating illegal masks.
173 ///
174 /// Note that this will also return true for shuffles that are promoted to a
175 /// different type.
176 ///
177 /// If this is a legal shuffle, this method returns the (possibly promoted)
178 /// build_vector Mask. If it's not a legal shuffle, it returns null.
179 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
180
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000181 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
182 std::set<SDNode*> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000183
Nate Begeman750ac1b2006-02-01 07:19:44 +0000184 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
185
Chris Lattnerce872152006-03-19 06:31:19 +0000186 SDOperand CreateStackTemporary(MVT::ValueType VT);
187
Chris Lattner77e77a62005-01-21 06:05:23 +0000188 SDOperand ExpandLibCall(const char *Name, SDNode *Node,
189 SDOperand &Hi);
190 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
191 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000192
Chris Lattner35481892005-12-23 00:16:34 +0000193 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000194 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000195 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000196 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
197 SDOperand LegalOp,
198 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000199 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
200 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000201 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
202 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000203
Chris Lattner456a93a2006-01-28 07:39:30 +0000204 SDOperand ExpandBSWAP(SDOperand Op);
205 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000206 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
207 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000208 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
209 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000210
Chris Lattner15972212006-03-31 17:55:51 +0000211 SDOperand LowerVEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000212 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000213
Chris Lattner3e928bb2005-01-07 07:47:09 +0000214 SDOperand getIntPtrConstant(uint64_t Val) {
215 return DAG.getConstant(Val, TLI.getPointerTy());
216 }
217};
218}
219
Chris Lattner4352cc92006-04-04 17:23:26 +0000220/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
221/// specified mask and type. Targets can specify exactly which masks they
222/// support and the code generator is tasked with not creating illegal masks.
223///
224/// Note that this will also return true for shuffles that are promoted to a
225/// different type.
226SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
227 SDOperand Mask) const {
228 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
229 default: return 0;
230 case TargetLowering::Legal:
231 case TargetLowering::Custom:
232 break;
233 case TargetLowering::Promote: {
234 // If this is promoted to a different type, convert the shuffle mask and
235 // ask if it is legal in the promoted type!
236 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
237
238 // If we changed # elements, change the shuffle mask.
239 unsigned NumEltsGrowth =
240 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
241 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
242 if (NumEltsGrowth > 1) {
243 // Renumber the elements.
244 std::vector<SDOperand> Ops;
245 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
246 SDOperand InOp = Mask.getOperand(i);
247 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
248 if (InOp.getOpcode() == ISD::UNDEF)
249 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
250 else {
251 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
252 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
253 }
254 }
255 }
256 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, Ops);
257 }
258 VT = NVT;
259 break;
260 }
261 }
262 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
263}
264
Chris Lattnerc7029802006-03-18 01:44:44 +0000265/// getScalarizedOpcode - Return the scalar opcode that corresponds to the
266/// specified vector opcode.
Chris Lattnerb89175f2005-11-19 05:51:46 +0000267static unsigned getScalarizedOpcode(unsigned VecOp, MVT::ValueType VT) {
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000268 switch (VecOp) {
269 default: assert(0 && "Don't know how to scalarize this opcode!");
Evan Cheng3e1ce5a2006-03-03 07:01:07 +0000270 case ISD::VADD: return MVT::isInteger(VT) ? ISD::ADD : ISD::FADD;
271 case ISD::VSUB: return MVT::isInteger(VT) ? ISD::SUB : ISD::FSUB;
272 case ISD::VMUL: return MVT::isInteger(VT) ? ISD::MUL : ISD::FMUL;
273 case ISD::VSDIV: return MVT::isInteger(VT) ? ISD::SDIV: ISD::FDIV;
274 case ISD::VUDIV: return MVT::isInteger(VT) ? ISD::UDIV: ISD::FDIV;
275 case ISD::VAND: return MVT::isInteger(VT) ? ISD::AND : 0;
276 case ISD::VOR: return MVT::isInteger(VT) ? ISD::OR : 0;
277 case ISD::VXOR: return MVT::isInteger(VT) ? ISD::XOR : 0;
Nate Begeman5fbb5d22005-11-19 00:36:38 +0000278 }
279}
Chris Lattner3e928bb2005-01-07 07:47:09 +0000280
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000281SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
282 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
283 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000284 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000285 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000286}
287
Chris Lattner32fca002005-10-06 01:20:27 +0000288/// ComputeTopDownOrdering - Add the specified node to the Order list if it has
289/// not been visited yet and if all of its operands have already been visited.
290static void ComputeTopDownOrdering(SDNode *N, std::vector<SDNode*> &Order,
291 std::map<SDNode*, unsigned> &Visited) {
292 if (++Visited[N] != N->getNumOperands())
293 return; // Haven't visited all operands yet
294
295 Order.push_back(N);
296
297 if (N->hasOneUse()) { // Tail recurse in common case.
298 ComputeTopDownOrdering(*N->use_begin(), Order, Visited);
299 return;
300 }
301
302 // Now that we have N in, add anything that uses it if all of their operands
303 // are now done.
Chris Lattner32fca002005-10-06 01:20:27 +0000304 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end(); UI != E;++UI)
305 ComputeTopDownOrdering(*UI, Order, Visited);
306}
307
Chris Lattner1618beb2005-07-29 00:11:56 +0000308
Chris Lattner3e928bb2005-01-07 07:47:09 +0000309void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000310 LastCALLSEQ_END = DAG.getEntryNode();
311 IsLegalizingCall = false;
312
Chris Lattnerab510a72005-10-02 17:49:46 +0000313 // The legalize process is inherently a bottom-up recursive process (users
314 // legalize their uses before themselves). Given infinite stack space, we
315 // could just start legalizing on the root and traverse the whole graph. In
316 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000317 // blocks. To avoid this problem, compute an ordering of the nodes where each
318 // node is only legalized after all of its operands are legalized.
319 std::map<SDNode*, unsigned> Visited;
320 std::vector<SDNode*> Order;
Chris Lattnerab510a72005-10-02 17:49:46 +0000321
Chris Lattner32fca002005-10-06 01:20:27 +0000322 // Compute ordering from all of the leaves in the graphs, those (like the
323 // entry node) that have no operands.
324 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
325 E = DAG.allnodes_end(); I != E; ++I) {
Chris Lattnerde202b32005-11-09 23:47:37 +0000326 if (I->getNumOperands() == 0) {
327 Visited[I] = 0 - 1U;
328 ComputeTopDownOrdering(I, Order, Visited);
Chris Lattnerab510a72005-10-02 17:49:46 +0000329 }
Chris Lattnerab510a72005-10-02 17:49:46 +0000330 }
331
Chris Lattnerde202b32005-11-09 23:47:37 +0000332 assert(Order.size() == Visited.size() &&
333 Order.size() ==
334 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
Chris Lattner32fca002005-10-06 01:20:27 +0000335 "Error: DAG is cyclic!");
336 Visited.clear();
Chris Lattnerab510a72005-10-02 17:49:46 +0000337
Chris Lattnerc7029802006-03-18 01:44:44 +0000338 for (unsigned i = 0, e = Order.size(); i != e; ++i)
339 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000340
341 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000342 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000343 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
344 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000345
346 ExpandedNodes.clear();
347 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000348 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000349 SplitNodes.clear();
350 PackedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000351
352 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000353 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000354}
355
Chris Lattner6831a812006-02-13 09:18:02 +0000356
357/// FindCallEndFromCallStart - Given a chained node that is part of a call
358/// sequence, find the CALLSEQ_END node that terminates the call sequence.
359static SDNode *FindCallEndFromCallStart(SDNode *Node) {
360 if (Node->getOpcode() == ISD::CALLSEQ_END)
361 return Node;
362 if (Node->use_empty())
363 return 0; // No CallSeqEnd
364
365 // The chain is usually at the end.
366 SDOperand TheChain(Node, Node->getNumValues()-1);
367 if (TheChain.getValueType() != MVT::Other) {
368 // Sometimes it's at the beginning.
369 TheChain = SDOperand(Node, 0);
370 if (TheChain.getValueType() != MVT::Other) {
371 // Otherwise, hunt for it.
372 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
373 if (Node->getValueType(i) == MVT::Other) {
374 TheChain = SDOperand(Node, i);
375 break;
376 }
377
378 // Otherwise, we walked into a node without a chain.
379 if (TheChain.getValueType() != MVT::Other)
380 return 0;
381 }
382 }
383
384 for (SDNode::use_iterator UI = Node->use_begin(),
385 E = Node->use_end(); UI != E; ++UI) {
386
387 // Make sure to only follow users of our token chain.
388 SDNode *User = *UI;
389 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
390 if (User->getOperand(i) == TheChain)
391 if (SDNode *Result = FindCallEndFromCallStart(User))
392 return Result;
393 }
394 return 0;
395}
396
397/// FindCallStartFromCallEnd - Given a chained node that is part of a call
398/// sequence, find the CALLSEQ_START node that initiates the call sequence.
399static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
400 assert(Node && "Didn't find callseq_start for a call??");
401 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
402
403 assert(Node->getOperand(0).getValueType() == MVT::Other &&
404 "Node doesn't have a token chain argument!");
405 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
406}
407
408/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
409/// see if any uses can reach Dest. If no dest operands can get to dest,
410/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000411///
412/// Keep track of the nodes we fine that actually do lead to Dest in
413/// NodesLeadingTo. This avoids retraversing them exponential number of times.
414///
415bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
416 std::set<SDNode*> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000417 if (N == Dest) return true; // N certainly leads to Dest :)
418
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000419 // If we've already processed this node and it does lead to Dest, there is no
420 // need to reprocess it.
421 if (NodesLeadingTo.count(N)) return true;
422
Chris Lattner6831a812006-02-13 09:18:02 +0000423 // If the first result of this node has been already legalized, then it cannot
424 // reach N.
425 switch (getTypeAction(N->getValueType(0))) {
426 case Legal:
427 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
428 break;
429 case Promote:
430 if (PromotedNodes.count(SDOperand(N, 0))) return false;
431 break;
432 case Expand:
433 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
434 break;
435 }
436
437 // Okay, this node has not already been legalized. Check and legalize all
438 // operands. If none lead to Dest, then we can legalize this node.
439 bool OperandsLeadToDest = false;
440 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
441 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000442 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000443
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000444 if (OperandsLeadToDest) {
445 NodesLeadingTo.insert(N);
446 return true;
447 }
Chris Lattner6831a812006-02-13 09:18:02 +0000448
449 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000450 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000451 return false;
452}
453
Chris Lattnerc7029802006-03-18 01:44:44 +0000454/// HandleOp - Legalize, Promote, Expand or Pack the specified operand as
455/// appropriate for its type.
456void SelectionDAGLegalize::HandleOp(SDOperand Op) {
457 switch (getTypeAction(Op.getValueType())) {
458 default: assert(0 && "Bad type action!");
459 case Legal: LegalizeOp(Op); break;
460 case Promote: PromoteOp(Op); break;
461 case Expand:
462 if (Op.getValueType() != MVT::Vector) {
463 SDOperand X, Y;
464 ExpandOp(Op, X, Y);
465 } else {
466 SDNode *N = Op.Val;
467 unsigned NumOps = N->getNumOperands();
468 unsigned NumElements =
469 cast<ConstantSDNode>(N->getOperand(NumOps-2))->getValue();
470 MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(NumOps-1))->getVT();
471 MVT::ValueType PackedVT = getVectorType(EVT, NumElements);
472 if (PackedVT != MVT::Other && TLI.isTypeLegal(PackedVT)) {
473 // In the common case, this is a legal vector type, convert it to the
474 // packed operation and type now.
475 PackVectorOp(Op, PackedVT);
476 } else if (NumElements == 1) {
477 // Otherwise, if this is a single element vector, convert it to a
478 // scalar operation.
479 PackVectorOp(Op, EVT);
480 } else {
481 // Otherwise, this is a multiple element vector that isn't supported.
482 // Split it in half and legalize both parts.
483 SDOperand X, Y;
Chris Lattner4794a6b2006-03-19 00:07:49 +0000484 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000485 }
486 }
487 break;
488 }
489}
Chris Lattner6831a812006-02-13 09:18:02 +0000490
491
Chris Lattnerc7029802006-03-18 01:44:44 +0000492/// LegalizeOp - We know that the specified value has a legal type.
493/// Recursively ensure that the operands have legal types, then return the
494/// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000495SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000496 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000497 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000498 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000499
Chris Lattner3e928bb2005-01-07 07:47:09 +0000500 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000501 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000502 if (Node->getNumValues() > 1) {
503 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000504 if (getTypeAction(Node->getValueType(i)) != Legal) {
505 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000506 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000507 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000508 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000509 }
510 }
511
Chris Lattner45982da2005-05-12 16:53:42 +0000512 // Note that LegalizeOp may be reentered even from single-use nodes, which
513 // means that we always must cache transformed nodes.
Chris Lattnere1bd8222005-01-11 05:57:22 +0000514 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
515 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000516
Nate Begeman9373a812005-08-10 20:51:12 +0000517 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000518 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000519 bool isCustom = false;
520
Chris Lattner3e928bb2005-01-07 07:47:09 +0000521 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000522 case ISD::FrameIndex:
523 case ISD::EntryToken:
524 case ISD::Register:
525 case ISD::BasicBlock:
526 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000527 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000528 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000529 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000530 case ISD::TargetConstantPool:
531 case ISD::TargetGlobalAddress:
532 case ISD::TargetExternalSymbol:
533 case ISD::VALUETYPE:
534 case ISD::SRCVALUE:
535 case ISD::STRING:
536 case ISD::CONDCODE:
537 // Primitives must all be legal.
538 assert(TLI.isOperationLegal(Node->getValueType(0), Node->getValueType(0)) &&
539 "This must be legal!");
540 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000541 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000542 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
543 // If this is a target node, legalize it by legalizing the operands then
544 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000545 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000546 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000547 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000548
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000549 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000550
551 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
552 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
553 return Result.getValue(Op.ResNo);
554 }
555 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000556#ifndef NDEBUG
Chris Lattner3e928bb2005-01-07 07:47:09 +0000557 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000558#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000559 assert(0 && "Do not know how to legalize this operator!");
560 abort();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000561 case ISD::GlobalAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000562 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000563 case ISD::ConstantPool:
564 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000565 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
566 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000567 case TargetLowering::Custom:
568 Tmp1 = TLI.LowerOperation(Op, DAG);
569 if (Tmp1.Val) Result = Tmp1;
570 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000571 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000572 break;
573 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000574 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000575 case ISD::AssertSext:
576 case ISD::AssertZext:
577 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000578 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000579 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000580 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000581 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000582 Result = Node->getOperand(Op.ResNo);
583 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000584 case ISD::CopyFromReg:
585 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000586 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000587 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000588 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000589 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000590 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000591 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000592 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000593 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
594 } else {
595 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
596 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000597 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
598 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000599 // Since CopyFromReg produces two values, make sure to remember that we
600 // legalized both of them.
601 AddLegalizedOperand(Op.getValue(0), Result);
602 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
603 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000604 case ISD::UNDEF: {
605 MVT::ValueType VT = Op.getValueType();
606 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000607 default: assert(0 && "This action is not supported yet!");
608 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000609 if (MVT::isInteger(VT))
610 Result = DAG.getConstant(0, VT);
611 else if (MVT::isFloatingPoint(VT))
612 Result = DAG.getConstantFP(0, VT);
613 else
614 assert(0 && "Unknown value type!");
615 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000616 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000617 break;
618 }
619 break;
620 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000621
Chris Lattner48b61a72006-03-28 00:40:33 +0000622 case ISD::INTRINSIC_W_CHAIN:
623 case ISD::INTRINSIC_WO_CHAIN:
624 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000625 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000626 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
627 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000628 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000629
630 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000631 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000632 TargetLowering::Custom) {
633 Tmp3 = TLI.LowerOperation(Result, DAG);
634 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000635 }
636
637 if (Result.Val->getNumValues() == 1) break;
638
639 // Must have return value and chain result.
640 assert(Result.Val->getNumValues() == 2 &&
641 "Cannot return more than two values!");
642
643 // Since loads produce two values, make sure to remember that we
644 // legalized both of them.
645 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
646 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
647 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000648 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000649
650 case ISD::LOCATION:
651 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
652 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
653
654 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
655 case TargetLowering::Promote:
656 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000657 case TargetLowering::Expand: {
Jim Laskeyb2efb852006-01-04 22:28:25 +0000658 MachineDebugInfo *DebugInfo = DAG.getMachineDebugInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000659 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
660 bool useDEBUG_LABEL = TLI.isOperationLegal(ISD::DEBUG_LABEL, MVT::Other);
661
662 if (DebugInfo && (useDEBUG_LOC || useDEBUG_LABEL)) {
663 const std::string &FName =
664 cast<StringSDNode>(Node->getOperand(3))->getValue();
665 const std::string &DirName =
666 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey063e7652006-01-17 17:31:53 +0000667 unsigned SrcFile = DebugInfo->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000668
Jim Laskeye81aecb2005-12-21 20:51:37 +0000669 std::vector<SDOperand> Ops;
670 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +0000671 SDOperand LineOp = Node->getOperand(1);
672 SDOperand ColOp = Node->getOperand(2);
673
674 if (useDEBUG_LOC) {
675 Ops.push_back(LineOp); // line #
676 Ops.push_back(ColOp); // col #
677 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
678 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops);
679 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +0000680 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
681 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000682 unsigned ID = DebugInfo->RecordLabel(Line, Col, SrcFile);
683 Ops.push_back(DAG.getConstant(ID, MVT::i32));
684 Result = DAG.getNode(ISD::DEBUG_LABEL, MVT::Other, Ops);
685 }
Jim Laskeye81aecb2005-12-21 20:51:37 +0000686 } else {
687 Result = Tmp1; // chain
688 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000689 break;
Chris Lattnere7736732005-12-18 23:54:29 +0000690 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000691 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +0000692 if (Tmp1 != Node->getOperand(0) ||
693 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000694 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +0000695 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +0000696 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
697 Ops.push_back(Node->getOperand(1)); // line # must be legal.
698 Ops.push_back(Node->getOperand(2)); // col # must be legal.
699 } else {
700 // Otherwise promote them.
701 Ops.push_back(PromoteOp(Node->getOperand(1)));
702 Ops.push_back(PromoteOp(Node->getOperand(2)));
703 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000704 Ops.push_back(Node->getOperand(3)); // filename must be legal.
705 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000706 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +0000707 }
708 break;
709 }
710 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000711
712 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +0000713 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000714 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000715 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +0000716 case TargetLowering::Legal:
717 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
718 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
719 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
720 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000721 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000722 break;
723 }
724 break;
725
726 case ISD::DEBUG_LABEL:
727 assert(Node->getNumOperands() == 2 && "Invalid DEBUG_LABEL node!");
728 switch (TLI.getOperationAction(ISD::DEBUG_LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000729 default: assert(0 && "This action is not supported yet!");
730 case TargetLowering::Legal:
731 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
732 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000733 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000734 break;
735 }
Nate Begeman551bf3f2006-02-17 05:43:56 +0000736 break;
Chris Lattner36ce6912005-11-29 06:21:05 +0000737
Chris Lattner3e928bb2005-01-07 07:47:09 +0000738 case ISD::Constant:
739 // We know we don't need to expand constants here, constants only have one
740 // value and we check that it is fine above.
741
742 // FIXME: Maybe we should handle things like targets that don't support full
743 // 32-bit immediates?
744 break;
745 case ISD::ConstantFP: {
746 // Spill FP immediates to the constant pool if the target cannot directly
747 // codegen them. Targets often have some immediate values that can be
748 // efficiently generated into an FP register without a load. We explicitly
749 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000750 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
751
752 // Check to see if this FP immediate is already legal.
753 bool isLegal = false;
754 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
755 E = TLI.legal_fpimm_end(); I != E; ++I)
756 if (CFP->isExactlyValue(*I)) {
757 isLegal = true;
758 break;
759 }
760
Chris Lattner3181a772006-01-29 06:26:56 +0000761 // If this is a legal constant, turn it into a TargetConstantFP node.
762 if (isLegal) {
763 Result = DAG.getTargetConstantFP(CFP->getValue(), CFP->getValueType(0));
764 break;
765 }
766
767 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
768 default: assert(0 && "This action is not supported yet!");
769 case TargetLowering::Custom:
770 Tmp3 = TLI.LowerOperation(Result, DAG);
771 if (Tmp3.Val) {
772 Result = Tmp3;
773 break;
774 }
775 // FALLTHROUGH
776 case TargetLowering::Expand:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000777 // Otherwise we need to spill the constant to memory.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000778 bool Extend = false;
779
Chris Lattner456a93a2006-01-28 07:39:30 +0000780 // If a FP immediate is precise when represented as a float and if the
781 // target can do an extending load from float to double, we put it into
782 // the constant pool as a float, even if it's is statically typed as a
783 // double.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000784 MVT::ValueType VT = CFP->getValueType(0);
785 bool isDouble = VT == MVT::f64;
786 ConstantFP *LLVMC = ConstantFP::get(isDouble ? Type::DoubleTy :
787 Type::FloatTy, CFP->getValue());
Chris Lattner99939d32005-01-28 22:58:25 +0000788 if (isDouble && CFP->isExactlyValue((float)CFP->getValue()) &&
789 // Only do this if the target has a native EXTLOAD instruction from
790 // f32.
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000791 TLI.isOperationLegal(ISD::EXTLOAD, MVT::f32)) {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000792 LLVMC = cast<ConstantFP>(ConstantExpr::getCast(LLVMC, Type::FloatTy));
793 VT = MVT::f32;
794 Extend = true;
795 }
Misha Brukmanedf128a2005-04-21 22:36:52 +0000796
Chris Lattner456a93a2006-01-28 07:39:30 +0000797 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Chris Lattnerf8161d82005-01-16 05:06:12 +0000798 if (Extend) {
Chris Lattner5f056bf2005-07-10 01:55:33 +0000799 Result = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
800 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnerf8161d82005-01-16 05:06:12 +0000801 } else {
Chris Lattner52d08bd2005-05-09 20:23:03 +0000802 Result = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
803 DAG.getSrcValue(NULL));
Chris Lattnerf8161d82005-01-16 05:06:12 +0000804 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000805 }
806 break;
807 }
Chris Lattner040c11c2005-11-09 18:48:57 +0000808 case ISD::TokenFactor:
809 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000810 Tmp1 = LegalizeOp(Node->getOperand(0));
811 Tmp2 = LegalizeOp(Node->getOperand(1));
812 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
813 } else if (Node->getNumOperands() == 3) {
814 Tmp1 = LegalizeOp(Node->getOperand(0));
815 Tmp2 = LegalizeOp(Node->getOperand(1));
816 Tmp3 = LegalizeOp(Node->getOperand(2));
817 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +0000818 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000819 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +0000820 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000821 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
822 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000823 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +0000824 }
Chris Lattnera385e9b2005-01-13 17:59:25 +0000825 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000826
827 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000828 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +0000829 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +0000830 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
831 assert(Tmp3.Val && "Target didn't custom lower this node!");
832 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
833 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +0000834
Chris Lattnerf4ec8172006-05-16 22:53:20 +0000835 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +0000836 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +0000837 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
838 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +0000839 if (Op.ResNo == i)
840 Tmp2 = Tmp1;
841 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
842 }
843 return Tmp2;
Chris Lattnerfdfded52006-04-12 16:20:43 +0000844
Chris Lattnerb2827b02006-03-19 00:52:58 +0000845 case ISD::BUILD_VECTOR:
846 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +0000847 default: assert(0 && "This action is not supported yet!");
848 case TargetLowering::Custom:
849 Tmp3 = TLI.LowerOperation(Result, DAG);
850 if (Tmp3.Val) {
851 Result = Tmp3;
852 break;
853 }
854 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +0000855 case TargetLowering::Expand:
856 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +0000857 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +0000858 }
Chris Lattner2332b9f2006-03-19 01:17:20 +0000859 break;
860 case ISD::INSERT_VECTOR_ELT:
861 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
862 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
863 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
864 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
865
866 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
867 Node->getValueType(0))) {
868 default: assert(0 && "This action is not supported yet!");
869 case TargetLowering::Legal:
870 break;
871 case TargetLowering::Custom:
872 Tmp3 = TLI.LowerOperation(Result, DAG);
873 if (Tmp3.Val) {
874 Result = Tmp3;
875 break;
876 }
877 // FALLTHROUGH
878 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +0000879 // If the insert index is a constant, codegen this as a scalar_to_vector,
880 // then a shuffle that inserts it into the right position in the vector.
881 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
882 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
883 Tmp1.getValueType(), Tmp2);
884
885 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
886 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
887 MVT::ValueType ShufMaskEltVT = MVT::getVectorBaseType(ShufMaskVT);
888
889 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
890 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
891 // the RHS.
892 std::vector<SDOperand> ShufOps;
893 for (unsigned i = 0; i != NumElts; ++i) {
894 if (i != InsertPos->getValue())
895 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
896 else
897 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
898 }
899 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,ShufOps);
900
901 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
902 Tmp1, ScVec, ShufMask);
903 Result = LegalizeOp(Result);
904 break;
905 }
906
Chris Lattner2332b9f2006-03-19 01:17:20 +0000907 // If the target doesn't support this, we have to spill the input vector
908 // to a temporary stack slot, update the element, then reload it. This is
909 // badness. We could also load the value into a vector register (either
910 // with a "move to register" or "extload into register" instruction, then
911 // permute it into place, if the idx is a constant and if the idx is
912 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000913 MVT::ValueType VT = Tmp1.getValueType();
914 MVT::ValueType EltVT = Tmp2.getValueType();
915 MVT::ValueType IdxVT = Tmp3.getValueType();
916 MVT::ValueType PtrVT = TLI.getPointerTy();
917 SDOperand StackPtr = CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +0000918 // Store the vector.
919 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
920 Tmp1, StackPtr, DAG.getSrcValue(NULL));
921
922 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000923 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
924 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +0000925 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000926 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
927 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
928 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +0000929 // Store the scalar value.
930 Ch = DAG.getNode(ISD::STORE, MVT::Other, Ch,
931 Tmp2, StackPtr2, DAG.getSrcValue(NULL));
932 // Load the updated vector.
Evan Chengf6bf87f2006-04-08 01:46:37 +0000933 Result = DAG.getLoad(VT, Ch, StackPtr, DAG.getSrcValue(NULL));
Chris Lattner2332b9f2006-03-19 01:17:20 +0000934 break;
935 }
936 }
937 break;
Chris Lattnerce872152006-03-19 06:31:19 +0000938 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +0000939 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
940 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
941 break;
942 }
943
Chris Lattnerce872152006-03-19 06:31:19 +0000944 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
945 Result = DAG.UpdateNodeOperands(Result, Tmp1);
946 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
947 Node->getValueType(0))) {
948 default: assert(0 && "This action is not supported yet!");
949 case TargetLowering::Legal:
950 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +0000951 case TargetLowering::Custom:
952 Tmp3 = TLI.LowerOperation(Result, DAG);
953 if (Tmp3.Val) {
954 Result = Tmp3;
955 break;
956 }
957 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +0000958 case TargetLowering::Expand:
959 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +0000960 break;
961 }
Chris Lattnerce872152006-03-19 06:31:19 +0000962 break;
Chris Lattner87100e02006-03-20 01:52:29 +0000963 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +0000964 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
965 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
966 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
967
968 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +0000969 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
970 default: assert(0 && "Unknown operation action!");
971 case TargetLowering::Legal:
972 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
973 "vector shuffle should not be created if not legal!");
974 break;
975 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +0000976 Tmp3 = TLI.LowerOperation(Result, DAG);
977 if (Tmp3.Val) {
978 Result = Tmp3;
979 break;
980 }
981 // FALLTHROUGH
982 case TargetLowering::Expand: {
983 MVT::ValueType VT = Node->getValueType(0);
984 MVT::ValueType EltVT = MVT::getVectorBaseType(VT);
985 MVT::ValueType PtrVT = TLI.getPointerTy();
986 SDOperand Mask = Node->getOperand(2);
987 unsigned NumElems = Mask.getNumOperands();
988 std::vector<SDOperand> Ops;
989 for (unsigned i = 0; i != NumElems; ++i) {
990 SDOperand Arg = Mask.getOperand(i);
991 if (Arg.getOpcode() == ISD::UNDEF) {
992 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
993 } else {
994 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
995 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
996 if (Idx < NumElems)
997 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
998 DAG.getConstant(Idx, PtrVT)));
999 else
1000 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1001 DAG.getConstant(Idx - NumElems, PtrVT)));
1002 }
1003 }
1004 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, Ops);
Chris Lattner4352cc92006-04-04 17:23:26 +00001005 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001006 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001007 case TargetLowering::Promote: {
1008 // Change base type to a different vector type.
1009 MVT::ValueType OVT = Node->getValueType(0);
1010 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1011
1012 // Cast the two input vectors.
1013 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1014 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1015
1016 // Convert the shuffle mask to the right # elements.
1017 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1018 assert(Tmp3.Val && "Shuffle not legal?");
1019 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1020 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1021 break;
1022 }
Chris Lattner87100e02006-03-20 01:52:29 +00001023 }
1024 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001025
1026 case ISD::EXTRACT_VECTOR_ELT:
1027 Tmp1 = LegalizeOp(Node->getOperand(0));
1028 Tmp2 = LegalizeOp(Node->getOperand(1));
1029 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattnere35c2182006-03-21 21:02:03 +00001030
1031 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT,
1032 Tmp1.getValueType())) {
1033 default: assert(0 && "This action is not supported yet!");
1034 case TargetLowering::Legal:
1035 break;
1036 case TargetLowering::Custom:
1037 Tmp3 = TLI.LowerOperation(Result, DAG);
1038 if (Tmp3.Val) {
1039 Result = Tmp3;
1040 break;
1041 }
1042 // FALLTHROUGH
Chris Lattner4aab2f42006-04-02 05:06:04 +00001043 case TargetLowering::Expand:
1044 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattnere35c2182006-03-21 21:02:03 +00001045 break;
1046 }
Chris Lattner384504c2006-03-21 20:44:12 +00001047 break;
1048
Chris Lattner15972212006-03-31 17:55:51 +00001049 case ISD::VEXTRACT_VECTOR_ELT:
1050 Result = LegalizeOp(LowerVEXTRACT_VECTOR_ELT(Op));
Chris Lattner384504c2006-03-21 20:44:12 +00001051 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001052
Chris Lattner6831a812006-02-13 09:18:02 +00001053 case ISD::CALLSEQ_START: {
1054 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1055
1056 // Recursively Legalize all of the inputs of the call end that do not lead
1057 // to this call start. This ensures that any libcalls that need be inserted
1058 // are inserted *before* the CALLSEQ_START.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001059 {std::set<SDNode*> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001060 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001061 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1062 NodesLeadingTo);
1063 }
Chris Lattner6831a812006-02-13 09:18:02 +00001064
1065 // Now that we legalized all of the inputs (which may have inserted
1066 // libcalls) create the new CALLSEQ_START node.
1067 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1068
1069 // Merge in the last call, to ensure that this call start after the last
1070 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001071 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001072 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1073 Tmp1 = LegalizeOp(Tmp1);
1074 }
Chris Lattner6831a812006-02-13 09:18:02 +00001075
1076 // Do not try to legalize the target-specific arguments (#1+).
1077 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001078 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001079 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001080 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001081 }
1082
1083 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001084 AddLegalizedOperand(Op.getValue(0), Result);
1085 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1086 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1087
Chris Lattner6831a812006-02-13 09:18:02 +00001088 // Now that the callseq_start and all of the non-call nodes above this call
1089 // sequence have been legalized, legalize the call itself. During this
1090 // process, no libcalls can/will be inserted, guaranteeing that no calls
1091 // can overlap.
1092 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1093 SDOperand InCallSEQ = LastCALLSEQ_END;
1094 // Note that we are selecting this call!
1095 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1096 IsLegalizingCall = true;
1097
1098 // Legalize the call, starting from the CALLSEQ_END.
1099 LegalizeOp(LastCALLSEQ_END);
1100 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1101 return Result;
1102 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001103 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001104 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1105 // will cause this node to be legalized as well as handling libcalls right.
1106 if (LastCALLSEQ_END.Val != Node) {
1107 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
1108 std::map<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
1109 assert(I != LegalizedNodes.end() &&
1110 "Legalizing the call start should have legalized this node!");
1111 return I->second;
1112 }
1113
1114 // Otherwise, the call start has been legalized and everything is going
1115 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001116 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001117 // Do not try to legalize the target-specific arguments (#1+), except for
1118 // an optional flag input.
1119 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1120 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001121 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001122 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001123 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001124 }
1125 } else {
1126 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1127 if (Tmp1 != Node->getOperand(0) ||
1128 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001129 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001130 Ops[0] = Tmp1;
1131 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001132 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001133 }
Chris Lattner6a542892006-01-24 05:48:21 +00001134 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001135 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001136 // This finishes up call legalization.
1137 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001138
1139 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1140 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1141 if (Node->getNumValues() == 2)
1142 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1143 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001144 case ISD::DYNAMIC_STACKALLOC: {
Chris Lattnerfa404e82005-01-09 19:03:49 +00001145 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1146 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1147 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001148 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001149
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001150 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001151 Tmp2 = Result.getValue(1);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001152 switch (TLI.getOperationAction(Node->getOpcode(),
1153 Node->getValueType(0))) {
1154 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001155 case TargetLowering::Expand: {
1156 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1157 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1158 " not tell us which reg is the stack pointer!");
1159 SDOperand Chain = Tmp1.getOperand(0);
1160 SDOperand Size = Tmp2.getOperand(1);
1161 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, Node->getValueType(0));
1162 Tmp1 = DAG.getNode(ISD::SUB, Node->getValueType(0), SP, Size); // Value
1163 Tmp2 = DAG.getCopyToReg(SP.getValue(1), SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001164 Tmp1 = LegalizeOp(Tmp1);
1165 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001166 break;
1167 }
1168 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001169 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1170 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001171 Tmp1 = LegalizeOp(Tmp3);
1172 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001173 }
Chris Lattner903d2782006-01-15 08:54:32 +00001174 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001175 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001176 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001177 }
Chris Lattner903d2782006-01-15 08:54:32 +00001178 // Since this op produce two values, make sure to remember that we
1179 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001180 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1181 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001182 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001183 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001184 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001185 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001186 bool Changed = false;
1187 // Legalize all of the operands of the inline asm, in case they are nodes
1188 // that need to be expanded or something. Note we skip the asm string and
1189 // all of the TargetConstant flags.
1190 SDOperand Op = LegalizeOp(Ops[0]);
1191 Changed = Op != Ops[0];
1192 Ops[0] = Op;
1193
1194 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1195 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1196 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1197 for (++i; NumVals; ++i, --NumVals) {
1198 SDOperand Op = LegalizeOp(Ops[i]);
1199 if (Op != Ops[i]) {
1200 Changed = true;
1201 Ops[i] = Op;
1202 }
1203 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001204 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001205
1206 if (HasInFlag) {
1207 Op = LegalizeOp(Ops.back());
1208 Changed |= Op != Ops.back();
1209 Ops.back() = Op;
1210 }
1211
1212 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001213 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001214
1215 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001216 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001217 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1218 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001219 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001220 case ISD::BR:
1221 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001222 // Ensure that libcalls are emitted before a branch.
1223 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1224 Tmp1 = LegalizeOp(Tmp1);
1225 LastCALLSEQ_END = DAG.getEntryNode();
1226
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001227 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001228 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001229 case ISD::BRIND:
1230 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1231 // Ensure that libcalls are emitted before a branch.
1232 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1233 Tmp1 = LegalizeOp(Tmp1);
1234 LastCALLSEQ_END = DAG.getEntryNode();
1235
1236 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1237 default: assert(0 && "Indirect target must be legal type (pointer)!");
1238 case Legal:
1239 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1240 break;
1241 }
1242 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1243 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001244 case ISD::BRCOND:
1245 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001246 // Ensure that libcalls are emitted before a return.
1247 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1248 Tmp1 = LegalizeOp(Tmp1);
1249 LastCALLSEQ_END = DAG.getEntryNode();
1250
Chris Lattner47e92232005-01-18 19:27:06 +00001251 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1252 case Expand: assert(0 && "It's impossible to expand bools");
1253 case Legal:
1254 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1255 break;
1256 case Promote:
1257 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
1258 break;
1259 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001260
1261 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001262 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001263
1264 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1265 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001266 case TargetLowering::Legal: break;
1267 case TargetLowering::Custom:
1268 Tmp1 = TLI.LowerOperation(Result, DAG);
1269 if (Tmp1.Val) Result = Tmp1;
1270 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001271 case TargetLowering::Expand:
1272 // Expand brcond's setcc into its constituent parts and create a BR_CC
1273 // Node.
1274 if (Tmp2.getOpcode() == ISD::SETCC) {
1275 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1276 Tmp2.getOperand(0), Tmp2.getOperand(1),
1277 Node->getOperand(2));
1278 } else {
Chris Lattner550b1e52005-08-21 18:03:09 +00001279 // Make sure the condition is either zero or one. It may have been
1280 // promoted from something else.
Chris Lattner19c5c4c2006-01-31 05:04:52 +00001281 unsigned NumBits = MVT::getSizeInBits(Tmp2.getValueType());
1282 if (!TLI.MaskedValueIsZero(Tmp2, (~0ULL >> (64-NumBits))^1))
1283 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner550b1e52005-08-21 18:03:09 +00001284
Nate Begeman7cbd5252005-08-16 19:49:35 +00001285 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1286 DAG.getCondCode(ISD::SETNE), Tmp2,
1287 DAG.getConstant(0, Tmp2.getValueType()),
1288 Node->getOperand(2));
1289 }
1290 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001291 }
1292 break;
1293 case ISD::BR_CC:
1294 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001295 // Ensure that libcalls are emitted before a branch.
1296 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1297 Tmp1 = LegalizeOp(Tmp1);
1298 LastCALLSEQ_END = DAG.getEntryNode();
1299
Nate Begeman750ac1b2006-02-01 07:19:44 +00001300 Tmp2 = Node->getOperand(2); // LHS
1301 Tmp3 = Node->getOperand(3); // RHS
1302 Tmp4 = Node->getOperand(1); // CC
1303
1304 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
1305
1306 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1307 // the LHS is a legal SETCC itself. In this case, we need to compare
1308 // the result against zero to select between true and false values.
1309 if (Tmp3.Val == 0) {
1310 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1311 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001312 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001313
1314 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1315 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001316
Chris Lattner181b7a32005-12-17 23:46:46 +00001317 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1318 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001319 case TargetLowering::Legal: break;
1320 case TargetLowering::Custom:
1321 Tmp4 = TLI.LowerOperation(Result, DAG);
1322 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001323 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001324 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001325 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001326 case ISD::LOAD: {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001327 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1328 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001329
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001330 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001332 Tmp3 = Result.getValue(0);
1333 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001334
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001335 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1336 default: assert(0 && "This action is not supported yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001337 case TargetLowering::Legal: break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001338 case TargetLowering::Custom:
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001339 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00001340 if (Tmp1.Val) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001341 Tmp3 = LegalizeOp(Tmp1);
1342 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001343 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001344 break;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001345 case TargetLowering::Promote: {
1346 // Only promote a load of vector type to another.
1347 assert(MVT::isVector(VT) && "Cannot promote this load!");
1348 // Change base type to a different vector type.
1349 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1350
1351 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, Node->getOperand(2));
1352 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1353 Tmp4 = LegalizeOp(Tmp1.getValue(1));
1354 break;
1355 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001356 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001357 // Since loads produce two values, make sure to remember that we
1358 // legalized both of them.
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001359 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1360 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1361 return Op.ResNo ? Tmp4 : Tmp3;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001362 }
Chris Lattner0f69b292005-01-15 06:18:18 +00001363 case ISD::EXTLOAD:
1364 case ISD::SEXTLOAD:
Chris Lattner01ff7212005-04-10 22:54:25 +00001365 case ISD::ZEXTLOAD: {
Chris Lattner0f69b292005-01-15 06:18:18 +00001366 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1367 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattner0f69b292005-01-15 06:18:18 +00001368
Chris Lattner5f056bf2005-07-10 01:55:33 +00001369 MVT::ValueType SrcVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
Chris Lattner01ff7212005-04-10 22:54:25 +00001370 switch (TLI.getOperationAction(Node->getOpcode(), SrcVT)) {
Chris Lattner01ff7212005-04-10 22:54:25 +00001371 default: assert(0 && "This action is not supported yet!");
Chris Lattner1c51c6a2005-04-12 20:30:10 +00001372 case TargetLowering::Promote:
1373 assert(SrcVT == MVT::i1 && "Can only promote EXTLOAD from i1 -> i8!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001374 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1375 DAG.getValueType(MVT::i8));
1376 Tmp1 = Result.getValue(0);
1377 Tmp2 = Result.getValue(1);
1378 break;
Chris Lattner456a93a2006-01-28 07:39:30 +00001379 case TargetLowering::Custom:
1380 isCustom = true;
1381 // FALLTHROUGH
Chris Lattner01ff7212005-04-10 22:54:25 +00001382 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001383 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2),
1384 Node->getOperand(3));
1385 Tmp1 = Result.getValue(0);
1386 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001387
1388 if (isCustom) {
1389 Tmp3 = TLI.LowerOperation(Tmp3, DAG);
1390 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001391 Tmp1 = LegalizeOp(Tmp3);
1392 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001393 }
1394 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001395 break;
Chris Lattner01ff7212005-04-10 22:54:25 +00001396 case TargetLowering::Expand:
Chris Lattner69a889e2005-12-20 00:53:54 +00001397 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001398 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1399 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, Node->getOperand(2));
Andrew Lenharth31559082005-06-30 19:32:57 +00001400 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001401 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1402 Tmp2 = LegalizeOp(Load.getValue(1));
1403 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001404 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001405 assert(Node->getOpcode() != ISD::EXTLOAD &&
1406 "EXTLOAD should always be supported!");
1407 // Turn the unsupported load into an EXTLOAD followed by an explicit
1408 // zero/sign extend inreg.
Chris Lattner5f056bf2005-07-10 01:55:33 +00001409 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1410 Tmp1, Tmp2, Node->getOperand(2), SrcVT);
Chris Lattner23993562005-04-13 02:38:47 +00001411 SDOperand ValRes;
1412 if (Node->getOpcode() == ISD::SEXTLOAD)
1413 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00001414 Result, DAG.getValueType(SrcVT));
Chris Lattner23993562005-04-13 02:38:47 +00001415 else
1416 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001417 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1418 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1419 break;
Chris Lattner01ff7212005-04-10 22:54:25 +00001420 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001421 // Since loads produce two values, make sure to remember that we legalized
1422 // both of them.
1423 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1424 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1425 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001426 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001427 case ISD::EXTRACT_ELEMENT: {
1428 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1429 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001430 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001431 case Legal:
1432 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1433 // 1 -> Hi
1434 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1435 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1436 TLI.getShiftAmountTy()));
1437 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1438 } else {
1439 // 0 -> Lo
1440 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1441 Node->getOperand(0));
1442 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001443 break;
1444 case Expand:
1445 // Get both the low and high parts.
1446 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1447 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1448 Result = Tmp2; // 1 -> Hi
1449 else
1450 Result = Tmp1; // 0 -> Lo
1451 break;
1452 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001453 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001454 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001455
1456 case ISD::CopyToReg:
1457 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001458
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001459 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001460 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001461 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001462 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001463 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001464 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001465 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001466 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001467 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001468 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001469 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1470 Tmp3);
1471 } else {
1472 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001473 }
1474
1475 // Since this produces two values, make sure to remember that we legalized
1476 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001477 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001478 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001479 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001480 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001481 break;
1482
1483 case ISD::RET:
1484 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001485
1486 // Ensure that libcalls are emitted before a return.
1487 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1488 Tmp1 = LegalizeOp(Tmp1);
1489 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001490
Chris Lattner3e928bb2005-01-07 07:47:09 +00001491 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001492 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001493 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001494 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001495 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001496 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001497 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001498 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001499 case Expand:
1500 if (Tmp2.getValueType() != MVT::Vector) {
1501 SDOperand Lo, Hi;
1502 ExpandOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001503 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001504 } else {
1505 SDNode *InVal = Tmp2.Val;
1506 unsigned NumElems =
1507 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1508 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1509
1510 // Figure out if there is a Packed type corresponding to this Vector
1511 // type. If so, convert to the packed type.
1512 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1513 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1514 // Turn this into a return of the packed type.
1515 Tmp2 = PackVectorOp(Tmp2, TVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001516 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001517 } else if (NumElems == 1) {
1518 // Turn this into a return of the scalar type.
1519 Tmp2 = PackVectorOp(Tmp2, EVT);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001520 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001521
1522 // FIXME: Returns of gcc generic vectors smaller than a legal type
1523 // should be returned in integer registers!
1524
Chris Lattnerf87324e2006-04-11 01:31:51 +00001525 // The scalarized value type may not be legal, e.g. it might require
1526 // promotion or expansion. Relegalize the return.
1527 Result = LegalizeOp(Result);
1528 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001529 // FIXME: Returns of gcc generic vectors larger than a legal vector
1530 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001531 SDOperand Lo, Hi;
1532 SplitVectorOp(Tmp2, Lo, Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001533 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001534 Result = LegalizeOp(Result);
1535 }
1536 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001537 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001538 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001539 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001540 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001541 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001542 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001543 }
1544 break;
1545 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001546 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001547 break;
1548 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001549 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001550 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001551 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001552 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1553 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001554 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001555 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001556 break;
1557 case Expand: {
1558 SDOperand Lo, Hi;
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001559 assert(Node->getOperand(i).getValueType() != MVT::Vector &&
1560 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001561 ExpandOp(Node->getOperand(i), Lo, Hi);
1562 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001563 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001564 NewValues.push_back(Hi);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001565 NewValues.push_back(Node->getOperand(i+1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00001566 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001567 }
1568 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001569 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001570 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001571
1572 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001573 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001574 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001575 Result = DAG.getNode(ISD::RET, MVT::Other,
1576 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001577 break;
1578 }
1579 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001580
Chris Lattner6862dbc2006-01-29 21:02:23 +00001581 if (Result.getOpcode() == ISD::RET) {
1582 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
1583 default: assert(0 && "This action is not supported yet!");
1584 case TargetLowering::Legal: break;
1585 case TargetLowering::Custom:
1586 Tmp1 = TLI.LowerOperation(Result, DAG);
1587 if (Tmp1.Val) Result = Tmp1;
1588 break;
1589 }
Evan Cheng17c428e2006-01-06 00:41:43 +00001590 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001591 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001592 case ISD::STORE: {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001593 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1594 Tmp2 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1595
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001596 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Chris Lattner456a93a2006-01-28 07:39:30 +00001597 // FIXME: We shouldn't do this for TargetConstantFP's.
Chris Lattner06ac6ab2006-03-15 22:19:18 +00001598 // FIXME: move this to the DAG Combiner!
Chris Lattner03c85462005-01-15 05:21:40 +00001599 if (ConstantFPSDNode *CFP =dyn_cast<ConstantFPSDNode>(Node->getOperand(1))){
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001600 if (CFP->getValueType(0) == MVT::f32) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001601 Tmp3 = DAG.getConstant(FloatToBits(CFP->getValue()), MVT::i32);
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001602 } else {
1603 assert(CFP->getValueType(0) == MVT::f64 && "Unknown FP type!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001604 Tmp3 = DAG.getConstant(DoubleToBits(CFP->getValue()), MVT::i64);
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001605 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001606 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Tmp3, Tmp2,
1607 Node->getOperand(3));
Chris Lattner6a542892006-01-24 05:48:21 +00001608 break;
Chris Lattner5d2c6c72005-01-08 06:25:56 +00001609 }
1610
Chris Lattner3e928bb2005-01-07 07:47:09 +00001611 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1612 case Legal: {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001613 Tmp3 = LegalizeOp(Node->getOperand(1));
1614 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1615 Node->getOperand(3));
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001616
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001617 MVT::ValueType VT = Tmp3.getValueType();
Chris Lattner456a93a2006-01-28 07:39:30 +00001618 switch (TLI.getOperationAction(ISD::STORE, VT)) {
1619 default: assert(0 && "This action is not supported yet!");
1620 case TargetLowering::Legal: break;
1621 case TargetLowering::Custom:
1622 Tmp1 = TLI.LowerOperation(Result, DAG);
1623 if (Tmp1.Val) Result = Tmp1;
1624 break;
Chris Lattner2efce0a2006-04-16 01:36:45 +00001625 case TargetLowering::Promote:
1626 assert(MVT::isVector(VT) && "Unknown legal promote case!");
1627 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
1628 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
1629 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1630 Node->getOperand(3));
1631 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001632 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001633 break;
1634 }
1635 case Promote:
Chris Lattner03c85462005-01-15 05:21:40 +00001636 // Truncate the value and store the result.
1637 Tmp3 = PromoteOp(Node->getOperand(1));
1638 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp3, Tmp2,
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001639 Node->getOperand(3),
Chris Lattner9fadb4c2005-07-10 00:29:18 +00001640 DAG.getValueType(Node->getOperand(1).getValueType()));
Chris Lattner03c85462005-01-15 05:21:40 +00001641 break;
1642
Chris Lattner3e928bb2005-01-07 07:47:09 +00001643 case Expand:
Chris Lattnerc7029802006-03-18 01:44:44 +00001644 unsigned IncrementSize = 0;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001645 SDOperand Lo, Hi;
Chris Lattnerc7029802006-03-18 01:44:44 +00001646
1647 // If this is a vector type, then we have to calculate the increment as
1648 // the product of the element size in bytes, and the number of elements
1649 // in the high half of the vector.
1650 if (Node->getOperand(1).getValueType() == MVT::Vector) {
1651 SDNode *InVal = Node->getOperand(1).Val;
1652 unsigned NumElems =
1653 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
1654 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
1655
1656 // Figure out if there is a Packed type corresponding to this Vector
1657 // type. If so, convert to the packed type.
1658 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
1659 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
1660 // Turn this into a normal store of the packed type.
1661 Tmp3 = PackVectorOp(Node->getOperand(1), TVT);
1662 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1663 Node->getOperand(3));
Chris Lattner2efce0a2006-04-16 01:36:45 +00001664 Result = LegalizeOp(Result);
Chris Lattnerc7029802006-03-18 01:44:44 +00001665 break;
1666 } else if (NumElems == 1) {
1667 // Turn this into a normal store of the scalar type.
1668 Tmp3 = PackVectorOp(Node->getOperand(1), EVT);
1669 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
1670 Node->getOperand(3));
Chris Lattner2ae2e982006-03-31 17:37:22 +00001671 // The scalarized value type may not be legal, e.g. it might require
1672 // promotion or expansion. Relegalize the scalar store.
1673 Result = LegalizeOp(Result);
Chris Lattnerc7029802006-03-18 01:44:44 +00001674 break;
1675 } else {
1676 SplitVectorOp(Node->getOperand(1), Lo, Hi);
1677 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
1678 }
1679 } else {
1680 ExpandOp(Node->getOperand(1), Lo, Hi);
1681 IncrementSize = MVT::getSizeInBits(Hi.getValueType())/8;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001682
Chris Lattnerd9731af2006-03-31 18:20:46 +00001683 if (!TLI.isLittleEndian())
1684 std::swap(Lo, Hi);
1685 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001686
Chris Lattneredb1add2005-05-11 04:51:16 +00001687 Lo = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Lo, Tmp2,
1688 Node->getOperand(3));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001689 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
1690 getIntPtrConstant(IncrementSize));
1691 assert(isTypeLegal(Tmp2.getValueType()) &&
1692 "Pointers must be legal!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001693 // FIXME: This sets the srcvalue of both halves to be the same, which is
1694 // wrong.
Chris Lattneredb1add2005-05-11 04:51:16 +00001695 Hi = DAG.getNode(ISD::STORE, MVT::Other, Tmp1, Hi, Tmp2,
1696 Node->getOperand(3));
Chris Lattnerec39a452005-01-19 18:02:17 +00001697 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
1698 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001699 }
1700 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001701 }
Andrew Lenharth95762122005-03-31 21:24:06 +00001702 case ISD::PCMARKER:
1703 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001704 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00001705 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001706 case ISD::STACKSAVE:
1707 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001708 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1709 Tmp1 = Result.getValue(0);
1710 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001711
Chris Lattner140d53c2006-01-13 02:50:02 +00001712 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
1713 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001714 case TargetLowering::Legal: break;
1715 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001716 Tmp3 = TLI.LowerOperation(Result, DAG);
1717 if (Tmp3.Val) {
1718 Tmp1 = LegalizeOp(Tmp3);
1719 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00001720 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001721 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001722 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001723 // Expand to CopyFromReg if the target set
1724 // StackPointerRegisterToSaveRestore.
1725 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001726 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001727 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001728 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001729 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001730 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
1731 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001732 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001733 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00001734 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001735
1736 // Since stacksave produce two values, make sure to remember that we
1737 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001738 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1739 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1740 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001741
Chris Lattner140d53c2006-01-13 02:50:02 +00001742 case ISD::STACKRESTORE:
1743 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1744 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001745 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00001746
1747 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
1748 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001749 case TargetLowering::Legal: break;
1750 case TargetLowering::Custom:
1751 Tmp1 = TLI.LowerOperation(Result, DAG);
1752 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00001753 break;
1754 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00001755 // Expand to CopyToReg if the target set
1756 // StackPointerRegisterToSaveRestore.
1757 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
1758 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
1759 } else {
1760 Result = Tmp1;
1761 }
Chris Lattner140d53c2006-01-13 02:50:02 +00001762 break;
1763 }
1764 break;
1765
Andrew Lenharth51b8d542005-11-11 16:47:30 +00001766 case ISD::READCYCLECOUNTER:
1767 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001768 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001769
1770 // Since rdcc produce two values, make sure to remember that we legalized
1771 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001772 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Andrew Lenharth49c709f2005-12-02 04:56:24 +00001773 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001774 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00001775
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001776 case ISD::TRUNCSTORE: {
Chris Lattner0f69b292005-01-15 06:18:18 +00001777 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1778 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the pointer.
1779
Chris Lattner456a93a2006-01-28 07:39:30 +00001780 assert(isTypeLegal(Node->getOperand(1).getValueType()) &&
1781 "Cannot handle illegal TRUNCSTORE yet!");
1782 Tmp2 = LegalizeOp(Node->getOperand(1));
1783
1784 // The only promote case we handle is TRUNCSTORE:i1 X into
1785 // -> TRUNCSTORE:i8 (and X, 1)
1786 if (cast<VTSDNode>(Node->getOperand(4))->getVT() == MVT::i1 &&
1787 TLI.getOperationAction(ISD::TRUNCSTORE, MVT::i1) ==
1788 TargetLowering::Promote) {
1789 // Promote the bool to a mask then store.
1790 Tmp2 = DAG.getNode(ISD::AND, Tmp2.getValueType(), Tmp2,
1791 DAG.getConstant(1, Tmp2.getValueType()));
1792 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, Tmp1, Tmp2, Tmp3,
1793 Node->getOperand(3), DAG.getValueType(MVT::i8));
Chris Lattner13d58e72005-09-10 00:20:18 +00001794
Chris Lattner456a93a2006-01-28 07:39:30 +00001795 } else if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1) ||
1796 Tmp3 != Node->getOperand(2)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001797 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
1798 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001799 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001800
Chris Lattner456a93a2006-01-28 07:39:30 +00001801 MVT::ValueType StVT = cast<VTSDNode>(Result.Val->getOperand(4))->getVT();
1802 switch (TLI.getOperationAction(Result.Val->getOpcode(), StVT)) {
1803 default: assert(0 && "This action is not supported yet!");
1804 case TargetLowering::Legal: break;
1805 case TargetLowering::Custom:
1806 Tmp1 = TLI.LowerOperation(Result, DAG);
1807 if (Tmp1.Val) Result = Tmp1;
Chris Lattner0f69b292005-01-15 06:18:18 +00001808 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00001809 }
1810 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001811 }
Chris Lattner2ee743f2005-01-14 22:08:15 +00001812 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00001813 switch (getTypeAction(Node->getOperand(0).getValueType())) {
1814 case Expand: assert(0 && "It's impossible to expand bools");
1815 case Legal:
1816 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
1817 break;
1818 case Promote:
1819 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
1820 break;
1821 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001822 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00001823 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001824
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001825 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00001826
Nate Begemanb942a3d2005-08-23 04:29:48 +00001827 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001828 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001829 case TargetLowering::Legal: break;
1830 case TargetLowering::Custom: {
1831 Tmp1 = TLI.LowerOperation(Result, DAG);
1832 if (Tmp1.Val) Result = Tmp1;
1833 break;
1834 }
Nate Begeman9373a812005-08-10 20:51:12 +00001835 case TargetLowering::Expand:
1836 if (Tmp1.getOpcode() == ISD::SETCC) {
1837 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
1838 Tmp2, Tmp3,
1839 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
1840 } else {
Chris Lattner550b1e52005-08-21 18:03:09 +00001841 // Make sure the condition is either zero or one. It may have been
1842 // promoted from something else.
Chris Lattner0e753d62006-01-30 04:22:28 +00001843 unsigned NumBits = MVT::getSizeInBits(Tmp1.getValueType());
1844 if (!TLI.MaskedValueIsZero(Tmp1, (~0ULL >> (64-NumBits))^1))
1845 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Nate Begeman9373a812005-08-10 20:51:12 +00001846 Result = DAG.getSelectCC(Tmp1,
1847 DAG.getConstant(0, Tmp1.getValueType()),
1848 Tmp2, Tmp3, ISD::SETNE);
1849 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001850 break;
1851 case TargetLowering::Promote: {
1852 MVT::ValueType NVT =
1853 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
1854 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00001855 if (MVT::isVector(Tmp2.getValueType())) {
1856 ExtOp = ISD::BIT_CONVERT;
1857 TruncOp = ISD::BIT_CONVERT;
1858 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001859 ExtOp = ISD::ANY_EXTEND;
1860 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001861 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00001862 ExtOp = ISD::FP_EXTEND;
1863 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00001864 }
1865 // Promote each of the values to the new type.
1866 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
1867 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
1868 // Perform the larger operation, then round down.
1869 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
1870 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
1871 break;
1872 }
1873 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001874 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001875 case ISD::SELECT_CC: {
1876 Tmp1 = Node->getOperand(0); // LHS
1877 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00001878 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
1879 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00001880 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00001881
Nate Begeman750ac1b2006-02-01 07:19:44 +00001882 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
1883
1884 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1885 // the LHS is a legal SETCC itself. In this case, we need to compare
1886 // the result against zero to select between true and false values.
1887 if (Tmp2.Val == 0) {
1888 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
1889 CC = DAG.getCondCode(ISD::SETNE);
1890 }
1891 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
1892
1893 // Everything is legal, see if we should expand this op or something.
1894 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
1895 default: assert(0 && "This action is not supported yet!");
1896 case TargetLowering::Legal: break;
1897 case TargetLowering::Custom:
1898 Tmp1 = TLI.LowerOperation(Result, DAG);
1899 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00001900 break;
Nate Begeman9373a812005-08-10 20:51:12 +00001901 }
1902 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00001903 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001904 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00001905 Tmp1 = Node->getOperand(0);
1906 Tmp2 = Node->getOperand(1);
1907 Tmp3 = Node->getOperand(2);
1908 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
1909
1910 // If we had to Expand the SetCC operands into a SELECT node, then it may
1911 // not always be possible to return a true LHS & RHS. In this case, just
1912 // return the value we legalized, returned in the LHS
1913 if (Tmp2.Val == 0) {
1914 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001915 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001916 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001917
Chris Lattner73e142f2006-01-30 22:43:50 +00001918 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00001919 default: assert(0 && "Cannot handle this action for SETCC yet!");
1920 case TargetLowering::Custom:
1921 isCustom = true;
1922 // FALLTHROUGH.
1923 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001924 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00001925 if (isCustom) {
1926 Tmp3 = TLI.LowerOperation(Result, DAG);
1927 if (Tmp3.Val) Result = Tmp3;
1928 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001929 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00001930 case TargetLowering::Promote: {
1931 // First step, figure out the appropriate operation to use.
1932 // Allow SETCC to not be supported for all legal data types
1933 // Mostly this targets FP
1934 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
1935 MVT::ValueType OldVT = NewInTy;
1936
1937 // Scan for the appropriate larger type to use.
1938 while (1) {
1939 NewInTy = (MVT::ValueType)(NewInTy+1);
1940
1941 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
1942 "Fell off of the edge of the integer world");
1943 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
1944 "Fell off of the edge of the floating point world");
1945
1946 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00001947 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00001948 break;
1949 }
1950 if (MVT::isInteger(NewInTy))
1951 assert(0 && "Cannot promote Legal Integer SETCC yet");
1952 else {
1953 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
1954 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
1955 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001956 Tmp1 = LegalizeOp(Tmp1);
1957 Tmp2 = LegalizeOp(Tmp2);
1958 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Evan Cheng433f8ac2006-01-17 19:47:13 +00001959 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00001960 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00001961 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00001962 case TargetLowering::Expand:
1963 // Expand a setcc node into a select_cc of the same condition, lhs, and
1964 // rhs that selects between const 1 (true) and const 0 (false).
1965 MVT::ValueType VT = Node->getValueType(0);
1966 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
1967 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
1968 Node->getOperand(2));
Nate Begemanb942a3d2005-08-23 04:29:48 +00001969 break;
1970 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001971 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00001972 case ISD::MEMSET:
1973 case ISD::MEMCPY:
1974 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001975 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00001976 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
1977
1978 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
1979 switch (getTypeAction(Node->getOperand(2).getValueType())) {
1980 case Expand: assert(0 && "Cannot expand a byte!");
1981 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001982 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00001983 break;
1984 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00001985 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00001986 break;
1987 }
1988 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00001989 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00001990 }
Chris Lattner272455b2005-02-02 03:44:41 +00001991
1992 SDOperand Tmp4;
1993 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00001994 case Expand: {
1995 // Length is too big, just take the lo-part of the length.
1996 SDOperand HiPart;
1997 ExpandOp(Node->getOperand(3), HiPart, Tmp4);
1998 break;
1999 }
Chris Lattnere5605212005-01-28 22:29:18 +00002000 case Legal:
2001 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002002 break;
2003 case Promote:
2004 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002005 break;
2006 }
2007
2008 SDOperand Tmp5;
2009 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2010 case Expand: assert(0 && "Cannot expand this yet!");
2011 case Legal:
2012 Tmp5 = LegalizeOp(Node->getOperand(4));
2013 break;
2014 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002015 Tmp5 = PromoteOp(Node->getOperand(4));
2016 break;
2017 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002018
2019 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2020 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002021 case TargetLowering::Custom:
2022 isCustom = true;
2023 // FALLTHROUGH
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002024 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002025 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, Tmp5);
Chris Lattner456a93a2006-01-28 07:39:30 +00002026 if (isCustom) {
2027 Tmp1 = TLI.LowerOperation(Result, DAG);
2028 if (Tmp1.Val) Result = Tmp1;
2029 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002030 break;
2031 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002032 // Otherwise, the target does not support this operation. Lower the
2033 // operation to an explicit libcall as appropriate.
2034 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002035 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Chris Lattnere1bd8222005-01-11 05:57:22 +00002036 std::vector<std::pair<SDOperand, const Type*> > Args;
2037
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002038 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002039 if (Node->getOpcode() == ISD::MEMSET) {
2040 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002041 // Extend the (previously legalized) ubyte argument to be an int value
2042 // for the call.
2043 if (Tmp3.getValueType() > MVT::i32)
2044 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2045 else
2046 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002047 Args.push_back(std::make_pair(Tmp3, Type::IntTy));
2048 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2049
2050 FnName = "memset";
2051 } else if (Node->getOpcode() == ISD::MEMCPY ||
2052 Node->getOpcode() == ISD::MEMMOVE) {
2053 Args.push_back(std::make_pair(Tmp2, IntPtrTy));
2054 Args.push_back(std::make_pair(Tmp3, IntPtrTy));
2055 Args.push_back(std::make_pair(Tmp4, IntPtrTy));
2056 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2057 } else {
2058 assert(0 && "Unknown op!");
2059 }
Chris Lattner45982da2005-05-12 16:53:42 +00002060
Chris Lattnere1bd8222005-01-11 05:57:22 +00002061 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattneradf6a962005-05-13 18:50:42 +00002062 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002063 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002064 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002065 break;
2066 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002067 }
2068 break;
2069 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002070
Chris Lattner5b359c62005-04-02 04:00:59 +00002071 case ISD::SHL_PARTS:
2072 case ISD::SRA_PARTS:
2073 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002074 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002075 bool Changed = false;
2076 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2077 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2078 Changed |= Ops.back() != Node->getOperand(i);
2079 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002080 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002081 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002082
Evan Cheng05a2d562006-01-09 18:31:59 +00002083 switch (TLI.getOperationAction(Node->getOpcode(),
2084 Node->getValueType(0))) {
2085 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002086 case TargetLowering::Legal: break;
2087 case TargetLowering::Custom:
2088 Tmp1 = TLI.LowerOperation(Result, DAG);
2089 if (Tmp1.Val) {
2090 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002091 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002092 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002093 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2094 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002095 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002096 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002097 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002098 return RetVal;
2099 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002100 break;
2101 }
2102
Chris Lattner2c8086f2005-04-02 05:00:07 +00002103 // Since these produce multiple values, make sure to remember that we
2104 // legalized all of them.
2105 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2106 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2107 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002108 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002109
2110 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002111 case ISD::ADD:
2112 case ISD::SUB:
2113 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002114 case ISD::MULHS:
2115 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002116 case ISD::UDIV:
2117 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002118 case ISD::AND:
2119 case ISD::OR:
2120 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002121 case ISD::SHL:
2122 case ISD::SRL:
2123 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002124 case ISD::FADD:
2125 case ISD::FSUB:
2126 case ISD::FMUL:
2127 case ISD::FDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002128 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002129 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2130 case Expand: assert(0 && "Not possible");
2131 case Legal:
2132 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2133 break;
2134 case Promote:
2135 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2136 break;
2137 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002138
2139 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002140
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002141 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002142 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002143 case TargetLowering::Legal: break;
2144 case TargetLowering::Custom:
2145 Tmp1 = TLI.LowerOperation(Result, DAG);
2146 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002147 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002148 case TargetLowering::Expand: {
2149 assert(MVT::isVector(Node->getValueType(0)) &&
2150 "Cannot expand this binary operator!");
2151 // Expand the operation into a bunch of nasty scalar code.
2152 std::vector<SDOperand> Ops;
2153 MVT::ValueType EltVT = MVT::getVectorBaseType(Node->getValueType(0));
2154 MVT::ValueType PtrVT = TLI.getPointerTy();
2155 for (unsigned i = 0, e = MVT::getVectorNumElements(Node->getValueType(0));
2156 i != e; ++i) {
2157 SDOperand Idx = DAG.getConstant(i, PtrVT);
2158 SDOperand LHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1, Idx);
2159 SDOperand RHS = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2, Idx);
2160 Ops.push_back(DAG.getNode(Node->getOpcode(), EltVT, LHS, RHS));
2161 }
2162 Result = DAG.getNode(ISD::BUILD_VECTOR, Node->getValueType(0), Ops);
2163 break;
2164 }
Evan Chengcc987612006-04-12 21:20:24 +00002165 case TargetLowering::Promote: {
2166 switch (Node->getOpcode()) {
2167 default: assert(0 && "Do not know how to promote this BinOp!");
2168 case ISD::AND:
2169 case ISD::OR:
2170 case ISD::XOR: {
2171 MVT::ValueType OVT = Node->getValueType(0);
2172 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2173 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2174 // Bit convert each of the values to the new type.
2175 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2176 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2177 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2178 // Bit convert the result back the original type.
2179 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2180 break;
2181 }
2182 }
2183 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002184 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002185 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002186
2187 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2188 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2189 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2190 case Expand: assert(0 && "Not possible");
2191 case Legal:
2192 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2193 break;
2194 case Promote:
2195 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2196 break;
2197 }
2198
2199 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2200
2201 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2202 default: assert(0 && "Operation not supported");
2203 case TargetLowering::Custom:
2204 Tmp1 = TLI.LowerOperation(Result, DAG);
2205 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002206 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002207 case TargetLowering::Legal: break;
2208 case TargetLowering::Expand:
Chris Lattner8f4191d2006-03-13 06:08:38 +00002209 // If this target supports fabs/fneg natively, do this efficiently.
2210 if (TLI.isOperationLegal(ISD::FABS, Tmp1.getValueType()) &&
2211 TLI.isOperationLegal(ISD::FNEG, Tmp1.getValueType())) {
2212 // Get the sign bit of the RHS.
2213 MVT::ValueType IVT =
2214 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2215 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2216 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2217 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2218 // Get the absolute value of the result.
2219 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2220 // Select between the nabs and abs value based on the sign bit of
2221 // the input.
2222 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2223 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2224 AbsVal),
2225 AbsVal);
2226 Result = LegalizeOp(Result);
2227 break;
2228 }
2229
2230 // Otherwise, do bitwise ops!
2231
2232 // copysign -> copysignf/copysign libcall.
Chris Lattnera09f8482006-03-05 05:09:38 +00002233 const char *FnName;
2234 if (Node->getValueType(0) == MVT::f32) {
2235 FnName = "copysignf";
2236 if (Tmp2.getValueType() != MVT::f32) // Force operands to match type.
2237 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2238 DAG.getNode(ISD::FP_ROUND, MVT::f32, Tmp2));
2239 } else {
2240 FnName = "copysign";
2241 if (Tmp2.getValueType() != MVT::f64) // Force operands to match type.
2242 Result = DAG.UpdateNodeOperands(Result, Tmp1,
2243 DAG.getNode(ISD::FP_EXTEND, MVT::f64, Tmp2));
2244 }
2245 SDOperand Dummy;
2246 Result = ExpandLibCall(FnName, Node, Dummy);
2247 break;
2248 }
2249 break;
2250
Nate Begeman551bf3f2006-02-17 05:43:56 +00002251 case ISD::ADDC:
2252 case ISD::SUBC:
2253 Tmp1 = LegalizeOp(Node->getOperand(0));
2254 Tmp2 = LegalizeOp(Node->getOperand(1));
2255 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2256 // Since this produces two values, make sure to remember that we legalized
2257 // both of them.
2258 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2259 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2260 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002261
Nate Begeman551bf3f2006-02-17 05:43:56 +00002262 case ISD::ADDE:
2263 case ISD::SUBE:
2264 Tmp1 = LegalizeOp(Node->getOperand(0));
2265 Tmp2 = LegalizeOp(Node->getOperand(1));
2266 Tmp3 = LegalizeOp(Node->getOperand(2));
2267 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2268 // Since this produces two values, make sure to remember that we legalized
2269 // both of them.
2270 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2271 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2272 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002273
Nate Begeman419f8b62005-10-18 00:27:41 +00002274 case ISD::BUILD_PAIR: {
2275 MVT::ValueType PairTy = Node->getValueType(0);
2276 // TODO: handle the case where the Lo and Hi operands are not of legal type
2277 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2278 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2279 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002280 case TargetLowering::Promote:
2281 case TargetLowering::Custom:
2282 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002283 case TargetLowering::Legal:
2284 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2285 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2286 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002287 case TargetLowering::Expand:
2288 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2289 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2290 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2291 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2292 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002293 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002294 break;
2295 }
2296 break;
2297 }
2298
Nate Begemanc105e192005-04-06 00:23:54 +00002299 case ISD::UREM:
2300 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002301 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002302 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2303 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002304
Nate Begemanc105e192005-04-06 00:23:54 +00002305 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002306 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2307 case TargetLowering::Custom:
2308 isCustom = true;
2309 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002310 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002311 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002312 if (isCustom) {
2313 Tmp1 = TLI.LowerOperation(Result, DAG);
2314 if (Tmp1.Val) Result = Tmp1;
2315 }
Nate Begemanc105e192005-04-06 00:23:54 +00002316 break;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002317 case TargetLowering::Expand:
2318 if (MVT::isInteger(Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002319 // X % Y -> X-X/Y*Y
Chris Lattner4c64dd72005-08-03 20:31:37 +00002320 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002321 unsigned Opc = Node->getOpcode() == ISD::UREM ? ISD::UDIV : ISD::SDIV;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002322 Result = DAG.getNode(Opc, VT, Tmp1, Tmp2);
2323 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2324 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2325 } else {
2326 // Floating point mod -> fmod libcall.
2327 const char *FnName = Node->getValueType(0) == MVT::f32 ? "fmodf":"fmod";
2328 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002329 Result = ExpandLibCall(FnName, Node, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002330 }
2331 break;
2332 }
2333 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002334 case ISD::VAARG: {
2335 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2336 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2337
Chris Lattner5c62f332006-01-28 07:42:08 +00002338 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002339 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2340 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002341 case TargetLowering::Custom:
2342 isCustom = true;
2343 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002344 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002345 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2346 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002347 Tmp1 = Result.getValue(1);
2348
2349 if (isCustom) {
2350 Tmp2 = TLI.LowerOperation(Result, DAG);
2351 if (Tmp2.Val) {
2352 Result = LegalizeOp(Tmp2);
2353 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2354 }
2355 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002356 break;
2357 case TargetLowering::Expand: {
2358 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
2359 Node->getOperand(2));
2360 // Increment the pointer, VAList, to the next vaarg
2361 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2362 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2363 TLI.getPointerTy()));
2364 // Store the incremented VAList to the legalized pointer
2365 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
2366 Node->getOperand(2));
2367 // Load the actual argument out of the pointer VAList
2368 Result = DAG.getLoad(VT, Tmp3, VAList, DAG.getSrcValue(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002369 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002370 Result = LegalizeOp(Result);
2371 break;
2372 }
2373 }
2374 // Since VAARG produces two values, make sure to remember that we
2375 // legalized both of them.
2376 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002377 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2378 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002379 }
2380
2381 case ISD::VACOPY:
2382 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2383 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2384 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
2385
2386 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
2387 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002388 case TargetLowering::Custom:
2389 isCustom = true;
2390 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002391 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
2393 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00002394 if (isCustom) {
2395 Tmp1 = TLI.LowerOperation(Result, DAG);
2396 if (Tmp1.Val) Result = Tmp1;
2397 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002398 break;
2399 case TargetLowering::Expand:
2400 // This defaults to loading a pointer from the input and storing it to the
2401 // output, returning the chain.
2402 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, Node->getOperand(3));
2403 Result = DAG.getNode(ISD::STORE, MVT::Other, Tmp4.getValue(1), Tmp4, Tmp2,
2404 Node->getOperand(4));
Nate Begemanacc398c2006-01-25 18:21:52 +00002405 break;
2406 }
2407 break;
2408
2409 case ISD::VAEND:
2410 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2411 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2412
2413 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
2414 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002415 case TargetLowering::Custom:
2416 isCustom = true;
2417 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002418 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002419 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00002420 if (isCustom) {
2421 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
2422 if (Tmp1.Val) Result = Tmp1;
2423 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002424 break;
2425 case TargetLowering::Expand:
2426 Result = Tmp1; // Default to a no-op, return the chain
2427 break;
2428 }
2429 break;
2430
2431 case ISD::VASTART:
2432 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2433 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2434
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002435 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2436
Nate Begemanacc398c2006-01-25 18:21:52 +00002437 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
2438 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002439 case TargetLowering::Legal: break;
2440 case TargetLowering::Custom:
2441 Tmp1 = TLI.LowerOperation(Result, DAG);
2442 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00002443 break;
2444 }
2445 break;
2446
Nate Begeman35ef9132006-01-11 21:21:00 +00002447 case ISD::ROTL:
2448 case ISD::ROTR:
2449 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2450 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002451
2452 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
2453 "Cannot handle this yet!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002454 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Nate Begeman35ef9132006-01-11 21:21:00 +00002455 break;
2456
Nate Begemand88fc032006-01-14 03:14:10 +00002457 case ISD::BSWAP:
2458 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2459 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002460 case TargetLowering::Custom:
2461 assert(0 && "Cannot custom legalize this yet!");
2462 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002463 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002464 break;
2465 case TargetLowering::Promote: {
2466 MVT::ValueType OVT = Tmp1.getValueType();
2467 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2468 unsigned DiffBits = getSizeInBits(NVT) - getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00002469
Chris Lattner456a93a2006-01-28 07:39:30 +00002470 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2471 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
2472 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
2473 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
2474 break;
2475 }
2476 case TargetLowering::Expand:
2477 Result = ExpandBSWAP(Tmp1);
2478 break;
Nate Begemand88fc032006-01-14 03:14:10 +00002479 }
2480 break;
2481
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002482 case ISD::CTPOP:
2483 case ISD::CTTZ:
2484 case ISD::CTLZ:
2485 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
2486 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002487 case TargetLowering::Custom: assert(0 && "Cannot custom handle this yet!");
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002488 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002489 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002490 break;
2491 case TargetLowering::Promote: {
2492 MVT::ValueType OVT = Tmp1.getValueType();
2493 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00002494
2495 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002496 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
2497 // Perform the larger operation, then subtract if needed.
2498 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002499 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002500 case ISD::CTPOP:
2501 Result = Tmp1;
2502 break;
2503 case ISD::CTTZ:
2504 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002505 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
2506 DAG.getConstant(getSizeInBits(NVT), NVT),
2507 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00002508 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002509 DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1);
2510 break;
2511 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00002512 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00002513 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
2514 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002515 getSizeInBits(OVT), NVT));
2516 break;
2517 }
2518 break;
2519 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002520 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002521 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00002522 break;
2523 }
2524 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00002525
Chris Lattner2c8086f2005-04-02 05:00:07 +00002526 // Unary operators
2527 case ISD::FABS:
2528 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00002529 case ISD::FSQRT:
2530 case ISD::FSIN:
2531 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002532 Tmp1 = LegalizeOp(Node->getOperand(0));
2533 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002534 case TargetLowering::Promote:
2535 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00002536 isCustom = true;
2537 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00002538 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002539 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00002540 if (isCustom) {
2541 Tmp1 = TLI.LowerOperation(Result, DAG);
2542 if (Tmp1.Val) Result = Tmp1;
2543 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002544 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00002545 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00002546 switch (Node->getOpcode()) {
2547 default: assert(0 && "Unreachable!");
2548 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00002549 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
2550 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002551 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002552 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002553 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002554 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
2555 MVT::ValueType VT = Node->getValueType(0);
2556 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002557 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00002558 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
2559 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002560 break;
2561 }
2562 case ISD::FSQRT:
2563 case ISD::FSIN:
2564 case ISD::FCOS: {
2565 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002566 const char *FnName = 0;
2567 switch(Node->getOpcode()) {
2568 case ISD::FSQRT: FnName = VT == MVT::f32 ? "sqrtf" : "sqrt"; break;
2569 case ISD::FSIN: FnName = VT == MVT::f32 ? "sinf" : "sin"; break;
2570 case ISD::FCOS: FnName = VT == MVT::f32 ? "cosf" : "cos"; break;
2571 default: assert(0 && "Unreachable!");
2572 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00002573 SDOperand Dummy;
Chris Lattner9c6b4b82006-01-28 04:28:26 +00002574 Result = ExpandLibCall(FnName, Node, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00002575 break;
2576 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002577 }
2578 break;
2579 }
2580 break;
Chris Lattner35481892005-12-23 00:16:34 +00002581
2582 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00002583 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00002584 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Chris Lattner67993f72006-01-23 07:30:46 +00002585 } else {
Chris Lattner35481892005-12-23 00:16:34 +00002586 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
2587 Node->getOperand(0).getValueType())) {
2588 default: assert(0 && "Unknown operation action!");
2589 case TargetLowering::Expand:
2590 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2591 break;
2592 case TargetLowering::Legal:
2593 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002594 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00002595 break;
2596 }
2597 }
2598 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00002599 case ISD::VBIT_CONVERT: {
2600 assert(Op.getOperand(0).getValueType() == MVT::Vector &&
2601 "Can only have VBIT_CONVERT where input or output is MVT::Vector!");
2602
2603 // The input has to be a vector type, we have to either scalarize it, pack
2604 // it, or convert it based on whether the input vector type is legal.
2605 SDNode *InVal = Node->getOperand(0).Val;
2606 unsigned NumElems =
2607 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
2608 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
2609
2610 // Figure out if there is a Packed type corresponding to this Vector
2611 // type. If so, convert to the packed type.
2612 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
2613 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
2614 // Turn this into a bit convert of the packed input.
2615 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2616 PackVectorOp(Node->getOperand(0), TVT));
2617 break;
2618 } else if (NumElems == 1) {
2619 // Turn this into a bit convert of the scalar input.
2620 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
2621 PackVectorOp(Node->getOperand(0), EVT));
2622 break;
2623 } else {
2624 // FIXME: UNIMP! Store then reload
2625 assert(0 && "Cast from unsupported vector type not implemented yet!");
2626 }
2627 }
2628
Chris Lattner2c8086f2005-04-02 05:00:07 +00002629 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00002630 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002631 case ISD::UINT_TO_FP: {
2632 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002633 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2634 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002635 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002636 Node->getOperand(0).getValueType())) {
2637 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002638 case TargetLowering::Custom:
2639 isCustom = true;
2640 // FALLTHROUGH
2641 case TargetLowering::Legal:
2642 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002643 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002644 if (isCustom) {
2645 Tmp1 = TLI.LowerOperation(Result, DAG);
2646 if (Tmp1.Val) Result = Tmp1;
2647 }
2648 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002649 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00002650 Result = ExpandLegalINT_TO_FP(isSigned,
2651 LegalizeOp(Node->getOperand(0)),
2652 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00002653 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002654 case TargetLowering::Promote:
2655 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
2656 Node->getValueType(0),
2657 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002658 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00002659 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002660 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00002661 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002662 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
2663 Node->getValueType(0), Node->getOperand(0));
2664 break;
2665 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002666 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002667 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002668 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
2669 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002670 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002671 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
2672 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002673 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002674 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2675 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002676 break;
2677 }
2678 break;
2679 }
2680 case ISD::TRUNCATE:
2681 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2682 case Legal:
2683 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002684 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002685 break;
2686 case Expand:
2687 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2688
2689 // Since the result is legal, we should just be able to truncate the low
2690 // part of the source.
2691 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
2692 break;
2693 case Promote:
2694 Result = PromoteOp(Node->getOperand(0));
2695 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
2696 break;
2697 }
2698 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002699
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002700 case ISD::FP_TO_SINT:
2701 case ISD::FP_TO_UINT:
2702 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2703 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00002704 Tmp1 = LegalizeOp(Node->getOperand(0));
2705
Chris Lattner1618beb2005-07-29 00:11:56 +00002706 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
2707 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002708 case TargetLowering::Custom:
2709 isCustom = true;
2710 // FALLTHROUGH
2711 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002712 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002713 if (isCustom) {
2714 Tmp1 = TLI.LowerOperation(Result, DAG);
2715 if (Tmp1.Val) Result = Tmp1;
2716 }
2717 break;
2718 case TargetLowering::Promote:
2719 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
2720 Node->getOpcode() == ISD::FP_TO_SINT);
2721 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00002722 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00002723 if (Node->getOpcode() == ISD::FP_TO_UINT) {
2724 SDOperand True, False;
2725 MVT::ValueType VT = Node->getOperand(0).getValueType();
2726 MVT::ValueType NVT = Node->getValueType(0);
2727 unsigned ShiftAmt = MVT::getSizeInBits(Node->getValueType(0))-1;
2728 Tmp2 = DAG.getConstantFP((double)(1ULL << ShiftAmt), VT);
2729 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
2730 Node->getOperand(0), Tmp2, ISD::SETLT);
2731 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
2732 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00002733 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00002734 Tmp2));
2735 False = DAG.getNode(ISD::XOR, NVT, False,
2736 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00002737 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
2738 break;
Nate Begemand2558e32005-08-14 01:20:53 +00002739 } else {
2740 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
2741 }
2742 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00002743 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002744 break;
2745 case Expand:
2746 assert(0 && "Shouldn't need to expand other operators here!");
2747 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002748 Tmp1 = PromoteOp(Node->getOperand(0));
2749 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
2750 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002751 break;
2752 }
2753 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00002754
Chris Lattner13c78e22005-09-02 00:18:10 +00002755 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002756 case ISD::ZERO_EXTEND:
2757 case ISD::SIGN_EXTEND:
2758 case ISD::FP_EXTEND:
2759 case ISD::FP_ROUND:
2760 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002761 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002762 case Legal:
2763 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002764 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00002765 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002766 case Promote:
2767 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00002768 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002769 Tmp1 = PromoteOp(Node->getOperand(0));
2770 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00002771 break;
Chris Lattner1713e732005-01-16 00:38:00 +00002772 case ISD::ZERO_EXTEND:
2773 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002774 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00002775 Result = DAG.getZeroExtendInReg(Result,
2776 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00002777 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002778 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002779 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00002780 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00002781 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002782 Result,
2783 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00002784 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002785 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00002786 Result = PromoteOp(Node->getOperand(0));
2787 if (Result.getValueType() != Op.getValueType())
2788 // Dynamically dead while we have only 2 FP types.
2789 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
2790 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002791 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00002792 Result = PromoteOp(Node->getOperand(0));
2793 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
2794 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002795 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002796 }
2797 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00002798 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00002799 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00002800 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00002801 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00002802
2803 // If this operation is not supported, convert it to a shl/shr or load/store
2804 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002805 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
2806 default: assert(0 && "This action not supported for this op yet!");
2807 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002808 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002809 break;
2810 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00002811 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00002812 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00002813 // NOTE: we could fall back on load/store here too for targets without
2814 // SAR. However, it is doubtful that any exist.
2815 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
2816 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00002817 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00002818 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
2819 Node->getOperand(0), ShiftCst);
2820 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
2821 Result, ShiftCst);
2822 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
2823 // The only way we can lower this is to turn it into a STORETRUNC,
2824 // EXTLOAD pair, targetting a temporary location (a stack slot).
2825
2826 // NOTE: there is a choice here between constantly creating new stack
2827 // slots and always reusing the same one. We currently always create
2828 // new ones, as reuse may inhibit scheduling.
2829 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Owen Andersona69571c2006-05-03 01:29:57 +00002830 unsigned TySize = (unsigned)TLI.getTargetData()->getTypeSize(Ty);
2831 unsigned Align = TLI.getTargetData()->getTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002832 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00002833 int SSFI =
Chris Lattner45b8caf2005-01-15 07:15:18 +00002834 MF.getFrameInfo()->CreateStackObject((unsigned)TySize, Align);
2835 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
2836 Result = DAG.getNode(ISD::TRUNCSTORE, MVT::Other, DAG.getEntryNode(),
Chris Lattner52d08bd2005-05-09 20:23:03 +00002837 Node->getOperand(0), StackSlot,
Chris Lattner9fadb4c2005-07-10 00:29:18 +00002838 DAG.getSrcValue(NULL), DAG.getValueType(ExtraVT));
Chris Lattner5f056bf2005-07-10 01:55:33 +00002839 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2840 Result, StackSlot, DAG.getSrcValue(NULL),
2841 ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00002842 } else {
2843 assert(0 && "Unknown op");
2844 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002845 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00002846 }
Chris Lattner0f69b292005-01-15 06:18:18 +00002847 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002848 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00002849 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002850
Chris Lattner4ddd2832006-04-08 04:13:17 +00002851 assert(Result.getValueType() == Op.getValueType() &&
2852 "Bad legalization!");
2853
Chris Lattner456a93a2006-01-28 07:39:30 +00002854 // Make sure that the generated code is itself legal.
2855 if (Result != Op)
2856 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002857
Chris Lattner45982da2005-05-12 16:53:42 +00002858 // Note that LegalizeOp may be reentered even from single-use nodes, which
2859 // means that we always must cache transformed nodes.
2860 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002861 return Result;
2862}
2863
Chris Lattner8b6fa222005-01-15 22:16:26 +00002864/// PromoteOp - Given an operation that produces a value in an invalid type,
2865/// promote it to compute the value into a larger type. The produced value will
2866/// have the correct bits for the low portion of the register, but no guarantee
2867/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00002868SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
2869 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00002870 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00002871 assert(getTypeAction(VT) == Promote &&
2872 "Caller should expand or legalize operands that are not promotable!");
2873 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
2874 "Cannot promote to smaller type!");
2875
Chris Lattner03c85462005-01-15 05:21:40 +00002876 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00002877 SDOperand Result;
2878 SDNode *Node = Op.Val;
2879
Chris Lattner6fdcb252005-09-02 20:32:45 +00002880 std::map<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
2881 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00002882
Chris Lattner03c85462005-01-15 05:21:40 +00002883 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002884 case ISD::CopyFromReg:
2885 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00002886 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002887#ifndef NDEBUG
Chris Lattner03c85462005-01-15 05:21:40 +00002888 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00002889#endif
Chris Lattner03c85462005-01-15 05:21:40 +00002890 assert(0 && "Do not know how to promote this operator!");
2891 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00002892 case ISD::UNDEF:
2893 Result = DAG.getNode(ISD::UNDEF, NVT);
2894 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002895 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00002896 if (VT != MVT::i1)
2897 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
2898 else
2899 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00002900 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
2901 break;
2902 case ISD::ConstantFP:
2903 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
2904 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
2905 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00002906
Chris Lattner82fbfb62005-01-18 02:59:52 +00002907 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002908 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00002909 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
2910 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00002911 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00002912
Chris Lattner03c85462005-01-15 05:21:40 +00002913 case ISD::TRUNCATE:
2914 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2915 case Legal:
2916 Result = LegalizeOp(Node->getOperand(0));
2917 assert(Result.getValueType() >= NVT &&
2918 "This truncation doesn't make sense!");
2919 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
2920 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
2921 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00002922 case Promote:
2923 // The truncation is not required, because we don't guarantee anything
2924 // about high bits anyway.
2925 Result = PromoteOp(Node->getOperand(0));
2926 break;
Chris Lattner03c85462005-01-15 05:21:40 +00002927 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00002928 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2929 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00002930 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00002931 }
2932 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00002933 case ISD::SIGN_EXTEND:
2934 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00002935 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002936 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2937 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
2938 case Legal:
2939 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00002940 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002941 break;
2942 case Promote:
2943 // Promote the reg if it's smaller.
2944 Result = PromoteOp(Node->getOperand(0));
2945 // The high bits are not guaranteed to be anything. Insert an extend.
2946 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00002947 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00002948 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00002949 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00002950 Result = DAG.getZeroExtendInReg(Result,
2951 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00002952 break;
2953 }
2954 break;
Chris Lattner35481892005-12-23 00:16:34 +00002955 case ISD::BIT_CONVERT:
2956 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
2957 Result = PromoteOp(Result);
2958 break;
2959
Chris Lattner8b6fa222005-01-15 22:16:26 +00002960 case ISD::FP_EXTEND:
2961 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
2962 case ISD::FP_ROUND:
2963 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2964 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
2965 case Promote: assert(0 && "Unreachable with 2 FP types!");
2966 case Legal:
2967 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00002968 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00002969 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002970 break;
2971 }
2972 break;
2973
2974 case ISD::SINT_TO_FP:
2975 case ISD::UINT_TO_FP:
2976 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2977 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00002978 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00002979 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002980 break;
2981
2982 case Promote:
2983 Result = PromoteOp(Node->getOperand(0));
2984 if (Node->getOpcode() == ISD::SINT_TO_FP)
2985 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00002986 Result,
2987 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00002988 else
Chris Lattner23993562005-04-13 02:38:47 +00002989 Result = DAG.getZeroExtendInReg(Result,
2990 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00002991 // No extra round required here.
2992 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002993 break;
2994 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00002995 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
2996 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00002997 // Round if we cannot tolerate excess precision.
2998 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00002999 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3000 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003001 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003002 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003003 break;
3004
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003005 case ISD::SIGN_EXTEND_INREG:
3006 Result = PromoteOp(Node->getOperand(0));
3007 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3008 Node->getOperand(1));
3009 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003010 case ISD::FP_TO_SINT:
3011 case ISD::FP_TO_UINT:
3012 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3013 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003014 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003015 break;
3016 case Promote:
3017 // The input result is prerounded, so we don't have to do anything
3018 // special.
3019 Tmp1 = PromoteOp(Node->getOperand(0));
3020 break;
3021 case Expand:
3022 assert(0 && "not implemented");
3023 }
Nate Begemand2558e32005-08-14 01:20:53 +00003024 // If we're promoting a UINT to a larger size, check to see if the new node
3025 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3026 // we can use that instead. This allows us to generate better code for
3027 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3028 // legal, such as PowerPC.
3029 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003030 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003031 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3032 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003033 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3034 } else {
3035 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3036 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003037 break;
3038
Chris Lattner2c8086f2005-04-02 05:00:07 +00003039 case ISD::FABS:
3040 case ISD::FNEG:
3041 Tmp1 = PromoteOp(Node->getOperand(0));
3042 assert(Tmp1.getValueType() == NVT);
3043 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3044 // NOTE: we do not have to do any extra rounding here for
3045 // NoExcessFPPrecision, because we know the input will have the appropriate
3046 // precision, and these operations don't modify precision at all.
3047 break;
3048
Chris Lattnerda6ba872005-04-28 21:44:33 +00003049 case ISD::FSQRT:
3050 case ISD::FSIN:
3051 case ISD::FCOS:
3052 Tmp1 = PromoteOp(Node->getOperand(0));
3053 assert(Tmp1.getValueType() == NVT);
3054 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003055 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003056 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3057 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003058 break;
3059
Chris Lattner03c85462005-01-15 05:21:40 +00003060 case ISD::AND:
3061 case ISD::OR:
3062 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003063 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003064 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003065 case ISD::MUL:
3066 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003067 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003068 // that too is okay if they are integer operations.
3069 Tmp1 = PromoteOp(Node->getOperand(0));
3070 Tmp2 = PromoteOp(Node->getOperand(1));
3071 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3072 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003073 break;
3074 case ISD::FADD:
3075 case ISD::FSUB:
3076 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003077 Tmp1 = PromoteOp(Node->getOperand(0));
3078 Tmp2 = PromoteOp(Node->getOperand(1));
3079 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3080 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3081
3082 // Floating point operations will give excess precision that we may not be
3083 // able to tolerate. If we DO allow excess precision, just leave it,
3084 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003085 // FIXME: Why would we need to round FP ops more than integer ones?
3086 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003087 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003088 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3089 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003090 break;
3091
Chris Lattner8b6fa222005-01-15 22:16:26 +00003092 case ISD::SDIV:
3093 case ISD::SREM:
3094 // These operators require that their input be sign extended.
3095 Tmp1 = PromoteOp(Node->getOperand(0));
3096 Tmp2 = PromoteOp(Node->getOperand(1));
3097 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003098 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3099 DAG.getValueType(VT));
3100 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3101 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003102 }
3103 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3104
3105 // Perform FP_ROUND: this is probably overly pessimistic.
3106 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003107 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3108 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003109 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003110 case ISD::FDIV:
3111 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003112 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003113 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003114 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3115 case Legal:
3116 Tmp1 = LegalizeOp(Node->getOperand(0));
3117 break;
3118 case Promote:
3119 Tmp1 = PromoteOp(Node->getOperand(0));
3120 break;
3121 case Expand:
3122 assert(0 && "not implemented");
3123 }
3124 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3125 case Legal:
3126 Tmp2 = LegalizeOp(Node->getOperand(1));
3127 break;
3128 case Promote:
3129 Tmp2 = PromoteOp(Node->getOperand(1));
3130 break;
3131 case Expand:
3132 assert(0 && "not implemented");
3133 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003134 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3135
3136 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003137 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003138 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3139 DAG.getValueType(VT));
3140 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003141
3142 case ISD::UDIV:
3143 case ISD::UREM:
3144 // These operators require that their input be zero extended.
3145 Tmp1 = PromoteOp(Node->getOperand(0));
3146 Tmp2 = PromoteOp(Node->getOperand(1));
3147 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003148 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3149 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003150 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3151 break;
3152
3153 case ISD::SHL:
3154 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003155 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003156 break;
3157 case ISD::SRA:
3158 // The input value must be properly sign extended.
3159 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003160 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3161 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003162 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003163 break;
3164 case ISD::SRL:
3165 // The input value must be properly zero extended.
3166 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003167 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003168 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003169 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003170
3171 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003172 Tmp1 = Node->getOperand(0); // Get the chain.
3173 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003174 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3175 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3176 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3177 } else {
3178 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
3179 Node->getOperand(2));
3180 // Increment the pointer, VAList, to the next vaarg
3181 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3182 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3183 TLI.getPointerTy()));
3184 // Store the incremented VAList to the legalized pointer
3185 Tmp3 = DAG.getNode(ISD::STORE, MVT::Other, VAList.getValue(1), Tmp3, Tmp2,
3186 Node->getOperand(2));
3187 // Load the actual argument out of the pointer VAList
3188 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList,
3189 DAG.getSrcValue(0), VT);
3190 }
3191 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003192 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00003193 break;
3194
Chris Lattner03c85462005-01-15 05:21:40 +00003195 case ISD::LOAD:
Chris Lattner456a93a2006-01-28 07:39:30 +00003196 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Node->getOperand(0),
3197 Node->getOperand(1), Node->getOperand(2), VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003198 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003199 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00003200 break;
Chris Lattner4c8f8f02005-10-13 20:07:41 +00003201 case ISD::SEXTLOAD:
3202 case ISD::ZEXTLOAD:
3203 case ISD::EXTLOAD:
Chris Lattner456a93a2006-01-28 07:39:30 +00003204 Result = DAG.getExtLoad(Node->getOpcode(), NVT, Node->getOperand(0),
3205 Node->getOperand(1), Node->getOperand(2),
Chris Lattner8136cda2005-10-15 20:24:07 +00003206 cast<VTSDNode>(Node->getOperand(3))->getVT());
Chris Lattner4c8f8f02005-10-13 20:07:41 +00003207 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00003208 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner4c8f8f02005-10-13 20:07:41 +00003209 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003210 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00003211 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
3212 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00003213 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00003214 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003215 case ISD::SELECT_CC:
3216 Tmp2 = PromoteOp(Node->getOperand(2)); // True
3217 Tmp3 = PromoteOp(Node->getOperand(3)); // False
3218 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00003219 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00003220 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003221 case ISD::BSWAP:
3222 Tmp1 = Node->getOperand(0);
3223 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3224 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3225 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3226 DAG.getConstant(getSizeInBits(NVT) - getSizeInBits(VT),
3227 TLI.getShiftAmountTy()));
3228 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003229 case ISD::CTPOP:
3230 case ISD::CTTZ:
3231 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003232 // Zero extend the argument
3233 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003234 // Perform the larger operation, then subtract if needed.
3235 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003236 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003237 case ISD::CTPOP:
3238 Result = Tmp1;
3239 break;
3240 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003241 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00003242 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003243 DAG.getConstant(getSizeInBits(NVT), NVT), ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003244 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Chris Lattner456a93a2006-01-28 07:39:30 +00003245 DAG.getConstant(getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003246 break;
3247 case ISD::CTLZ:
3248 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003249 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
3250 DAG.getConstant(getSizeInBits(NVT) -
Andrew Lenharthfecf0952005-05-04 19:11:05 +00003251 getSizeInBits(VT), NVT));
3252 break;
3253 }
3254 break;
Chris Lattner15972212006-03-31 17:55:51 +00003255 case ISD::VEXTRACT_VECTOR_ELT:
3256 Result = PromoteOp(LowerVEXTRACT_VECTOR_ELT(Op));
3257 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00003258 case ISD::EXTRACT_VECTOR_ELT:
3259 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
3260 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003261 }
3262
3263 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003264
3265 // Make sure the result is itself legal.
3266 Result = LegalizeOp(Result);
3267
3268 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00003269 AddPromotedOperand(Op, Result);
3270 return Result;
3271}
Chris Lattner3e928bb2005-01-07 07:47:09 +00003272
Chris Lattner15972212006-03-31 17:55:51 +00003273/// LowerVEXTRACT_VECTOR_ELT - Lower a VEXTRACT_VECTOR_ELT operation into a
3274/// EXTRACT_VECTOR_ELT operation, to memory operations, or to scalar code based
3275/// on the vector type. The return type of this matches the element type of the
3276/// vector, which may not be legal for the target.
3277SDOperand SelectionDAGLegalize::LowerVEXTRACT_VECTOR_ELT(SDOperand Op) {
3278 // We know that operand #0 is the Vec vector. If the index is a constant
3279 // or if the invec is a supported hardware type, we can use it. Otherwise,
3280 // lower to a store then an indexed load.
3281 SDOperand Vec = Op.getOperand(0);
3282 SDOperand Idx = LegalizeOp(Op.getOperand(1));
3283
3284 SDNode *InVal = Vec.Val;
3285 unsigned NumElems = cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
3286 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
3287
3288 // Figure out if there is a Packed type corresponding to this Vector
3289 // type. If so, convert to the packed type.
3290 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3291 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
3292 // Turn this into a packed extract_vector_elt operation.
3293 Vec = PackVectorOp(Vec, TVT);
3294 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, Op.getValueType(), Vec, Idx);
3295 } else if (NumElems == 1) {
3296 // This must be an access of the only element. Return it.
3297 return PackVectorOp(Vec, EVT);
3298 } else if (ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx)) {
3299 SDOperand Lo, Hi;
3300 SplitVectorOp(Vec, Lo, Hi);
3301 if (CIdx->getValue() < NumElems/2) {
3302 Vec = Lo;
3303 } else {
3304 Vec = Hi;
3305 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
3306 }
3307
3308 // It's now an extract from the appropriate high or low part. Recurse.
3309 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
3310 return LowerVEXTRACT_VECTOR_ELT(Op);
3311 } else {
3312 // Variable index case for extract element.
3313 // FIXME: IMPLEMENT STORE/LOAD lowering. Need alignment of stack slot!!
3314 assert(0 && "unimp!");
3315 return SDOperand();
3316 }
3317}
3318
Chris Lattner4aab2f42006-04-02 05:06:04 +00003319/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
3320/// memory traffic.
3321SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
3322 SDOperand Vector = Op.getOperand(0);
3323 SDOperand Idx = Op.getOperand(1);
3324
3325 // If the target doesn't support this, store the value to a temporary
3326 // stack slot, then LOAD the scalar element back out.
3327 SDOperand StackPtr = CreateStackTemporary(Vector.getValueType());
3328 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3329 Vector, StackPtr, DAG.getSrcValue(NULL));
3330
3331 // Add the offset to the index.
3332 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
3333 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
3334 DAG.getConstant(EltSize, Idx.getValueType()));
3335 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
3336
3337 return DAG.getLoad(Op.getValueType(), Ch, StackPtr, DAG.getSrcValue(NULL));
3338}
3339
Chris Lattner15972212006-03-31 17:55:51 +00003340
Nate Begeman750ac1b2006-02-01 07:19:44 +00003341/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
3342/// with condition CC on the current target. This usually involves legalizing
3343/// or promoting the arguments. In the case where LHS and RHS must be expanded,
3344/// there may be no choice but to create a new SetCC node to represent the
3345/// legalized value of setcc lhs, rhs. In this case, the value is returned in
3346/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
3347void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
3348 SDOperand &RHS,
3349 SDOperand &CC) {
3350 SDOperand Tmp1, Tmp2, Result;
3351
3352 switch (getTypeAction(LHS.getValueType())) {
3353 case Legal:
3354 Tmp1 = LegalizeOp(LHS); // LHS
3355 Tmp2 = LegalizeOp(RHS); // RHS
3356 break;
3357 case Promote:
3358 Tmp1 = PromoteOp(LHS); // LHS
3359 Tmp2 = PromoteOp(RHS); // RHS
3360
3361 // If this is an FP compare, the operands have already been extended.
3362 if (MVT::isInteger(LHS.getValueType())) {
3363 MVT::ValueType VT = LHS.getValueType();
3364 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
3365
3366 // Otherwise, we have to insert explicit sign or zero extends. Note
3367 // that we could insert sign extends for ALL conditions, but zero extend
3368 // is cheaper on many machines (an AND instead of two shifts), so prefer
3369 // it.
3370 switch (cast<CondCodeSDNode>(CC)->get()) {
3371 default: assert(0 && "Unknown integer comparison!");
3372 case ISD::SETEQ:
3373 case ISD::SETNE:
3374 case ISD::SETUGE:
3375 case ISD::SETUGT:
3376 case ISD::SETULE:
3377 case ISD::SETULT:
3378 // ALL of these operations will work if we either sign or zero extend
3379 // the operands (including the unsigned comparisons!). Zero extend is
3380 // usually a simpler/cheaper operation, so prefer it.
3381 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3382 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
3383 break;
3384 case ISD::SETGE:
3385 case ISD::SETGT:
3386 case ISD::SETLT:
3387 case ISD::SETLE:
3388 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3389 DAG.getValueType(VT));
3390 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3391 DAG.getValueType(VT));
3392 break;
3393 }
3394 }
3395 break;
3396 case Expand:
3397 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
3398 ExpandOp(LHS, LHSLo, LHSHi);
3399 ExpandOp(RHS, RHSLo, RHSHi);
3400 switch (cast<CondCodeSDNode>(CC)->get()) {
3401 case ISD::SETEQ:
3402 case ISD::SETNE:
3403 if (RHSLo == RHSHi)
3404 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
3405 if (RHSCST->isAllOnesValue()) {
3406 // Comparison to -1.
3407 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
3408 Tmp2 = RHSLo;
3409 break;
3410 }
3411
3412 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
3413 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
3414 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
3415 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3416 break;
3417 default:
3418 // If this is a comparison of the sign bit, just look at the top part.
3419 // X > -1, x < 0
3420 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
3421 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
3422 CST->getValue() == 0) || // X < 0
3423 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
3424 CST->isAllOnesValue())) { // X > -1
3425 Tmp1 = LHSHi;
3426 Tmp2 = RHSHi;
3427 break;
3428 }
3429
3430 // FIXME: This generated code sucks.
3431 ISD::CondCode LowCC;
3432 switch (cast<CondCodeSDNode>(CC)->get()) {
3433 default: assert(0 && "Unknown integer setcc!");
3434 case ISD::SETLT:
3435 case ISD::SETULT: LowCC = ISD::SETULT; break;
3436 case ISD::SETGT:
3437 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
3438 case ISD::SETLE:
3439 case ISD::SETULE: LowCC = ISD::SETULE; break;
3440 case ISD::SETGE:
3441 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
3442 }
3443
3444 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
3445 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
3446 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
3447
3448 // NOTE: on targets without efficient SELECT of bools, we can always use
3449 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
3450 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
3451 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi, CC);
3452 Result = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
3453 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
3454 Result, Tmp1, Tmp2));
3455 Tmp1 = Result;
Nate Begemanda06e9e2006-02-01 19:05:15 +00003456 Tmp2 = SDOperand();
Nate Begeman750ac1b2006-02-01 07:19:44 +00003457 }
3458 }
3459 LHS = Tmp1;
3460 RHS = Tmp2;
3461}
3462
Chris Lattner35481892005-12-23 00:16:34 +00003463/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00003464/// The resultant code need not be legal. Note that SrcOp is the input operand
3465/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00003466SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
3467 SDOperand SrcOp) {
3468 // Create the stack frame object.
Chris Lattnerce872152006-03-19 06:31:19 +00003469 SDOperand FIPtr = CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00003470
3471 // Emit a store to the stack slot.
3472 SDOperand Store = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
Chris Lattnered7b5ba2005-12-23 00:50:25 +00003473 SrcOp, FIPtr, DAG.getSrcValue(NULL));
Chris Lattner35481892005-12-23 00:16:34 +00003474 // Result is a load from the stack slot.
3475 return DAG.getLoad(DestVT, Store, FIPtr, DAG.getSrcValue(0));
3476}
3477
Chris Lattner4352cc92006-04-04 17:23:26 +00003478SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
3479 // Create a vector sized/aligned stack slot, store the value to element #0,
3480 // then load the whole vector back out.
3481 SDOperand StackPtr = CreateStackTemporary(Node->getValueType(0));
3482 SDOperand Ch = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3483 Node->getOperand(0), StackPtr,
3484 DAG.getSrcValue(NULL));
3485 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,DAG.getSrcValue(NULL));
3486}
3487
3488
Chris Lattnerce872152006-03-19 06:31:19 +00003489/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
3490/// support the operation, but do support the resultant packed vector type.
3491SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
3492
3493 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00003494 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00003495 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00003496 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00003497 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00003498 std::map<SDOperand, std::vector<unsigned> > Values;
3499 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003500 bool isConstant = true;
3501 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
3502 SplatValue.getOpcode() != ISD::UNDEF)
3503 isConstant = false;
3504
Evan Cheng033e6812006-03-24 01:17:21 +00003505 for (unsigned i = 1; i < NumElems; ++i) {
3506 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00003507 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00003508 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00003509 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00003510 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00003511 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00003512
3513 // If this isn't a constant element or an undef, we can't use a constant
3514 // pool load.
3515 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
3516 V.getOpcode() != ISD::UNDEF)
3517 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00003518 }
3519
3520 if (isOnlyLowElement) {
3521 // If the low element is an undef too, then this whole things is an undef.
3522 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
3523 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
3524 // Otherwise, turn this into a scalar_to_vector node.
3525 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3526 Node->getOperand(0));
3527 }
3528
Chris Lattner2eb86532006-03-24 07:29:17 +00003529 // If all elements are constants, create a load from the constant pool.
3530 if (isConstant) {
3531 MVT::ValueType VT = Node->getValueType(0);
3532 const Type *OpNTy =
3533 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
3534 std::vector<Constant*> CV;
3535 for (unsigned i = 0, e = NumElems; i != e; ++i) {
3536 if (ConstantFPSDNode *V =
3537 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
3538 CV.push_back(ConstantFP::get(OpNTy, V->getValue()));
3539 } else if (ConstantSDNode *V =
3540 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
3541 CV.push_back(ConstantUInt::get(OpNTy, V->getValue()));
3542 } else {
3543 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
3544 CV.push_back(UndefValue::get(OpNTy));
3545 }
3546 }
3547 Constant *CP = ConstantPacked::get(CV);
3548 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
3549 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
3550 DAG.getSrcValue(NULL));
3551 }
3552
Chris Lattner87100e02006-03-20 01:52:29 +00003553 if (SplatValue.Val) { // Splat of one value?
3554 // Build the shuffle constant vector: <0, 0, 0, 0>
3555 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00003556 MVT::getIntVectorWithNumElements(NumElems);
Chris Lattner87100e02006-03-20 01:52:29 +00003557 SDOperand Zero = DAG.getConstant(0, MVT::getVectorBaseType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00003558 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattner87100e02006-03-20 01:52:29 +00003559 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, ZeroVec);
3560
3561 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003562 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00003563 // Get the splatted value into the low element of a vector register.
3564 SDOperand LowValVec =
3565 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
3566
3567 // Return shuffle(LowValVec, undef, <0,0,0,0>)
3568 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
3569 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
3570 SplatMask);
3571 }
3572 }
3573
Evan Cheng033e6812006-03-24 01:17:21 +00003574 // If there are only two unique elements, we may be able to turn this into a
3575 // vector shuffle.
3576 if (Values.size() == 2) {
3577 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
3578 MVT::ValueType MaskVT =
3579 MVT::getIntVectorWithNumElements(NumElems);
3580 std::vector<SDOperand> MaskVec(NumElems);
3581 unsigned i = 0;
3582 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3583 E = Values.end(); I != E; ++I) {
3584 for (std::vector<unsigned>::iterator II = I->second.begin(),
3585 EE = I->second.end(); II != EE; ++II)
3586 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorBaseType(MaskVT));
3587 i += NumElems;
3588 }
3589 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, MaskVec);
3590
3591 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00003592 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
3593 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Evan Cheng033e6812006-03-24 01:17:21 +00003594 std::vector<SDOperand> Ops;
3595 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
3596 E = Values.end(); I != E; ++I) {
3597 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
3598 I->first);
3599 Ops.push_back(Op);
3600 }
3601 Ops.push_back(ShuffleMask);
3602
3603 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
3604 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops);
3605 }
3606 }
Chris Lattnerce872152006-03-19 06:31:19 +00003607
3608 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
3609 // aligned object on the stack, store each element into it, then load
3610 // the result as a vector.
3611 MVT::ValueType VT = Node->getValueType(0);
3612 // Create the stack frame object.
3613 SDOperand FIPtr = CreateStackTemporary(VT);
3614
3615 // Emit a store of each element to the stack slot.
3616 std::vector<SDOperand> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00003617 unsigned TypeByteSize =
3618 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
3619 unsigned VectorSize = MVT::getSizeInBits(VT)/8;
3620 // Store (in the right endianness) the elements to memory.
3621 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3622 // Ignore undef elements.
3623 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
3624
Chris Lattner841c8822006-03-22 01:46:54 +00003625 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00003626
3627 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
3628 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
3629
3630 Stores.push_back(DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3631 Node->getOperand(i), Idx,
3632 DAG.getSrcValue(NULL)));
3633 }
3634
3635 SDOperand StoreChain;
3636 if (!Stores.empty()) // Not all undef elements?
3637 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other, Stores);
3638 else
3639 StoreChain = DAG.getEntryNode();
3640
3641 // Result is a load from the stack slot.
3642 return DAG.getLoad(VT, StoreChain, FIPtr, DAG.getSrcValue(0));
3643}
3644
3645/// CreateStackTemporary - Create a stack temporary, suitable for holding the
3646/// specified value type.
3647SDOperand SelectionDAGLegalize::CreateStackTemporary(MVT::ValueType VT) {
3648 MachineFrameInfo *FrameInfo = DAG.getMachineFunction().getFrameInfo();
3649 unsigned ByteSize = MVT::getSizeInBits(VT)/8;
3650 int FrameIdx = FrameInfo->CreateStackObject(ByteSize, ByteSize);
3651 return DAG.getFrameIndex(FrameIdx, TLI.getPointerTy());
3652}
3653
Chris Lattner5b359c62005-04-02 04:00:59 +00003654void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
3655 SDOperand Op, SDOperand Amt,
3656 SDOperand &Lo, SDOperand &Hi) {
3657 // Expand the subcomponents.
3658 SDOperand LHSL, LHSH;
3659 ExpandOp(Op, LHSL, LHSH);
3660
3661 std::vector<SDOperand> Ops;
3662 Ops.push_back(LHSL);
3663 Ops.push_back(LHSH);
3664 Ops.push_back(Amt);
Chris Lattnercc0675a2005-08-30 17:21:17 +00003665 std::vector<MVT::ValueType> VTs(2, LHSL.getValueType());
Chris Lattnere89083a2005-05-14 07:25:05 +00003666 Lo = DAG.getNode(NodeOp, VTs, Ops);
Chris Lattner5b359c62005-04-02 04:00:59 +00003667 Hi = Lo.getValue(1);
3668}
3669
3670
Chris Lattnere34b3962005-01-19 04:19:40 +00003671/// ExpandShift - Try to find a clever way to expand this shift operation out to
3672/// smaller elements. If we can't find a way that is more efficient than a
3673/// libcall on this target, return false. Otherwise, return true with the
3674/// low-parts expanded into Lo and Hi.
3675bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
3676 SDOperand &Lo, SDOperand &Hi) {
3677 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
3678 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003679
Chris Lattnere34b3962005-01-19 04:19:40 +00003680 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003681 SDOperand ShAmt = LegalizeOp(Amt);
3682 MVT::ValueType ShTy = ShAmt.getValueType();
3683 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
3684 unsigned NVTBits = MVT::getSizeInBits(NVT);
3685
3686 // Handle the case when Amt is an immediate. Other cases are currently broken
3687 // and are disabled.
3688 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
3689 unsigned Cst = CN->getValue();
3690 // Expand the incoming operand to be shifted, so that we have its parts
3691 SDOperand InL, InH;
3692 ExpandOp(Op, InL, InH);
3693 switch(Opc) {
3694 case ISD::SHL:
3695 if (Cst > VTBits) {
3696 Lo = DAG.getConstant(0, NVT);
3697 Hi = DAG.getConstant(0, NVT);
3698 } else if (Cst > NVTBits) {
3699 Lo = DAG.getConstant(0, NVT);
3700 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003701 } else if (Cst == NVTBits) {
3702 Lo = DAG.getConstant(0, NVT);
3703 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003704 } else {
3705 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
3706 Hi = DAG.getNode(ISD::OR, NVT,
3707 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
3708 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
3709 }
3710 return true;
3711 case ISD::SRL:
3712 if (Cst > VTBits) {
3713 Lo = DAG.getConstant(0, NVT);
3714 Hi = DAG.getConstant(0, NVT);
3715 } else if (Cst > NVTBits) {
3716 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
3717 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00003718 } else if (Cst == NVTBits) {
3719 Lo = InH;
3720 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003721 } else {
3722 Lo = DAG.getNode(ISD::OR, NVT,
3723 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3724 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3725 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
3726 }
3727 return true;
3728 case ISD::SRA:
3729 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003730 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003731 DAG.getConstant(NVTBits-1, ShTy));
3732 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00003733 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003734 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00003735 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003736 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00003737 } else if (Cst == NVTBits) {
3738 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003739 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00003740 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003741 } else {
3742 Lo = DAG.getNode(ISD::OR, NVT,
3743 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
3744 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
3745 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
3746 }
3747 return true;
3748 }
3749 }
Nate Begemanf1fe32e2005-04-06 21:13:14 +00003750 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00003751}
Chris Lattner77e77a62005-01-21 06:05:23 +00003752
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003753
Chris Lattner77e77a62005-01-21 06:05:23 +00003754// ExpandLibCall - Expand a node into a call to a libcall. If the result value
3755// does not fit into a register, return the lo part and set the hi part to the
3756// by-reg argument. If it does fit into a single register, return the result
3757// and leave the Hi part unset.
3758SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
3759 SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00003760 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
3761 // The input chain to this libcall is the entry node of the function.
3762 // Legalizing the call will automatically add the previous call to the
3763 // dependence.
3764 SDOperand InChain = DAG.getEntryNode();
3765
Chris Lattner77e77a62005-01-21 06:05:23 +00003766 TargetLowering::ArgListTy Args;
3767 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
3768 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
3769 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
3770 Args.push_back(std::make_pair(Node->getOperand(i), ArgTy));
3771 }
3772 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00003773
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003774 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00003775 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003776 std::pair<SDOperand,SDOperand> CallInfo =
Chris Lattneradf6a962005-05-13 18:50:42 +00003777 TLI.LowerCallTo(InChain, RetTy, false, CallingConv::C, false,
3778 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00003779
Chris Lattner6831a812006-02-13 09:18:02 +00003780 // Legalize the call sequence, starting with the chain. This will advance
3781 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
3782 // was added by LowerCallTo (guaranteeing proper serialization of calls).
3783 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00003784 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003785 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00003786 default: assert(0 && "Unknown thing");
3787 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00003788 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00003789 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003790 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00003791 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00003792 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00003793 }
Chris Lattner99c25b82005-09-02 20:26:58 +00003794 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00003795}
3796
Chris Lattner9c32d3b2005-01-23 04:42:50 +00003797
Chris Lattner77e77a62005-01-21 06:05:23 +00003798/// ExpandIntToFP - Expand a [US]INT_TO_FP operation, assuming that the
3799/// destination type is legal.
3800SDOperand SelectionDAGLegalize::
3801ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003802 assert(isTypeLegal(DestTy) && "Destination type is not legal!");
Chris Lattner77e77a62005-01-21 06:05:23 +00003803 assert(getTypeAction(Source.getValueType()) == Expand &&
3804 "This is not an expansion!");
3805 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
3806
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003807 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00003808 assert(Source.getValueType() == MVT::i64 &&
3809 "This only works for 64-bit -> FP");
3810 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
3811 // incoming integer is set. To handle this, we dynamically test to see if
3812 // it is set, and, if so, add a fudge factor.
3813 SDOperand Lo, Hi;
3814 ExpandOp(Source, Lo, Hi);
3815
Chris Lattner66de05b2005-05-13 04:45:13 +00003816 // If this is unsigned, and not supported, first perform the conversion to
3817 // signed, then adjust the result if the sign bit is set.
3818 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
3819 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
3820
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003821 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
3822 DAG.getConstant(0, Hi.getValueType()),
3823 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003824 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3825 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3826 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00003827 uint64_t FF = 0x5f800000ULL;
3828 if (TLI.isLittleEndian()) FF <<= 32;
3829 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003830
Chris Lattner5839bf22005-08-26 17:15:30 +00003831 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00003832 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3833 SDOperand FudgeInReg;
3834 if (DestTy == MVT::f32)
Chris Lattner52d08bd2005-05-09 20:23:03 +00003835 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3836 DAG.getSrcValue(NULL));
Chris Lattnere9c35e72005-04-13 05:09:42 +00003837 else {
3838 assert(DestTy == MVT::f64 && "Unexpected conversion");
Chris Lattner5f056bf2005-07-10 01:55:33 +00003839 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
3840 CPIdx, DAG.getSrcValue(NULL), MVT::f32);
Chris Lattnere9c35e72005-04-13 05:09:42 +00003841 }
Chris Lattner473a9902005-09-29 06:44:39 +00003842 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00003843 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003844
Chris Lattnera88a2602005-05-14 05:33:54 +00003845 // Check to see if the target has a custom way to lower this. If so, use it.
3846 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
3847 default: assert(0 && "This action not implemented for this operation!");
3848 case TargetLowering::Legal:
3849 case TargetLowering::Expand:
3850 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00003851 case TargetLowering::Custom: {
3852 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
3853 Source), DAG);
3854 if (NV.Val)
3855 return LegalizeOp(NV);
3856 break; // The target decided this was legal after all
3857 }
Chris Lattnera88a2602005-05-14 05:33:54 +00003858 }
3859
Chris Lattner13689e22005-05-12 07:00:44 +00003860 // Expand the source, then glue it back together for the call. We must expand
3861 // the source in case it is shared (this pass of legalize must traverse it).
3862 SDOperand SrcLo, SrcHi;
3863 ExpandOp(Source, SrcLo, SrcHi);
3864 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
3865
Chris Lattner0d67f0c2005-05-11 19:02:11 +00003866 const char *FnName = 0;
3867 if (DestTy == MVT::f32)
3868 FnName = "__floatdisf";
3869 else {
3870 assert(DestTy == MVT::f64 && "Unknown fp value type!");
3871 FnName = "__floatdidf";
3872 }
Chris Lattner6831a812006-02-13 09:18:02 +00003873
3874 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
3875 SDOperand UnusedHiPart;
Chris Lattner25125692006-02-17 04:32:33 +00003876 return ExpandLibCall(FnName, Source.Val, UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00003877}
Misha Brukmanedf128a2005-04-21 22:36:52 +00003878
Chris Lattner22cde6a2006-01-28 08:25:58 +00003879/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
3880/// INT_TO_FP operation of the specified operand when the target requests that
3881/// we expand it. At this point, we know that the result and operand types are
3882/// legal for the target.
3883SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
3884 SDOperand Op0,
3885 MVT::ValueType DestVT) {
3886 if (Op0.getValueType() == MVT::i32) {
3887 // simple 32-bit [signed|unsigned] integer to float/double expansion
3888
3889 // get the stack frame index of a 8 byte buffer
3890 MachineFunction &MF = DAG.getMachineFunction();
3891 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
3892 // get address of 8 byte buffer
3893 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3894 // word offset constant for Hi/Lo address computation
3895 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
3896 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00003897 SDOperand Hi = StackSlot;
3898 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
3899 if (TLI.isLittleEndian())
3900 std::swap(Hi, Lo);
3901
Chris Lattner22cde6a2006-01-28 08:25:58 +00003902 // if signed map to unsigned space
3903 SDOperand Op0Mapped;
3904 if (isSigned) {
3905 // constant used to invert sign bit (signed to unsigned mapping)
3906 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
3907 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
3908 } else {
3909 Op0Mapped = Op0;
3910 }
3911 // store the lo of the constructed double - based on integer input
3912 SDOperand Store1 = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
3913 Op0Mapped, Lo, DAG.getSrcValue(NULL));
3914 // initial hi portion of constructed double
3915 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
3916 // store the hi of the constructed double - biased exponent
3917 SDOperand Store2 = DAG.getNode(ISD::STORE, MVT::Other, Store1,
3918 InitialHi, Hi, DAG.getSrcValue(NULL));
3919 // load the constructed double
3920 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot,
3921 DAG.getSrcValue(NULL));
3922 // FP constant to bias correct the final result
3923 SDOperand Bias = DAG.getConstantFP(isSigned ?
3924 BitsToDouble(0x4330000080000000ULL)
3925 : BitsToDouble(0x4330000000000000ULL),
3926 MVT::f64);
3927 // subtract the bias
3928 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
3929 // final result
3930 SDOperand Result;
3931 // handle final rounding
3932 if (DestVT == MVT::f64) {
3933 // do nothing
3934 Result = Sub;
3935 } else {
3936 // if f32 then cast to f32
3937 Result = DAG.getNode(ISD::FP_ROUND, MVT::f32, Sub);
3938 }
3939 return Result;
3940 }
3941 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
3942 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
3943
3944 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
3945 DAG.getConstant(0, Op0.getValueType()),
3946 ISD::SETLT);
3947 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
3948 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
3949 SignSet, Four, Zero);
3950
3951 // If the sign bit of the integer is set, the large number will be treated
3952 // as a negative number. To counteract this, the dynamic code adds an
3953 // offset depending on the data type.
3954 uint64_t FF;
3955 switch (Op0.getValueType()) {
3956 default: assert(0 && "Unsupported integer type!");
3957 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
3958 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
3959 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
3960 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
3961 }
3962 if (TLI.isLittleEndian()) FF <<= 32;
3963 static Constant *FudgeFactor = ConstantUInt::get(Type::ULongTy, FF);
3964
3965 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
3966 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
3967 SDOperand FudgeInReg;
3968 if (DestVT == MVT::f32)
3969 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
3970 DAG.getSrcValue(NULL));
3971 else {
3972 assert(DestVT == MVT::f64 && "Unexpected conversion");
3973 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, MVT::f64,
3974 DAG.getEntryNode(), CPIdx,
3975 DAG.getSrcValue(NULL), MVT::f32));
3976 }
3977
3978 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
3979}
3980
3981/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
3982/// *INT_TO_FP operation of the specified operand when the target requests that
3983/// we promote it. At this point, we know that the result and operand types are
3984/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
3985/// operation that takes a larger input.
3986SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
3987 MVT::ValueType DestVT,
3988 bool isSigned) {
3989 // First step, figure out the appropriate *INT_TO_FP operation to use.
3990 MVT::ValueType NewInTy = LegalOp.getValueType();
3991
3992 unsigned OpToUse = 0;
3993
3994 // Scan for the appropriate larger type to use.
3995 while (1) {
3996 NewInTy = (MVT::ValueType)(NewInTy+1);
3997 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
3998
3999 // If the target supports SINT_TO_FP of this type, use it.
4000 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
4001 default: break;
4002 case TargetLowering::Legal:
4003 if (!TLI.isTypeLegal(NewInTy))
4004 break; // Can't use this datatype.
4005 // FALL THROUGH.
4006 case TargetLowering::Custom:
4007 OpToUse = ISD::SINT_TO_FP;
4008 break;
4009 }
4010 if (OpToUse) break;
4011 if (isSigned) continue;
4012
4013 // If the target supports UINT_TO_FP of this type, use it.
4014 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
4015 default: break;
4016 case TargetLowering::Legal:
4017 if (!TLI.isTypeLegal(NewInTy))
4018 break; // Can't use this datatype.
4019 // FALL THROUGH.
4020 case TargetLowering::Custom:
4021 OpToUse = ISD::UINT_TO_FP;
4022 break;
4023 }
4024 if (OpToUse) break;
4025
4026 // Otherwise, try a larger type.
4027 }
4028
4029 // Okay, we found the operation and type to use. Zero extend our input to the
4030 // desired type then run the operation on it.
4031 return DAG.getNode(OpToUse, DestVT,
4032 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
4033 NewInTy, LegalOp));
4034}
4035
4036/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
4037/// FP_TO_*INT operation of the specified operand when the target requests that
4038/// we promote it. At this point, we know that the result and operand types are
4039/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
4040/// operation that returns a larger result.
4041SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
4042 MVT::ValueType DestVT,
4043 bool isSigned) {
4044 // First step, figure out the appropriate FP_TO*INT operation to use.
4045 MVT::ValueType NewOutTy = DestVT;
4046
4047 unsigned OpToUse = 0;
4048
4049 // Scan for the appropriate larger type to use.
4050 while (1) {
4051 NewOutTy = (MVT::ValueType)(NewOutTy+1);
4052 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
4053
4054 // If the target supports FP_TO_SINT returning this type, use it.
4055 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
4056 default: break;
4057 case TargetLowering::Legal:
4058 if (!TLI.isTypeLegal(NewOutTy))
4059 break; // Can't use this datatype.
4060 // FALL THROUGH.
4061 case TargetLowering::Custom:
4062 OpToUse = ISD::FP_TO_SINT;
4063 break;
4064 }
4065 if (OpToUse) break;
4066
4067 // If the target supports FP_TO_UINT of this type, use it.
4068 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
4069 default: break;
4070 case TargetLowering::Legal:
4071 if (!TLI.isTypeLegal(NewOutTy))
4072 break; // Can't use this datatype.
4073 // FALL THROUGH.
4074 case TargetLowering::Custom:
4075 OpToUse = ISD::FP_TO_UINT;
4076 break;
4077 }
4078 if (OpToUse) break;
4079
4080 // Otherwise, try a larger type.
4081 }
4082
4083 // Okay, we found the operation and type to use. Truncate the result of the
4084 // extended FP_TO_*INT operation to the desired size.
4085 return DAG.getNode(ISD::TRUNCATE, DestVT,
4086 DAG.getNode(OpToUse, NewOutTy, LegalOp));
4087}
4088
4089/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
4090///
4091SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
4092 MVT::ValueType VT = Op.getValueType();
4093 MVT::ValueType SHVT = TLI.getShiftAmountTy();
4094 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
4095 switch (VT) {
4096 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
4097 case MVT::i16:
4098 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4099 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4100 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
4101 case MVT::i32:
4102 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4103 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4104 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4105 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4106 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
4107 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
4108 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4109 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4110 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4111 case MVT::i64:
4112 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
4113 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
4114 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
4115 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
4116 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
4117 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
4118 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
4119 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
4120 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
4121 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
4122 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
4123 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
4124 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
4125 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
4126 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
4127 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
4128 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
4129 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
4130 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
4131 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
4132 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
4133 }
4134}
4135
4136/// ExpandBitCount - Expand the specified bitcount instruction into operations.
4137///
4138SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
4139 switch (Opc) {
4140 default: assert(0 && "Cannot expand this yet!");
4141 case ISD::CTPOP: {
4142 static const uint64_t mask[6] = {
4143 0x5555555555555555ULL, 0x3333333333333333ULL,
4144 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
4145 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
4146 };
4147 MVT::ValueType VT = Op.getValueType();
4148 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4149 unsigned len = getSizeInBits(VT);
4150 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4151 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
4152 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
4153 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4154 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
4155 DAG.getNode(ISD::AND, VT,
4156 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
4157 }
4158 return Op;
4159 }
4160 case ISD::CTLZ: {
4161 // for now, we do this:
4162 // x = x | (x >> 1);
4163 // x = x | (x >> 2);
4164 // ...
4165 // x = x | (x >>16);
4166 // x = x | (x >>32); // for 64-bit input
4167 // return popcount(~x);
4168 //
4169 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
4170 MVT::ValueType VT = Op.getValueType();
4171 MVT::ValueType ShVT = TLI.getShiftAmountTy();
4172 unsigned len = getSizeInBits(VT);
4173 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
4174 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
4175 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
4176 }
4177 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
4178 return DAG.getNode(ISD::CTPOP, VT, Op);
4179 }
4180 case ISD::CTTZ: {
4181 // for now, we use: { return popcount(~x & (x - 1)); }
4182 // unless the target has ctlz but not ctpop, in which case we use:
4183 // { return 32 - nlz(~x & (x-1)); }
4184 // see also http://www.hackersdelight.org/HDcode/ntz.cc
4185 MVT::ValueType VT = Op.getValueType();
4186 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
4187 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
4188 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
4189 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
4190 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
4191 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
4192 TLI.isOperationLegal(ISD::CTLZ, VT))
4193 return DAG.getNode(ISD::SUB, VT,
4194 DAG.getConstant(getSizeInBits(VT), VT),
4195 DAG.getNode(ISD::CTLZ, VT, Tmp3));
4196 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
4197 }
4198 }
4199}
Chris Lattnere34b3962005-01-19 04:19:40 +00004200
Chris Lattner3e928bb2005-01-07 07:47:09 +00004201/// ExpandOp - Expand the specified SDOperand into its two component pieces
4202/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
4203/// LegalizeNodes map is filled in for any results that are not expanded, the
4204/// ExpandedNodes map is filled in for any results that are expanded, and the
4205/// Lo/Hi values are returned.
4206void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
4207 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004208 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004209 SDNode *Node = Op.Val;
4210 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Nate Begemanab48be32005-11-22 18:16:00 +00004211 assert((MVT::isInteger(VT) || VT == MVT::Vector) &&
4212 "Cannot expand FP values!");
4213 assert(((MVT::isInteger(NVT) && NVT < VT) || VT == MVT::Vector) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00004214 "Cannot expand to FP value or to larger int value!");
4215
Chris Lattner6fdcb252005-09-02 20:32:45 +00004216 // See if we already expanded it.
4217 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4218 = ExpandedNodes.find(Op);
4219 if (I != ExpandedNodes.end()) {
4220 Lo = I->second.first;
4221 Hi = I->second.second;
4222 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004223 }
4224
Chris Lattner3e928bb2005-01-07 07:47:09 +00004225 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004226 case ISD::CopyFromReg:
4227 assert(0 && "CopyFromReg must be legal!");
4228 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004229#ifndef NDEBUG
Chris Lattner3e928bb2005-01-07 07:47:09 +00004230 std::cerr << "NODE: "; Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004231#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00004232 assert(0 && "Do not know how to expand this operator!");
4233 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004234 case ISD::UNDEF:
4235 Lo = DAG.getNode(ISD::UNDEF, NVT);
4236 Hi = DAG.getNode(ISD::UNDEF, NVT);
4237 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004238 case ISD::Constant: {
4239 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
4240 Lo = DAG.getConstant(Cst, NVT);
4241 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
4242 break;
4243 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004244 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004245 // Return the operands.
4246 Lo = Node->getOperand(0);
4247 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004248 break;
Chris Lattner58f79632005-12-12 22:27:43 +00004249
4250 case ISD::SIGN_EXTEND_INREG:
4251 ExpandOp(Node->getOperand(0), Lo, Hi);
4252 // Sign extend the lo-part.
4253 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4254 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
4255 TLI.getShiftAmountTy()));
4256 // sext_inreg the low part if needed.
4257 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
4258 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00004259
Nate Begemand88fc032006-01-14 03:14:10 +00004260 case ISD::BSWAP: {
4261 ExpandOp(Node->getOperand(0), Lo, Hi);
4262 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
4263 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
4264 Lo = TempLo;
4265 break;
4266 }
4267
Chris Lattneredb1add2005-05-11 04:51:16 +00004268 case ISD::CTPOP:
4269 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00004270 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
4271 DAG.getNode(ISD::CTPOP, NVT, Lo),
4272 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00004273 Hi = DAG.getConstant(0, NVT);
4274 break;
4275
Chris Lattner39a8f332005-05-12 19:05:01 +00004276 case ISD::CTLZ: {
4277 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004278 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004279 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4280 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004281 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
4282 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004283 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
4284 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
4285
4286 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
4287 Hi = DAG.getConstant(0, NVT);
4288 break;
4289 }
4290
4291 case ISD::CTTZ: {
4292 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00004293 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00004294 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
4295 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004296 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
4297 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00004298 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
4299 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
4300
4301 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
4302 Hi = DAG.getConstant(0, NVT);
4303 break;
4304 }
Chris Lattneredb1add2005-05-11 04:51:16 +00004305
Nate Begemanacc398c2006-01-25 18:21:52 +00004306 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004307 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4308 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00004309 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
4310 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
4311
4312 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004313 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00004314 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
4315 if (!TLI.isLittleEndian())
4316 std::swap(Lo, Hi);
4317 break;
4318 }
4319
Chris Lattner3e928bb2005-01-07 07:47:09 +00004320 case ISD::LOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004321 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4322 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00004323 Lo = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004324
4325 // Increment the pointer to the other half.
Chris Lattner38d6be52005-01-09 19:43:23 +00004326 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004327 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4328 getIntPtrConstant(IncrementSize));
Chris Lattner8137c9e2006-01-28 05:07:51 +00004329 // FIXME: This creates a bogus srcvalue!
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00004330 Hi = DAG.getLoad(NVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerec39a452005-01-19 18:02:17 +00004331
4332 // Build a factor node to remember that this load is independent of the
4333 // other one.
4334 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4335 Hi.getValue(1));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004336
Chris Lattner3e928bb2005-01-07 07:47:09 +00004337 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004338 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004339 if (!TLI.isLittleEndian())
4340 std::swap(Lo, Hi);
4341 break;
4342 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004343 case ISD::AND:
4344 case ISD::OR:
4345 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
4346 SDOperand LL, LH, RL, RH;
4347 ExpandOp(Node->getOperand(0), LL, LH);
4348 ExpandOp(Node->getOperand(1), RL, RH);
4349 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
4350 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
4351 break;
4352 }
4353 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00004354 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004355 ExpandOp(Node->getOperand(1), LL, LH);
4356 ExpandOp(Node->getOperand(2), RL, RH);
Chris Lattner456a93a2006-01-28 07:39:30 +00004357 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
4358 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004359 break;
4360 }
Nate Begeman9373a812005-08-10 20:51:12 +00004361 case ISD::SELECT_CC: {
4362 SDOperand TL, TH, FL, FH;
4363 ExpandOp(Node->getOperand(2), TL, TH);
4364 ExpandOp(Node->getOperand(3), FL, FH);
4365 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4366 Node->getOperand(1), TL, FL, Node->getOperand(4));
4367 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
4368 Node->getOperand(1), TH, FH, Node->getOperand(4));
4369 break;
4370 }
Nate Begeman144ff662005-10-13 17:15:37 +00004371 case ISD::SEXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004372 SDOperand Chain = Node->getOperand(0);
4373 SDOperand Ptr = Node->getOperand(1);
Nate Begeman144ff662005-10-13 17:15:37 +00004374 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4375
4376 if (EVT == NVT)
4377 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4378 else
4379 Lo = DAG.getExtLoad(ISD::SEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4380 EVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00004381
4382 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004383 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00004384
Nate Begeman144ff662005-10-13 17:15:37 +00004385 // The high part is obtained by SRA'ing all but one of the bits of the lo
4386 // part.
4387 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
4388 Hi = DAG.getNode(ISD::SRA, NVT, Lo, DAG.getConstant(LoSize-1,
4389 TLI.getShiftAmountTy()));
Nate Begeman144ff662005-10-13 17:15:37 +00004390 break;
4391 }
4392 case ISD::ZEXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004393 SDOperand Chain = Node->getOperand(0);
4394 SDOperand Ptr = Node->getOperand(1);
Nate Begeman144ff662005-10-13 17:15:37 +00004395 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4396
4397 if (EVT == NVT)
4398 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4399 else
4400 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4401 EVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00004402
4403 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004404 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00004405
Nate Begeman144ff662005-10-13 17:15:37 +00004406 // The high part is just a zero.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004407 Hi = DAG.getConstant(0, NVT);
Chris Lattner9ad84812005-10-13 21:44:47 +00004408 break;
4409 }
4410 case ISD::EXTLOAD: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004411 SDOperand Chain = Node->getOperand(0);
4412 SDOperand Ptr = Node->getOperand(1);
Chris Lattner9ad84812005-10-13 21:44:47 +00004413 MVT::ValueType EVT = cast<VTSDNode>(Node->getOperand(3))->getVT();
4414
4415 if (EVT == NVT)
4416 Lo = DAG.getLoad(NVT, Chain, Ptr, Node->getOperand(2));
4417 else
4418 Lo = DAG.getExtLoad(ISD::EXTLOAD, NVT, Chain, Ptr, Node->getOperand(2),
4419 EVT);
4420
4421 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004422 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Chris Lattner9ad84812005-10-13 21:44:47 +00004423
4424 // The high part is undefined.
Chris Lattner13c78e22005-09-02 00:18:10 +00004425 Hi = DAG.getNode(ISD::UNDEF, NVT);
4426 break;
4427 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004428 case ISD::ANY_EXTEND:
4429 // The low part is any extension of the input (which degenerates to a copy).
4430 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
4431 // The high part is undefined.
4432 Hi = DAG.getNode(ISD::UNDEF, NVT);
4433 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004434 case ISD::SIGN_EXTEND: {
4435 // The low part is just a sign extension of the input (which degenerates to
4436 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004437 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004438
Chris Lattner3e928bb2005-01-07 07:47:09 +00004439 // The high part is obtained by SRA'ing all but one of the bits of the lo
4440 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00004441 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00004442 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
4443 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00004444 break;
4445 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00004446 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00004447 // The low part is just a zero extension of the input (which degenerates to
4448 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00004449 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004450
Chris Lattner3e928bb2005-01-07 07:47:09 +00004451 // The high part is just a zero.
4452 Hi = DAG.getConstant(0, NVT);
4453 break;
Chris Lattner35481892005-12-23 00:16:34 +00004454
4455 case ISD::BIT_CONVERT: {
4456 SDOperand Tmp = ExpandBIT_CONVERT(Node->getValueType(0),
4457 Node->getOperand(0));
4458 ExpandOp(Tmp, Lo, Hi);
4459 break;
4460 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004461
Chris Lattner8137c9e2006-01-28 05:07:51 +00004462 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00004463 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
4464 TargetLowering::Custom &&
4465 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004466 Lo = TLI.LowerOperation(Op, DAG);
4467 assert(Lo.Val && "Node must be custom expanded!");
4468 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00004469 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00004470 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00004471 break;
4472
Chris Lattner4e6c7462005-01-08 19:27:05 +00004473 // These operators cannot be expanded directly, emit them as calls to
4474 // library functions.
4475 case ISD::FP_TO_SINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004476 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00004477 SDOperand Op;
4478 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4479 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00004480 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4481 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00004482 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004483
Chris Lattnerf20d1832005-07-30 01:40:57 +00004484 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
4485
Chris Lattner80a3e942005-07-29 00:33:32 +00004486 // Now that the custom expander is done, expand the result, which is still
4487 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00004488 if (Op.Val) {
4489 ExpandOp(Op, Lo, Hi);
4490 break;
4491 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004492 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004493
Chris Lattner4e6c7462005-01-08 19:27:05 +00004494 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004495 Lo = ExpandLibCall("__fixsfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004496 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004497 Lo = ExpandLibCall("__fixdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004498 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004499
Chris Lattner4e6c7462005-01-08 19:27:05 +00004500 case ISD::FP_TO_UINT:
Chris Lattner80a3e942005-07-29 00:33:32 +00004501 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004502 SDOperand Op;
4503 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4504 case Expand: assert(0 && "cannot expand FP!");
4505 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
4506 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
4507 }
4508
4509 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
4510
4511 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00004512 if (Op.Val) {
4513 ExpandOp(Op, Lo, Hi);
4514 break;
4515 }
Chris Lattner80a3e942005-07-29 00:33:32 +00004516 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004517
Chris Lattner4e6c7462005-01-08 19:27:05 +00004518 if (Node->getOperand(0).getValueType() == MVT::f32)
Chris Lattner77e77a62005-01-21 06:05:23 +00004519 Lo = ExpandLibCall("__fixunssfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004520 else
Chris Lattner77e77a62005-01-21 06:05:23 +00004521 Lo = ExpandLibCall("__fixunsdfdi", Node, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00004522 break;
4523
Evan Cheng05a2d562006-01-09 18:31:59 +00004524 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004525 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004526 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004527 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004528 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004529 Op = TLI.LowerOperation(Op, DAG);
4530 if (Op.Val) {
4531 // Now that the custom expander is done, expand the result, which is
4532 // still VT.
4533 ExpandOp(Op, Lo, Hi);
4534 break;
4535 }
4536 }
4537
Chris Lattnere34b3962005-01-19 04:19:40 +00004538 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004539 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004540 break;
Chris Lattner47599822005-04-02 03:38:53 +00004541
4542 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004543 TargetLowering::LegalizeAction Action =
4544 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
4545 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4546 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004547 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004548 break;
4549 }
4550
Chris Lattnere34b3962005-01-19 04:19:40 +00004551 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004552 Lo = ExpandLibCall("__ashldi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004553 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004554 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004555
Evan Cheng05a2d562006-01-09 18:31:59 +00004556 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004557 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004558 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004559 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004560 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004561 Op = TLI.LowerOperation(Op, DAG);
4562 if (Op.Val) {
4563 // Now that the custom expander is done, expand the result, which is
4564 // still VT.
4565 ExpandOp(Op, Lo, Hi);
4566 break;
4567 }
4568 }
4569
Chris Lattnere34b3962005-01-19 04:19:40 +00004570 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004571 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004572 break;
Chris Lattner47599822005-04-02 03:38:53 +00004573
4574 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004575 TargetLowering::LegalizeAction Action =
4576 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
4577 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4578 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004579 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004580 break;
4581 }
4582
Chris Lattnere34b3962005-01-19 04:19:40 +00004583 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004584 Lo = ExpandLibCall("__ashrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004585 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004586 }
4587
4588 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00004589 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00004590 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00004591 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00004592 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00004593 Op = TLI.LowerOperation(Op, DAG);
4594 if (Op.Val) {
4595 // Now that the custom expander is done, expand the result, which is
4596 // still VT.
4597 ExpandOp(Op, Lo, Hi);
4598 break;
4599 }
4600 }
4601
Chris Lattnere34b3962005-01-19 04:19:40 +00004602 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00004603 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00004604 break;
Chris Lattner47599822005-04-02 03:38:53 +00004605
4606 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00004607 TargetLowering::LegalizeAction Action =
4608 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
4609 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
4610 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00004611 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00004612 break;
4613 }
4614
Chris Lattnere34b3962005-01-19 04:19:40 +00004615 // Otherwise, emit a libcall.
Chris Lattner77e77a62005-01-21 06:05:23 +00004616 Lo = ExpandLibCall("__lshrdi3", Node, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00004617 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00004618 }
Chris Lattnere34b3962005-01-19 04:19:40 +00004619
Misha Brukmanedf128a2005-04-21 22:36:52 +00004620 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00004621 case ISD::SUB: {
4622 // If the target wants to custom expand this, let them.
4623 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
4624 TargetLowering::Custom) {
4625 Op = TLI.LowerOperation(Op, DAG);
4626 if (Op.Val) {
4627 ExpandOp(Op, Lo, Hi);
4628 break;
4629 }
4630 }
4631
4632 // Expand the subcomponents.
4633 SDOperand LHSL, LHSH, RHSL, RHSH;
4634 ExpandOp(Node->getOperand(0), LHSL, LHSH);
4635 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Nate Begeman551bf3f2006-02-17 05:43:56 +00004636 std::vector<MVT::ValueType> VTs;
4637 std::vector<SDOperand> LoOps, HiOps;
4638 VTs.push_back(LHSL.getValueType());
4639 VTs.push_back(MVT::Flag);
4640 LoOps.push_back(LHSL);
4641 LoOps.push_back(RHSL);
4642 HiOps.push_back(LHSH);
4643 HiOps.push_back(RHSH);
4644 if (Node->getOpcode() == ISD::ADD) {
4645 Lo = DAG.getNode(ISD::ADDC, VTs, LoOps);
4646 HiOps.push_back(Lo.getValue(1));
4647 Hi = DAG.getNode(ISD::ADDE, VTs, HiOps);
4648 } else {
4649 Lo = DAG.getNode(ISD::SUBC, VTs, LoOps);
4650 HiOps.push_back(Lo.getValue(1));
4651 Hi = DAG.getNode(ISD::SUBE, VTs, HiOps);
4652 }
Chris Lattner84f67882005-01-20 18:52:28 +00004653 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00004654 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004655 case ISD::MUL: {
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004656 if (TLI.isOperationLegal(ISD::MULHU, NVT)) {
Nate Begemanc7c16572005-04-11 03:01:51 +00004657 SDOperand LL, LH, RL, RH;
4658 ExpandOp(Node->getOperand(0), LL, LH);
4659 ExpandOp(Node->getOperand(1), RL, RH);
Nate Begeman56eb8682005-08-30 02:44:00 +00004660 unsigned SH = MVT::getSizeInBits(RH.getValueType())-1;
4661 // MULHS implicitly sign extends its inputs. Check to see if ExpandOp
4662 // extended the sign bit of the low half through the upper half, and if so
4663 // emit a MULHS instead of the alternate sequence that is valid for any
4664 // i64 x i64 multiply.
4665 if (TLI.isOperationLegal(ISD::MULHS, NVT) &&
4666 // is RH an extension of the sign bit of RL?
4667 RH.getOpcode() == ISD::SRA && RH.getOperand(0) == RL &&
4668 RH.getOperand(1).getOpcode() == ISD::Constant &&
4669 cast<ConstantSDNode>(RH.getOperand(1))->getValue() == SH &&
4670 // is LH an extension of the sign bit of LL?
4671 LH.getOpcode() == ISD::SRA && LH.getOperand(0) == LL &&
4672 LH.getOperand(1).getOpcode() == ISD::Constant &&
4673 cast<ConstantSDNode>(LH.getOperand(1))->getValue() == SH) {
4674 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
4675 } else {
4676 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
4677 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
4678 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
4679 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
4680 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
4681 }
Nate Begemanc7c16572005-04-11 03:01:51 +00004682 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
4683 } else {
Chris Lattner9c6b4b82006-01-28 04:28:26 +00004684 Lo = ExpandLibCall("__muldi3" , Node, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00004685 }
4686 break;
4687 }
Chris Lattner77e77a62005-01-21 06:05:23 +00004688 case ISD::SDIV: Lo = ExpandLibCall("__divdi3" , Node, Hi); break;
4689 case ISD::UDIV: Lo = ExpandLibCall("__udivdi3", Node, Hi); break;
4690 case ISD::SREM: Lo = ExpandLibCall("__moddi3" , Node, Hi); break;
4691 case ISD::UREM: Lo = ExpandLibCall("__umoddi3", Node, Hi); break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004692 }
4693
Chris Lattner83397362005-12-21 18:02:52 +00004694 // Make sure the resultant values have been legalized themselves, unless this
4695 // is a type that requires multi-step expansion.
4696 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
4697 Lo = LegalizeOp(Lo);
4698 Hi = LegalizeOp(Hi);
4699 }
Evan Cheng05a2d562006-01-09 18:31:59 +00004700
4701 // Remember in a map if the values will be reused later.
4702 bool isNew =
4703 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4704 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00004705}
4706
Chris Lattnerc7029802006-03-18 01:44:44 +00004707/// SplitVectorOp - Given an operand of MVT::Vector type, break it down into
4708/// two smaller values of MVT::Vector type.
4709void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
4710 SDOperand &Hi) {
4711 assert(Op.getValueType() == MVT::Vector && "Cannot split non-vector type!");
4712 SDNode *Node = Op.Val;
4713 unsigned NumElements = cast<ConstantSDNode>(*(Node->op_end()-2))->getValue();
4714 assert(NumElements > 1 && "Cannot split a single element vector!");
4715 unsigned NewNumElts = NumElements/2;
4716 SDOperand NewNumEltsNode = DAG.getConstant(NewNumElts, MVT::i32);
4717 SDOperand TypeNode = *(Node->op_end()-1);
4718
4719 // See if we already split it.
4720 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
4721 = SplitNodes.find(Op);
4722 if (I != SplitNodes.end()) {
4723 Lo = I->second.first;
4724 Hi = I->second.second;
4725 return;
4726 }
4727
4728 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004729 default:
4730#ifndef NDEBUG
4731 Node->dump();
4732#endif
4733 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerb2827b02006-03-19 00:52:58 +00004734 case ISD::VBUILD_VECTOR: {
Chris Lattnerc7029802006-03-18 01:44:44 +00004735 std::vector<SDOperand> LoOps(Node->op_begin(), Node->op_begin()+NewNumElts);
4736 LoOps.push_back(NewNumEltsNode);
4737 LoOps.push_back(TypeNode);
Chris Lattnerb2827b02006-03-19 00:52:58 +00004738 Lo = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, LoOps);
Chris Lattnerc7029802006-03-18 01:44:44 +00004739
4740 std::vector<SDOperand> HiOps(Node->op_begin()+NewNumElts, Node->op_end()-2);
4741 HiOps.push_back(NewNumEltsNode);
4742 HiOps.push_back(TypeNode);
Chris Lattnerb2827b02006-03-19 00:52:58 +00004743 Hi = DAG.getNode(ISD::VBUILD_VECTOR, MVT::Vector, HiOps);
Chris Lattnerc7029802006-03-18 01:44:44 +00004744 break;
4745 }
4746 case ISD::VADD:
4747 case ISD::VSUB:
4748 case ISD::VMUL:
4749 case ISD::VSDIV:
4750 case ISD::VUDIV:
4751 case ISD::VAND:
4752 case ISD::VOR:
4753 case ISD::VXOR: {
4754 SDOperand LL, LH, RL, RH;
4755 SplitVectorOp(Node->getOperand(0), LL, LH);
4756 SplitVectorOp(Node->getOperand(1), RL, RH);
4757
4758 Lo = DAG.getNode(Node->getOpcode(), MVT::Vector, LL, RL,
4759 NewNumEltsNode, TypeNode);
4760 Hi = DAG.getNode(Node->getOpcode(), MVT::Vector, LH, RH,
4761 NewNumEltsNode, TypeNode);
4762 break;
4763 }
4764 case ISD::VLOAD: {
4765 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
4766 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
4767 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4768
4769 Lo = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4770 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(EVT)/8;
4771 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4772 getIntPtrConstant(IncrementSize));
4773 // FIXME: This creates a bogus srcvalue!
4774 Hi = DAG.getVecLoad(NewNumElts, EVT, Ch, Ptr, Node->getOperand(2));
4775
4776 // Build a factor node to remember that this load is independent of the
4777 // other one.
4778 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
4779 Hi.getValue(1));
4780
4781 // Remember that we legalized the chain.
4782 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00004783 break;
4784 }
Chris Lattner7692eb42006-03-23 21:16:34 +00004785 case ISD::VBIT_CONVERT: {
4786 // We know the result is a vector. The input may be either a vector or a
4787 // scalar value.
4788 if (Op.getOperand(0).getValueType() != MVT::Vector) {
4789 // Lower to a store/load. FIXME: this could be improved probably.
4790 SDOperand Ptr = CreateStackTemporary(Op.getOperand(0).getValueType());
4791
4792 SDOperand St = DAG.getNode(ISD::STORE, MVT::Other, DAG.getEntryNode(),
4793 Op.getOperand(0), Ptr, DAG.getSrcValue(0));
4794 MVT::ValueType EVT = cast<VTSDNode>(TypeNode)->getVT();
4795 St = DAG.getVecLoad(NumElements, EVT, St, Ptr, DAG.getSrcValue(0));
4796 SplitVectorOp(St, Lo, Hi);
4797 } else {
4798 // If the input is a vector type, we have to either scalarize it, pack it
4799 // or convert it based on whether the input vector type is legal.
4800 SDNode *InVal = Node->getOperand(0).Val;
4801 unsigned NumElems =
4802 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4803 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4804
4805 // If the input is from a single element vector, scalarize the vector,
4806 // then treat like a scalar.
4807 if (NumElems == 1) {
4808 SDOperand Scalar = PackVectorOp(Op.getOperand(0), EVT);
4809 Scalar = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Scalar,
4810 Op.getOperand(1), Op.getOperand(2));
4811 SplitVectorOp(Scalar, Lo, Hi);
4812 } else {
4813 // Split the input vector.
4814 SplitVectorOp(Op.getOperand(0), Lo, Hi);
4815
4816 // Convert each of the pieces now.
4817 Lo = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Lo,
4818 NewNumEltsNode, TypeNode);
4819 Hi = DAG.getNode(ISD::VBIT_CONVERT, MVT::Vector, Hi,
4820 NewNumEltsNode, TypeNode);
4821 }
4822 break;
4823 }
4824 }
Chris Lattnerc7029802006-03-18 01:44:44 +00004825 }
4826
4827 // Remember in a map if the values will be reused later.
4828 bool isNew =
4829 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
4830 assert(isNew && "Value already expanded?!?");
4831}
4832
4833
4834/// PackVectorOp - Given an operand of MVT::Vector type, convert it into the
4835/// equivalent operation that returns a scalar (e.g. F32) or packed value
4836/// (e.g. MVT::V4F32). When this is called, we know that PackedVT is the right
4837/// type for the result.
4838SDOperand SelectionDAGLegalize::PackVectorOp(SDOperand Op,
4839 MVT::ValueType NewVT) {
4840 assert(Op.getValueType() == MVT::Vector && "Bad PackVectorOp invocation!");
4841 SDNode *Node = Op.Val;
4842
4843 // See if we already packed it.
4844 std::map<SDOperand, SDOperand>::iterator I = PackedNodes.find(Op);
4845 if (I != PackedNodes.end()) return I->second;
4846
4847 SDOperand Result;
4848 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00004849 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004850#ifndef NDEBUG
Chris Lattner2332b9f2006-03-19 01:17:20 +00004851 Node->dump(); std::cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004852#endif
Chris Lattner2332b9f2006-03-19 01:17:20 +00004853 assert(0 && "Unknown vector operation in PackVectorOp!");
Chris Lattnerc7029802006-03-18 01:44:44 +00004854 case ISD::VADD:
4855 case ISD::VSUB:
4856 case ISD::VMUL:
4857 case ISD::VSDIV:
4858 case ISD::VUDIV:
4859 case ISD::VAND:
4860 case ISD::VOR:
4861 case ISD::VXOR:
4862 Result = DAG.getNode(getScalarizedOpcode(Node->getOpcode(), NewVT),
4863 NewVT,
4864 PackVectorOp(Node->getOperand(0), NewVT),
4865 PackVectorOp(Node->getOperand(1), NewVT));
4866 break;
4867 case ISD::VLOAD: {
Chris Lattner4794a6b2006-03-19 00:07:49 +00004868 SDOperand Ch = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
4869 SDOperand Ptr = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00004870
Chris Lattner4794a6b2006-03-19 00:07:49 +00004871 Result = DAG.getLoad(NewVT, Ch, Ptr, Node->getOperand(2));
Chris Lattnerc7029802006-03-18 01:44:44 +00004872
4873 // Remember that we legalized the chain.
4874 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4875 break;
4876 }
Chris Lattnerb2827b02006-03-19 00:52:58 +00004877 case ISD::VBUILD_VECTOR:
Chris Lattner70c2a612006-03-31 02:06:56 +00004878 if (Node->getOperand(0).getValueType() == NewVT) {
Chris Lattnerb2827b02006-03-19 00:52:58 +00004879 // Returning a scalar?
Chris Lattnerc7029802006-03-18 01:44:44 +00004880 Result = Node->getOperand(0);
4881 } else {
Chris Lattnerb2827b02006-03-19 00:52:58 +00004882 // Returning a BUILD_VECTOR?
Chris Lattner17614ea2006-04-08 05:34:25 +00004883
4884 // If all elements of the build_vector are undefs, return an undef.
4885 bool AllUndef = true;
4886 for (unsigned i = 0, e = Node->getNumOperands()-2; i != e; ++i)
4887 if (Node->getOperand(i).getOpcode() != ISD::UNDEF) {
4888 AllUndef = false;
4889 break;
4890 }
4891 if (AllUndef) {
4892 Result = DAG.getNode(ISD::UNDEF, NewVT);
4893 } else {
4894 std::vector<SDOperand> Ops(Node->op_begin(), Node->op_end()-2);
4895 Result = DAG.getNode(ISD::BUILD_VECTOR, NewVT, Ops);
4896 }
Chris Lattnerc7029802006-03-18 01:44:44 +00004897 }
4898 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00004899 case ISD::VINSERT_VECTOR_ELT:
4900 if (!MVT::isVector(NewVT)) {
4901 // Returning a scalar? Must be the inserted element.
4902 Result = Node->getOperand(1);
4903 } else {
4904 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT,
4905 PackVectorOp(Node->getOperand(0), NewVT),
4906 Node->getOperand(1), Node->getOperand(2));
4907 }
4908 break;
Chris Lattner5b2316e2006-03-28 20:24:43 +00004909 case ISD::VVECTOR_SHUFFLE:
4910 if (!MVT::isVector(NewVT)) {
4911 // Returning a scalar? Figure out if it is the LHS or RHS and return it.
4912 SDOperand EltNum = Node->getOperand(2).getOperand(0);
4913 if (cast<ConstantSDNode>(EltNum)->getValue())
4914 Result = PackVectorOp(Node->getOperand(1), NewVT);
4915 else
4916 Result = PackVectorOp(Node->getOperand(0), NewVT);
4917 } else {
4918 // Otherwise, return a VECTOR_SHUFFLE node. First convert the index
4919 // vector from a VBUILD_VECTOR to a BUILD_VECTOR.
4920 std::vector<SDOperand> BuildVecIdx(Node->getOperand(2).Val->op_begin(),
4921 Node->getOperand(2).Val->op_end()-2);
4922 MVT::ValueType BVT = MVT::getIntVectorWithNumElements(BuildVecIdx.size());
4923 SDOperand BV = DAG.getNode(ISD::BUILD_VECTOR, BVT, BuildVecIdx);
4924
4925 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT,
4926 PackVectorOp(Node->getOperand(0), NewVT),
4927 PackVectorOp(Node->getOperand(1), NewVT), BV);
4928 }
4929 break;
Chris Lattnere25ca692006-03-22 20:09:35 +00004930 case ISD::VBIT_CONVERT:
4931 if (Op.getOperand(0).getValueType() != MVT::Vector)
4932 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
4933 else {
4934 // If the input is a vector type, we have to either scalarize it, pack it
4935 // or convert it based on whether the input vector type is legal.
4936 SDNode *InVal = Node->getOperand(0).Val;
4937 unsigned NumElems =
4938 cast<ConstantSDNode>(*(InVal->op_end()-2))->getValue();
4939 MVT::ValueType EVT = cast<VTSDNode>(*(InVal->op_end()-1))->getVT();
4940
4941 // Figure out if there is a Packed type corresponding to this Vector
4942 // type. If so, convert to the packed type.
4943 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
4944 if (TVT != MVT::Other && TLI.isTypeLegal(TVT)) {
4945 // Turn this into a bit convert of the packed input.
4946 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
4947 PackVectorOp(Node->getOperand(0), TVT));
4948 break;
4949 } else if (NumElems == 1) {
4950 // Turn this into a bit convert of the scalar input.
4951 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT,
4952 PackVectorOp(Node->getOperand(0), EVT));
4953 break;
4954 } else {
4955 // FIXME: UNIMP!
4956 assert(0 && "Cast from unsupported vector type not implemented yet!");
4957 }
4958 }
Evan Chengdb3c6262006-04-10 18:54:36 +00004959 break;
Chris Lattnerb22e35a2006-04-08 22:22:57 +00004960 case ISD::VSELECT:
4961 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
4962 PackVectorOp(Op.getOperand(1), NewVT),
4963 PackVectorOp(Op.getOperand(2), NewVT));
4964 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00004965 }
4966
4967 if (TLI.isTypeLegal(NewVT))
4968 Result = LegalizeOp(Result);
4969 bool isNew = PackedNodes.insert(std::make_pair(Op, Result)).second;
4970 assert(isNew && "Value already packed?");
4971 return Result;
4972}
4973
Chris Lattner3e928bb2005-01-07 07:47:09 +00004974
4975// SelectionDAG::Legalize - This is the entry point for the file.
4976//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004977void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00004978 if (ViewLegalizeDAGs) viewGraph();
4979
Chris Lattner3e928bb2005-01-07 07:47:09 +00004980 /// run - This is the main entry point to this class.
4981 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00004982 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00004983}
4984